Agent工具集
Tool
Ai Toolbox
GitHub - coulsontl/ai-toolbox: Personal AI Toolbox · GitHub
快速配置Claude Code、OpenCode和Codex,统一管理MCP、SKills
RTK 节约Token好帮手
优雅前端设计
agent-browser
GitHub - vercel-labs/agent-browser: Browser automation CLI for AI agents · GitHub
用于AI Agent的浏览器自动化命令行工具,可以快速调试web应用
可以用来操作chrome dev tools和Playwright
OpenSpec
GitHub - Fission-AI/OpenSpec: Spec-driven development (SDD) for AI coding assistants. · GitHub
最受喜爱的规范框架。
MCP
sequential-thinking
深度思考
{
"sequential-thinking": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
}
}
Memory
持久化记忆图谱
{
"memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
Fetch
获取网页内容,可以被jina是它的上位替代
{
"fetch": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-server-fetch"
]
}
}
jina
将网页转化为可读取的文本
{
"jina-mcp-server": {
"type": "http",
"url": "https://mcp.jina.ai/v1",
"headers": {
"Authorization": "Bearer ${TOKEN}"
}
}
}
Exa
在线快速搜索
{
"exa": {
"type": "http",
"url": "https://mcp.exa.ai/mcp"
}
}
chrome dev tools
细颗粒度调试Web程序
{
"chrome_devtools": {
"type": "stdio",
"command": "npx",
"args": [
"chrome-devtools-mcp@latest"
]
}
}
Playwright
无头web程序调试器
{
"playwright": {
"type": "stdio",
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
Context7
在线文档查看器
{
"context7": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp"
],
"env": {
"CONTEXT7_API_KEY": "${TOKEN}"
}
}
}
Skill
Superpower
superpowers
非常严谨的开发约束方案