开源项目
🔥 vortex-data / vortex - An extensible, state-of-the-art framework for columnar compr
GitHub热门项目 | An extensible, state-of-the-art framework for columnar compression, and the fastest FOSS columnar file format. Formerly at @spiraldb, now an Incubation Stage project at LFAI&Data, part of the Linux Foundation. | Stars: 3,015 | 21 stars this week | 语言: Rust
开源项目
🔥 Universal-Debloater-Alliance / universal-android-debloater-next-generation - Cross-platform GUI written in Rust using ADB to debloat non-
GitHub热门项目 | Cross-platform GUI written in Rust using ADB to debloat non-rooted Android devices. Improve your privacy, the security and battery life of your device. | Stars: 6,929 | 101 stars today | 语言: Rust
开源项目
🔥 gfx-rs / wgpu - A cross-platform, safe, pure-Rust graphics API.
GitHub热门项目 | A cross-platform, safe, pure-Rust graphics API. | Stars: 17,373 | 12 stars today | 语言: Rust
开源项目
🔥 TencentCloud / TencentDB-Agent-Memory - TencentDB Agent Memory delivers fully local long-term memory
GitHub热门项目 | TencentDB Agent Memory delivers fully local long-term memory for AI Agents via a 4-tier progressive pipeline, with zero external API dependencies. | Stars: 5,766 | 172 stars today | 语言: TypeScript
开源项目
🔥 documenso / documenso - The Open Source DocuSign Alternative.
GitHub热门项目 | The Open Source DocuSign Alternative. | Stars: 13,392 | 37 stars today | 语言: TypeScript
开源项目
🔥 Emanuele-web04 / synara - The best place to build with your AI sub
GitHub热门项目 | The best place to build with your AI sub | Stars: 873 | 58 stars today | 语言: TypeScript
开源项目
🔥 anyproto / anytype-ts - Official Anytype client for MacOS, Linux, and Windows
GitHub热门项目 | Official Anytype client for MacOS, Linux, and Windows | Stars: 8,147 | 23 stars today | 语言: TypeScript
开源项目
🔥 fmhy / edit - Make changes to FMHY
GitHub热门项目 | Make changes to FMHY | Stars: 10,140 | 44 stars today | 语言: JavaScript
开源项目
🔥 NaiboWang / EasySpider - A visual no-code/code-free web crawler/spider易采集:一个可视化浏览器自动化
GitHub热门项目 | A visual no-code/code-free web crawler/spider易采集:一个可视化浏览器自动化测试/数据采集/网页爬虫软件,可以无代码图形化的设计和执行爬虫任务。别名:ServiceWrapper面向Web应用的智能化服务封装系统。 | Stars: 44,072 | 20 stars today | 语言: JavaScript
开源项目
🔥 sindresorhus / eslint-plugin-unicorn - More than 200 powerful ESLint rules
GitHub热门项目 | More than 200 powerful ESLint rules | Stars: 5,045 | 3 stars today | 语言: JavaScript
开源项目
🔥 iptv-org / database - User editable database for TV channels.
GitHub热门项目 | User editable database for TV channels. | Stars: 1,432 | 11 stars today | 语言: JavaScript
开源项目
🔥 gildas-lormeau / SingleFile - Web Extension for saving a faithful copy of a complete web p
GitHub热门项目 | Web Extension for saving a faithful copy of a complete web page in a single HTML file | Stars: 21,579 | 84 stars today | 语言: JavaScript
开源项目
🔥 Flowseal / tg-ws-proxy - Local MTProto proxy server for partial bypassing of Telegram
GitHub热门项目 | Local MTProto proxy server for partial bypassing of Telegram loading | Stars: 7,484 | 102 stars today | 语言: Python
开源项目
🔥 ArchipelagoMW / Archipelago - Archipelago Multi-Game Randomizer and Server
GitHub热门项目 | Archipelago Multi-Game Randomizer and Server | Stars: 1,460 | 3 stars today | 语言: Python
开源项目
🔥 teslamate-org / teslamate - A self-hosted data logger for your Tesla 🚘 [main maintainer=
GitHub热门项目 | A self-hosted data logger for your Tesla 🚘 [main maintainer=@JakobLichterfeld] | Stars: 8,147 | 35 stars today | 语言: Elixir
开源项目
🔥 krahets / hello-algo - 《Hello 算法》:动画图解、一键运行的数据结构与算法教程。支持简中、繁中、English、日本語,提供 Python
GitHub热门项目 | 《Hello 算法》:动画图解、一键运行的数据结构与算法教程。支持简中、繁中、English、日本語,提供 Python, Java, C++, C, C#, JS, Go, Swift, Rust, Ruby, Kotlin, TS, Dart 等代码实现 | Stars: 126,755 | 34 stars today | 语言: Java
开源项目
🔥 trycua / cua - Open-source infrastructure for Computer-Use Agents. Sandboxe
GitHub热门项目 | Open-source infrastructure for Computer-Use Agents. Sandboxes, SDKs, and benchmarks to train and evaluate AI agents that can control full desktops (macOS, Linux, Windows). | Stars: 18,027 | 57 stars today | 语言: HTML
AI 资讯
As AI agents become employees, NewCore emerges with $66M to give them identities
NewCore argues the next challenge in enterprise security will be managing AI agents, not people.
AI 资讯
How to Check If an Online JSON Formatter Uploads Your Data
Most developers have done this at least once. You get a messy API response. You need to inspect a JWT. You have a webhook payload, a log object, or a config file that is hard to read. So you open a JSON formatter, paste the content, and move on. That habit is convenient. But it also deserves a second look. Not every JSON tool behaves the same way. Some tools process your input entirely in the browser. Some send content to a server. Some store snippets for sharing. Some extensions have permissions that are broader than you expect. The problem is not that every online formatter is unsafe. The problem is that you often do not know what happens after you paste. What you should avoid pasting blindly Before using any random online tool, be careful with: production JWTs API responses containing user data logs from real systems config files webhook payloads database URLs cloud keys internal endpoints tenant IDs error traces from production systems A JSON payload does not need to contain an obvious password to be sensitive. Sometimes the risky part is context: user IDs, internal URLs, tokens, customer data, or system structure. A quick DevTools check You can do a basic check with your browser’s DevTools. Open the JSON tool. Open DevTools. Go to the Network tab. Clear existing requests. Paste a harmless test JSON first. Run format, validate, diff, decode, or whatever action the tool provides. Watch the Network tab. Look for POST, PUT, fetch, XHR, or beacon requests after your input. Inspect request payloads if they exist. Check whether your pasted JSON appears in any request. Do this with harmless test data first. If the tool uploads the test JSON, do not paste production content into it. What to look for A few signs deserve attention: POST requests after you paste or click format request bodies containing your JSON share-link features that save snippets server-side validation APIs analytics events that include pasted content extension background requests that are not clearly
AI 资讯
Connecting Hermes AI Agent to an MCP Gateway: Setup and Use Cases
Hermes AI Agent handles multi-step workflows well. The planning layer holds up. Memory across sessions works. What kept breaking down was the tool layer. Once a workflow touched three or four external systems, I was spending more time on auth configs, mismatched response formats, and per-tool retry logic than on the workflows themselves. I fixed this by routing all external tool calls through a unified MCP gateway. The agent logic stayed the same. The integration complexity moved into one place I could actually manage. This post walks through how that works, how to set it up, and where it is genuinely useful. How Hermes runs tasks Hermes is an open-source, self-hosted agent runtime from Nous Research, released in February 2026 under the MIT license. It runs persistently on your own infrastructure and executes goals as structured, stateful workflows. Four layers handle execution. The planning layer breaks a goal into sequenced steps and adjusts them as intermediate results come in The execution layer runs each step and fires tool calls when external data or action is needed The memory layer stores task state and session history in SQLite with FTS5, so context carries over across restarts The skills layer captures completed workflows as reusable documents retrieved on future tasks After a task finishes, Hermes writes a skill file with the procedure and known failure points, then stores it for retrieval next time a similar task runs. Tool execution is embedded in the runtime loop. External capabilities come through MCP-based interfaces, which is where the gateway plugs in. What breaks when integrations live inside the agent In a standard MCP setup, each client connects one-to-one with a specific MCP server. That works fine with two or three tools. With ten, it becomes a maintenance problem that grows with every tool you add. A task spanning a web search, a product API, and a SERP scraper means three separate auth setups, three response formats to parse, and three diffe