用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pdkproitf/pair-me --skill locate-code命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | locate-code |
| description | Locate where code lives for a feature or topic — returns grouped file paths only, no content analysis |
| metadata | {"phase":"orient","input":"feature name, topic, or concept to locate","output":"file paths grouped by layer (implementation, tests, config, entry points)","dependencies":"codebase-memory-mcp, graphify"} |
Find WHERE code lives in the codebase for a given feature or topic. Return file locations grouped by purpose — do NOT read or analyze file contents.
Use this skill when the user:
topic: $ARGUMENTS
This skill only reads indexes — it never builds them. Building is the codebase-indexing
skill's job. If an index is missing, fall back immediately; don't block on a build.
Try codebase-memory-mcp first:
index_status, then search_graph(name_pattern=topic, ...)index_repository; optionally suggest the user run codebase-indexing)Step 0b: Try graphify as fallback:
.docs/indexing/graphify/ exists and try a graphify querysearch_graph(name_pattern, label_pattern, qn_pattern) to find functions, classes, and routes matching topicsearch_code(pattern) for text-based search with graph augmentationget_architecture() to understand project layers and organizationapp/ — controllers, models, jobslib/ — services, clients, utilitiesspec/ — tests mirroring source pathsconfig/ — configuration filesdocs/ — documentation## File Locations for [topic]
### Implementation Files
- `path/to/file.rb` — one-line purpose
### Test Files
- `spec/path/to/file_spec.rb` — what it tests
### Configuration
- `config/...` — what it configures
### Related Directories
- `lib/feature/` — contains X files
### Entry Points
- `app/controllers/...` — where the topic is wired in
基于 SOC 职业分类