Searches the code knowledge graph by function, class, or type using FTS5 full-text search
集成
code-search
试用Searches GitHub for existing implementations, libraries, or patterns
它能做什么
Searches GitHub for existing implementations, libraries, or patterns
技能文档
Night Market Skill — ported from claude-night-market/tome. For the full experience with agents, hooks, and commands, install the Claude Code plugin.
Code Search
When To Use
- Finding existing implementations or libraries on GitHub
- Part of a
/tome:researchsession or standalone search
When NOT To Use
- Searching local codebase (use Grep or Explore agent)
- Academic literature (use
/tome:papers)
Search GitHub for implementations of a given topic.
Usage
Invoked as part of /tome:research or standalone.
Workflow
- Build search queries using
tome.channels.github.build_github_search_queries() - Execute queries via WebSearch
- Parse results via
parse_github_result() - Optionally use GitHub API via
build_github_api_search()for richer metadata - Rank via
rank_github_findings() - Return Finding objects
相关技能
Detects architectural clusters and coupling boundaries via community detection on the code graph
Improves code quality across duplication, efficiency, and architectural fit
Runs multi-source research across GitHub, HN, Reddit, arXiv, and Semantic Scholar
Build a compact local SQLite index of every function, class, method, interface and type across your repos, so an agent finds a symbol's file:line and signatu...
代码库索引与理解系统。扫描项目目录,提取所有符号定义(类、函数、变量、导入),构建可搜索的 JSON 索引,支持按名称/类型/文件查询。受 Claude Code 的 codebase indexing 启发,100% 原创实现,使用 Python ast + ripgrep。