pilot
SolidIntelligent skill router for methodology-skills. Analyzes user request and recommends the best methodology sequence. Use when user asks 'which skill should I use', 'help me choose a methodology', or when starting complex tasks.
AI & Automation 7 stars
2 forks Updated 6 days ago MIT
Install
Quality Score: 84/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Pilot - 技能领航员
## 前置协议
### 环境检测
```bash
PROJECT_ROOT=$(git rev-parse --show-toplevel 2>/dev/null || echo "unknown")
BRANCH=$(git branch --show-current 2>/dev/null || echo "unknown")
COMMIT=$(git rev-parse --short HEAD 2>/dev/null || echo "unknown")
echo "PROJECT: $PROJECT_ROOT"
echo "BRANCH: $BRANCH"
echo "COMMIT: $COMMIT"
```
### 工件目录初始化
```bash
mkdir -p memory/artifacts/pilot
```
### 经验读取(推荐)
**触发时机**:分析任务类型前,为当前任务准备最佳实践
**推荐动作**:调用 experience-manager 技能检索相关经验
**执行步骤**:
1. **提取任务关键词**
```
从用户请求中提取:
- 核心任务关键词
- 技术栈关键词
- 问题类型关键词
```
2. **写入请求工件**
```json
Write(
file_path="memory/artifacts/pilot/experience-request.json",
content={
"requesting_skill": "pilot",
"action": "retrieve",
"task_keywords": ["关键词1", "关键词2"],
"task_type": "bugfix|feature|refactor",
"technologies": ["Technology1", "Technology2"]
}
)
```
3. **读取经验结果**
```
result = Read("memory/artifacts/experience-manager/experience-result.json")
```
4. **应用到技能推荐**
```markdown
基于历史经验,推荐以下技能链:
1. /investigate - 快速定位问题(历史成功率 90%)
2. /first-principles - 分析根本原因(历史应用 5 次)
3. /pdca-cycle - 迭代优化
⚠️ 预防措施(来自历史经验):
- 新项目优先检查国际化配置
- 使用标准配置模板
```
**价值**:基于历史经验优化技能推荐,提高成功率。
### 错误预防(自动)
**触发时机**:检测到潜在错误风险时
**自动动作**:调用 experience-manager 获取预防建议
**执行步骤**:
1. **检测风险**
```
在分析任务类型时,检测常见的错误风险:
- 缺少配置检查
- 使用了已废弃的API
- 忽略了边界情况
```
2. **写入预防请求**
```json
Write(
file_path="memory...
Details
- Author
- konglong87
- Repository
- konglong87/methodology-skills
- Created
- 4 months ago
- Last Updated
- 6 days ago
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
experience-manager
管理项目经验知识的沉淀与读取,实现知识闭环
7 Updated 6 days ago
konglong87 AI & Automation Solid
goal-oriented
MUST use for ANY user request. This is a rigid requirement that applies to all tasks and conversations.
7 Updated 6 days ago
konglong87 AI & Automation Featured
using-superpowers
在开始任何对话时使用——确立如何查找和使用技能,要求在任何响应(包括澄清性问题)之前调用 Skill 工具
7,289 Updated 4 days ago
jnMetaCode