经 AI Skill Hub 精选评估,智能代理工具包 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
智能代理工具包 是一款遵循 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/itlackey/akm
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"-------": {
"command": "npx",
"args": ["-y", "akm"]
}
}
}
# 配置文件位置
# 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", "akm"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
A package manager for AI agent capabilities — scripts, skills, commands, agents, knowledge, memories, workflows, wikis, vaults, lessons, and scheduled tasks — that works with any AI coding assistant that can run shell commands.
akm gives agents a curated, searchable library built from local directories, GitHub repos, npm packages, and websites. Instead of front-loading a giant prompt, agents pull exactly what they need, when they need it, and feed results back so the library improves over time.
Add this to your AGENTS.md, CLAUDE.md, or system prompt:
```markdown
You have access to a searchable library of scripts, skills, commands, agents, knowledge, workflows, vaults, wikis, lessons, and memories via the akm CLI. Use akm -h for details. ```
No plugins or SDKs required. Platform-specific integrations are available in akm-plugins.
| Feature | Description |
|---|---|
| [Search & Discovery](docs/features/search-discovery.md) | Build the index, search, curate a shortlist, and load assets by ref |
| [Knowledge Management](docs/features/knowledge-management.md) | Capture memories, import docs, manage wikis, and store config in vaults |
| [Sources & Registries](docs/features/sources-registries.md) | Connect local dirs, git repos, npm packages, and websites; browse the registry |
| [Workflows](docs/features/workflows.md) | Structured multi-step procedures with resumable run state |
| [The Improvement Loop](docs/features/improvement-loop.md) | Feedback, history, proposals, and automated asset improvement |
| [Agent Integration](docs/features/agent-integration.md) | Wire akm into Claude Code, OpenCode, Cursor, and other coding assistants |
Option 1 — Prebuilt binary (recommended, no runtime required):
```sh
akm setup # guided first-time setup
akm add github:itlackey/akm-stash # install the official onboarding stash
akm index # build the search index
akm curate "deploy" # get a curated shortlist
akm show workflow:deploy # load the best match
akm remember "Deployment needs VPN" # capture a memory
akm feedback workflow:deploy --positive
For non-interactive setup: akm setup --yes (or --dir ~/custom-stash for a custom path).
See docs/getting-started.md for a full walkthrough.
| Doc | Description |
|---|---|
| [Getting Started](docs/getting-started.md) | Install, first-time setup, add sources, search, show |
| [Concepts](docs/concepts.md) | Sources, registries, asset types, refs, and the stash |
| [CLI Reference](docs/cli.md) | All commands and flags |
| [Configuration](docs/configuration.md) | Settings, providers, embedding, and Ollama setup |
| [Stash Maker's Guide](docs/stash-makers.md) | Build, publish, and share your own stashes |
| [Registry](docs/registry.md) | Registries, the index format, and private registry setup |
| [Wikis](docs/wikis.md) | Multi-wiki knowledge bases |
| [Release Notes — 0.8.0](docs/migration/release-notes/0.8.0.md) | Latest release notes and migration guide |
| [Stability policy](STABILITY.md) | Which CLI surfaces are stable, evolving, or experimental |
| [Security policy](SECURITY.md) | Threat model and how to report vulnerabilities |
| [Changelog](CHANGELOG.md) | Per-release behavior changes |
Add and search a stash
akm add github:owner/team-stash
akm index
akm search "database migration" --type script
akm show script:migrate.sh
Capture and route knowledge
akm remember "Hot-fix deploys skip staging" --target team-stash
akm import ./incident-report.md --wiki ops
akm wiki create ops
Build a living wiki (Karpathy LLM wiki pattern)
akm wiki create research # scaffold wikis/research/ with schema/index/log/raw/
akm wiki stash research https://arxiv.org/abs/2404.01744 # fetch raw source into raw/
akm wiki stash research ./notes/meeting.md # stash local notes as immutable raw
akm wiki ingest research # dispatch defaults.agent to run the ingest workflow end-to-end
akm implements Andrej Karpathy's LLM wiki pattern: raw sources live in raw/ (immutable), the agent writes synthesized pages alongside them, and a schema.md rulebook keeps the voice and structure consistent across sessions. akm surfaces paths and invariants; your agent does the writing. See docs/wikis.md.
Improvement loop
akm feedback skill:planner --negative --reason "Doesn't account for merge conflicts"
akm improve # generate proposals from feedback + history
akm proposal list # review pending proposals
akm proposal accept <uuid-or-ref> # apply a proposal
akm proposal reject <uuid-or-ref> # discard it
Clone and customize an asset ```sh akm clone workflow:ship-release --dest ./project/.claude
高质量的AI代理工具包,值得关注
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MPL 2.0 — 文件级 Copyleft,修改的文件需开源,但可与闭源代码结合使用。
AI Skill Hub 点评:智能代理工具包 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | akm |
| 原始描述 | 开源MCP工具:akm — Agent Kit Manager. A package manager for AI agent skills, commands, tools,。⭐47 · TypeScript |
| Topics | AI代理工具MCPTypeScript |
| GitHub | https://github.com/itlackey/akm |
| License | MPL-2.0 |
| 语言 | TypeScript |
收录时间:2026-06-13 · 更新时间:2026-06-13 · License:MPL-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端