
Fleet Copilot
- 52 installs
- 70 repo stars
- Updated July 26, 2026
- rysweet/amplihack
Helps with ai & agent building tasks.
About
fleet-copilot is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- fleet-copilot
- AI & Agent Building
- AI-coding skill
Fleet Copilot by the numbers
- 52 all-time installs (skills.sh)
- +1 installs in the week ending Jul 26, 2026 (Skillselion tracking)
- Ranked #7,034 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/rysweet/amplihack --skill fleet-copilotAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 52 |
|---|---|
| repo stars | ★ 70 |
| Last updated | July 26, 2026 |
| Repository | rysweet/amplihack ↗ |
What it does
Helps with ai & agent building tasks.
Files
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.
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 doneInstructions
When this skill is activated:
Step 1: Formulate the goal
From the user's natural language, create:
1. Goal: Clear objective statement 2. Definition of Done: Concrete, verifiable criteria
Step 2: Write the goal file
Use the Write tool to create .claude/runtime/locks/.lock_goal:
Goal: [objective from user's words]
Definition of Done:
- [criterion 1]
- [criterion 2]
- [criterion 3]Step 3: Enable lock
python .claude/tools/amplihack/lock_tool.py lockStep 4: Start working
Begin immediately. The LockModeHook uses SessionCopilot to monitor and guide.
Auto-disable
Lock mode stops when:
- Goal achieved (
mark_complete) - Human needed (
escalate) - User runs
/amplihack:unlock