融合代理内核 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
融合代理内核 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
融合代理内核 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/anthony-chaudhary/fak
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"------": {
"command": "npx",
"args": ["-y", "fak"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 融合代理内核 执行以下任务... Claude: [自动调用 融合代理内核 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"______": {
"command": "npx",
"args": ["-y", "fak"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
fak in one line: fak is a fused agent kernel: one Go binary that sits in front of an agent's tool calls, checks each call, and reuses the stable work in long sessions so the same agent loop is safer, cheaper, and faster.
Put one binary in front of the agent you already run — Claude Code, Codex, Cursor, or any OpenAI / Anthropic / MCP client — and the same long session gets cheaper and faster, with nothing else changed.
fak guard -- claude wraps your normal agent in one command. It keeps your model, your IDE, and your keys exactly as they are. You get back the parts of the agent loop that got expensive. fak points one base URL at itself for you; nothing else in your setup changes.
What you get, in numbers. Every figure traces to BENCHMARK-AUTHORITY.md, and the honesty ledger is CLAIMS.md:
- ~4.1× less work than a tuned warm-cache stack on a 50-turn × 5-agent run. fak reuses the shared prompt prefix across agents (the system prompt + tools, the KV cache of the work so far) instead of re-paying for it. That reuse factor climbs to 6.95× across the model ladder. (Against the naive re-send loop it is ~60×; the tuned number is the honest one to beat.) - ~120 tok/s in-kernel GPU decode on an RTX 4070 (SmolLM2-135M, f32 weights, gated FAK_CUDA_GRAPH=1), landing inside llama.cpp's Q8_0 range of 120 ± 15 tok/s — so a full-precision kernel reaches parity with a quantized llama.cpp. - The provider cache discount survives a long session. fak sheds old turns while keeping the prompt-cache prefix byte-identical, so the rebate holds instead of breaking the moment the conversation sprawls. - The guard tax is ~362 ns per call. The kernel's allow/deny decision runs in-process (measured, Apple M3 Pro), not as a network hop.
fak in one line: put fak in front of the agent you already run. It makes long sessions cheaper, routes each call to the right model, and on the same boundary enforces a safety floor and records every decision. One binary, no rewrite, no key to start.
Who is this for? Pick your path: run your agent through it now · run the modular Colab quickstart · run a model in the kernel · the performance story · a hard security floor.
From source:
go install github.com/anthony-chaudhary/fak/cmd/fak@latest
From a clone:
git clone https://github.com/anthony-chaudhary/fak
cd fak
go build -o fak ./cmd/fak
Go 1.26+ is required. With GOTOOLCHAIN=auto, Go can fetch the toolchain on first build. There are no external Go dependencies and no go.sum. Prebuilt archives and container guidance are in INSTALL.md and GETTING-STARTED.md.
Run from the repository root:
go build ./cmd/fak
make test-fast
make ci
On native Windows, go build and go vet work normally, but native go test can be blocked by OS Application Control on freshly compiled test binaries. Use ./test.ps1 under WSL for the full suite on that host.
高质量的AI代理安全工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,融合代理内核 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | fak |
| Topics | agentai-safetygo |
| GitHub | https://github.com/anthony-chaudhary/fak |
| License | Apache-2.0 |
| 语言 | Go |
收录时间:2026-06-30 · 更新时间:2026-06-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端