用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/UitbreidenOS/Claudient --skill skill-discovery命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
基于 SOC 职业分类
正在显示 SKILL.md
| name | skill-discovery |
| description | Find related skills via dependency graph analysis, discover learning paths, and identify skill clusters |
Phrase your query as one of:
Run the dependency graph script and parse the output:
node scripts/dependency-graph.js --json
This produces an adjacency list: { "skill-name": ["ref1", "ref2", ...], ... }
If you need stats instead (e.g., to find orphans):
node scripts/dependency-graph.js --stats
skills/ai-engineering/, skills/backend/, etc.) for clarityExample: Query: "What skills relate to prompt-caching?"
Example: Query: "What's a learning path to agent-teams?"
Compare the JSON graph output with the full skill inventory:
Report both categories:
Example:
Top central skills (by in-degree):
1. prompt-engineering: 18 incoming
2. agent-handoff: 16 incoming
3. claude-api: 14 incoming
For each result, provide:
skills/ai-engineering/)Example output:
### Skills related to "RAG"
**Prerequisites:**
- prompt-engineering (skills/ai-engineering/) — Understanding how to structure prompts before implementing retrieval
- llm-eval (skills/ai-engineering/) — Evaluating retrieval quality and relevance
**Core RAG:**
- rag-architect (skills/ai-engineering/) — Building end-to-end RAG systems
**Expansions:**
- enterprise-search (skills/ai-engineering/) — Scaling RAG to production
- mcp-server-builder (skills/ai-engineering/) — Integrating RAG with MCP servers
**Learning Path:**
1. prompt-engineering
2. llm-eval
3. rag-architect
4. (choose: enterprise-search OR mcp-server-builder)
If the user wants to dig deeper, offer to:
scripts/visualize-graph.js)workflows/skill-audit.md) to detect gaps or overconnectionsUser Query: "I want to learn about multi-agent workflows. Where should I start?"
Skill Discovery Process:
multi-agent-memory.md, agent-teams.md{
"multi-agent-memory": ["agent-handoff", "agent-tracing", "session-handoff"],
"agent-teams": ["agent-handoff", "managed-agents"]
}
session-handoff (basic agent communication)
↓
agent-handoff (structured handoff protocol)
↓
agent-tracing (observability)
↓
multi-agent-memory OR agent-teams (choose path)
Result:
Multi-agent workflow learning path:
1. **session-handoff** — understand how agents hand off state
2. **agent-handoff** — structured protocols for agent-to-agent transfer
3. **agent-tracing** — observe multi-agent execution and debug issues
4. Choose one:
- **multi-agent-memory** (if you need shared state across agents)
- **agent-teams** (if you're building coordinated agent groups)
Estimated reading time: 20–30 minutes
This skill relies on scripts/dependency-graph.js and should be invoked whenever a user asks a discovery question. The skill effectively makes the graph queryable in natural language.
For programmatic use in other tools or workflows, reference the guide at guides/skill-dependency-graph.md.