用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill specter-onboard命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | specter-onboard |
| description | Get oriented in an unfamiliar codebase with guided exploration Use when this capability is needed. |
| metadata | {"author":"forbiddenlink"} |
Let your codebase introduce itself and guide you through its structure.
This skill invokes the Specter agent to act as the codebase itself, explaining:
Once the knowledge graph is built, ask the codebase about itself:
@specter Tell me about yourself. What kind of project are you?
@specter I'm new here. What should I know before I start coding?
@specter What are the most important files I should understand first?
@specter Where are the complexity hotspots I should be careful with?
@specter How do the different parts of you connect together?
Run a scan first if you haven't:
npx specter-mcp scan
You: @specter I just joined this project. Help me get oriented.
Specter: Welcome! I'm a TypeScript API backend with 47 source files.
Let me tell you about myself...
I'm organized into three main areas:
- `/src/api/` — My REST endpoints (this is where requests come in)
- `/src/services/` — My business logic (this is where I do real work)
- `/src/db/` — My data layer (this is my memory)
The most important files to understand first:
1. `src/api/routes.ts` — All my endpoints start here
2. `src/services/auth.ts` — How I handle authentication
3. `src/db/models.ts` — My core data structures
Heads up: `auth.ts` has a complexity score of 23 and hasn't been
touched in 4 months. Tread carefully there.
What would you like to explore first?
Converted and distributed by TomeVault — claim your Tome and manage your conversions.