Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

codebase-search代码库搜索

Agent Skill

codebase-search 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

618

周安装

26

GitHub Stars

11

下载量

216
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codebase-search(代码库搜索)
来源仓库:https://github.com/akillness/skills-template
仓库路径:skills/codebase-search
安装命令:
npx skills add https://github.com/akillness/skills-template --skill codebase-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/skills-template --skill codebase-search

简介

用于在大型代码库中快速定位定义与引用。

  • 支持查找入口点、配置项和测试用例。codebase-search 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适合导航复杂项目结构,减少盲目浏览。
  • 需明确搜索目标,避免返回无关结果。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 安装时请确认是否允许读取全部文件。

SKILL.md

Codebase Search

When to use this skill

  • The main job is repo navigation before edits.
  • The user needs to find definitions, call sites, entry points, config owners, tests, templates, content references, or likely impact surface.
  • The repo is large enough that random file reading will waste time.
  • The request is really "where does this live / what uses it / what should I inspect first?" even if the user never says "search".
  • The repo may be app code, infra/config, content/templates, or game tooling/assets, and the first step is still discovery.

Do not use this skill as the main workflow when:

  • The user already found the area and now needs root-cause diagnosis → use debugging or log-analysis.
  • The user wants a behavior-preserving cleanup or migration plan → use code-refactoring.
  • The user wants judgment on a concrete diff / PR → use code-review.
  • The user wants a persistent whole-repo or mixed-corpus structure map → use graphify.

Core idea

codebase-search should act like a packet router, not a giant search tutorial.

  1. Normalize the request into one primary packet.
  2. Narrow scope before dumping matches.
  3. Read only the winning files.
  4. Return a compact evidence map.
  5. Route out as soon as search is no longer the bottleneck.

Read these support docs before choosing the packet:

Instructions

Step 1: Normalize the request

Convert the prompt into this intake shape first:

codebase_search_packet:
  primary_packet: exact-text | symbol-indexed | structural | config-content | hosted-search | graph-path
  repo_shape: app | infra | content | game | mixed | unknown
  search_goal: locate | references | ownership | impact | archaeology | unknown
  scope_hint: path | package | file-type | subsystem | repo-wide | unknown
  route_after: stay-here | debugging | log-analysis | code-refactoring | code-review | graphify

Choose one primary packet for the run. If two seem plausible, pick the cheaper one that reduces uncertainty fastest.

Step 2: Choose the packet

PacketUse whenBest fitsCommon tools / shapes
exact-textThe user knows a string, env var, route, flag, class name spelling, error text, or file fragmentliteral lookups, config keys, route paths, import namesrg, git grep, editor search
symbol-indexedThe user needs definitions, references, or call sitesfunction/class/interface ownership, API tracing, monorepo navigationLSP/workspace symbol, ctags, indexed repo search
structuralSyntax shape matters more than literal textmissing cleanup, unsafe pattern inventories, migration prepast-grep, Semgrep, Comby, tree-sitter-style search
config-contentThe repo surface is config, content, templates, front matter, shortcodes, scenes, assets, or build scriptsTerraform/Kubernetes, Markdown/MDX sites, Hugo/Next content, game packaging/configfile discovery + exact-text + targeted scripts
hosted-searchThe repo is remote/browser-first or cross-repo lookup mattersPR archaeology, repo you do not have locally, shareable linksGitHub/GitLab hosted search
graph-pathThe request is really about dependency tracing or persistent structurecall graph, path tracing, architecture map, graph reportgraphify, code graph/code map tools

Packet rules:

  • Prefer exact-text when the user already has a concrete token.
  • Prefer symbol-indexed for “where is this defined / referenced?”
  • Prefer structural only when regex would be too blunt.
  • Prefer config-content when the real surface is not classic source code.
  • Prefer hosted-search when local context is missing.
  • Prefer graph-path only when ordinary search is no longer enough.

Step 3: Narrow scope before reading everything

Apply at least one narrowing move before reading files:

  • limit by directory or package
  • limit by file type
  • separate authored files from generated/vendor folders
  • start with entry points, loaders, config schemas, tests, examples, or build scripts
  • in content/game repos, search metadata + template/asset surfaces before assuming code owns the answer

