reporecall
by proofofwork-agency·★ 30·综合分 44
本地代码库记忆系统,具有AST索引、调用图和业务上下文生成功能,支持Claude Code和MCP代理。
概述
Reporecall是一个全面的本地代码库记忆系统,通过索引代码库提供基于意图的代码检索、自动生成的Wiki页面和交互式架构仪表板。它使用AST索引和调用图实现高效的代码探索和AI编程助手的上下文感知对话。该系统完全离线运行,相比传统方法减少3-8个token,同时保持所有功能在本地机器上。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当您处理需要智能上下文检索、架构可视化的代码库,并希望在 AI 辅助编程中减少 token 使用且无需云依赖时,选择 Reporecall。
什么时候不要选它
如果您需要通过 MCP 工具频繁对代码库进行写入操作,不要选择 Reporecall,因为它似乎主要是专注于上下文检索的只读系统。
此 server 暴露的工具
从 README 抽取出 12 个工具search_codeSearch codebase for specific terms or patterns
get_symbolRetrieve information about a specific symbol or class
resolve_seedResolve a seed query to related code files and context
find_callersFind all files that call a specific function or symbol
find_calleesFind all functions called by a specific function or symbol
explain_flowExplain how a code flow works or what calls what
build_stack_treeBuild a stack tree showing function calls and relationships
get_importsGet all imports for a specific file or symbol
list_product_areasList business product areas with their descriptions
business_context_queryQuery business context and capability information
wiki_readRead a generated wiki page by slug
refresh_contextRefresh the codebase index and regenerate wiki pages
可对比工具
安装
npm install -g @proofofwork-agency/reporecall
reporecall init # 创建 .memory/、hooks、MCP 配置
reporecall index # 索引代码库(构建拓扑图+Wiki)
reporecall serve # 启动守护进程+文件监视器
reporecall lens --serve # 打开架构仪表板对于Claude Desktop集成:
{
"mcpServers": {
"reporecall": {
"command": "npx",
"args": ["@proofofwork-agency/reporecall", "mcp"],
"env": {
"REPORECALL_PROJECT_PATH": "."
}
}
}
}FAQ
- Reporecall是否需要云服务或API密钥?
- 不需要,Reporecall完全使用SQLite/FTS索引在本地工作。虽然可以配置可选的语义后端,但这不是必需的。
- 它如何与不同的AI编程助手集成?
- 它提供三种集成方式:为Claude Code提供自动hooks,为Codex和其他代理提供MCP/CLI访问,以及为任何工具提供结构化的JSON导出。
reporecall 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。