fleet-copilot
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseFleet Co-Pilot Skill
Fleet Co-Pilot Skill
The agent takes the user's natural language, formulates a goal with definition
of done, writes it to the goal file, enables lock mode, and starts working.
SessionCopilot reasoning monitors progress on each turn.
该Agent会接收用户的自然语言输入,制定带有完成标准的目标,将其写入目标文件,启用锁定模式并开始工作。SessionCopilot推理机制会在每一步监控进度。
Usage
使用方法
/fleet-copilot fix the auth bug and make sure tests pass
/fleet-copilot implement OAuth2 login and create a PR
/fleet-copilot keep going until all the TODOs are done/fleet-copilot fix the auth bug and make sure tests pass
/fleet-copilot implement OAuth2 login and create a PR
/fleet-copilot keep going until all the TODOs are doneInstructions
操作说明
When this skill is activated:
激活该Skill时:
Step 1: Formulate the goal
步骤1:制定目标
From the user's natural language, create:
- Goal: Clear objective statement
- Definition of Done: Concrete, verifiable criteria
根据用户的自然语言,生成以下内容:
- 目标:清晰的目标陈述
- 完成标准:具体、可验证的判定条件
Step 2: Write the goal file
步骤2:写入目标文件
Use the Write tool to create :
.claude/runtime/locks/.lock_goalGoal: [objective from user's words]
Definition of Done:
- [criterion 1]
- [criterion 2]
- [criterion 3]使用Write工具创建文件:
.claude/runtime/locks/.lock_goalGoal: [objective from user's words]
Definition of Done:
- [criterion 1]
- [criterion 2]
- [criterion 3]Step 3: Enable lock
步骤3:启用锁定
bash
python .claude/tools/amplihack/lock_tool.py lockbash
python .claude/tools/amplihack/lock_tool.py lockStep 4: Start working
步骤4:开始工作
Begin immediately. The LockModeHook uses SessionCopilot to monitor and guide.
立即开始工作。LockModeHook会借助SessionCopilot进行监控和引导。
Auto-disable
自动禁用
Lock mode stops when:
- Goal achieved ()
mark_complete - Human needed ()
escalate - User runs
/amplihack:unlock
当出现以下情况时,锁定模式会停止:
- 目标完成(执行)
mark_complete - 需要人工介入(执行)
escalate - 用户运行命令
/amplihack:unlock