Useful heuristics by repo shape:

  • app → start with entry point, router/handler, config loader, test
  • infra → start with module/overlay/root config, variable/schema, deployment surface
  • content → start with content folder, front matter key, partial/include/shortcode/template
  • game → start with runtime code, engine config, scene/asset/build script, editor/visual graph references

Step 4: Read winners, not the whole match list

After the search packet returns matches:

  1. pick the most likely definition / ownership file
  2. pick 1–3 important consumers or references
  3. pick 1 config/test/example/build file when setup matters
  4. summarize the flow instead of pasting raw terminal output

Step 5: Return an evidence map

Default response shape:

## Search brief
- Goal: [what I was locating]
- Packet: exact-text | symbol-indexed | structural | config-content | hosted-search | graph-path
- Scope: [paths/file types/packages]

## Best entry points
- `path/to/file`: why it matters
- `path/to/other-file`: why it matters

## Key evidence
- `path:line` — what it shows
- `path:line` — how it connects

## Likely flow / ownership
- entry → consumer → config/test/content surface

## Next route-out
- stay in `codebase-search` or route to the next skill

Step 6: Use packet-specific heuristics

For bug-location requests

  • start from the error string, route, flag, or recent change token
  • locate the definition plus highest-signal consumers
  • switch to debugging once the likely failure path is mapped

For impact analysis

  • definition first
  • major consumers second
  • tests/config/docs/content surfaces third
  • separate must-update from maybe-affected
  • route to code-refactoring when the user is ready to change behavior-preserving structure

For config/content ownership

  • locate loader/schema/template first
  • then find runtime consumers or referenced pages/assets
  • call out whether ownership sits in config, content metadata, templates, or code

For structural search

  • explain the search shape in plain English
  • prefer AST-aware tooling
  • if forced to approximate with regex, label the confidence limit clearly

For archaeology requests

  • start from entry points, docs, examples, tests, or build scripts
  • avoid pretending you already understand the architecture after one search
  • route to graphify if the user actually wants persistent structure mapping

Step 7: Route out aggressively

Switch when the next job is no longer search:

  • Root cause, reproduction, hypothesesdebugging
  • Raw log triagelog-analysis
  • Behavior-preserving cleanup / codemod planningcode-refactoring
  • Diff / PR judgmentcode-review
  • Persistent architecture graph or path tracinggraphify

Examples

Example 1: Pre-change discovery

Prompt:

Find where auth is implemented and what files I should inspect before changing it.

Good response shape:

  • choose symbol-indexed or exact-text
  • identify entry points, config, and tests
  • return a compact evidence map
  • route to code-refactoring or debugging only after the discovery step

Example 2: Config/content ownership

Prompt:

Which MDX pages still use the old pricing CTA shortcode, and where is the shared partial defined?

Good response shape:

  • choose config-content
  • search content metadata + shortcode/template surfaces
  • identify source partial plus affected pages
  • keep the answer discovery-first

Example 3: Structural query

Prompt:

Find all React effects missing cleanup. I do not want plain grep.

Good response shape:

  • choose structural
  • prefer AST-aware matching
  • list highest-confidence hits
  • label regex fallback limits if needed

Example 4: Game/infrastructure archaeology

Prompt:

Search this repo for where matchmaking region config is defined and what scenes or services consume it.

Good response shape:

  • choose config-content or symbol-indexed based on repo shape
  • separate config ownership from runtime consumers
  • call out code + asset/build surfaces if they both matter

Best practices

  1. Choose the smallest packet that can answer the question.
  2. Narrow scope before reading large match sets.
  3. Return an evidence map, not a terminal transcript.
  4. Cover config/content/game surfaces honestly; repo navigation is not only source-code lookup.
  5. Separate search from diagnosis, refactoring, review, and persistent graphing.
  6. Label confidence when structural intent is approximated with plain text search.
  7. For monorepos, group findings by package or subsystem.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.16%
按下载量换算78

Claude

26.52%
按下载量换算57

Cursor

18.27%
按下载量换算39

Gemini CLI

9.1%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills