Problem
Three documentation files tell users to run squads autopilot for autonomous dispatch, but the command is deprecated. Running it shows a deprecation notice and routes to squads run internally.
Affected files
| File |
Incorrect example |
docs/commands.md (line 19) |
squads autopilot listed under "For Humans" as an active command |
docs/running.md (lines 29–31) |
squads autopilot --interval 30 --budget 50 shown as canonical autonomous dispatch |
README.md (lines 57–59) |
Same squads autopilot in the quickstart code block |
Correct behavior
# Deprecated — shows deprecation notice:
squads autopilot --interval 30 --budget 50
# Correct:
squads run --org
squads run -i 15 --budget 50
squads run --once --dry-run
Fix
- Replace
squads autopilot examples in all three files with squads run equivalents
- Remove
squads autopilot from the "For Humans" list in docs/commands.md
- No code change — cli.ts tombstone is correct
Source: docs-eval agent
Problem
Three documentation files tell users to run
squads autopilotfor autonomous dispatch, but the command is deprecated. Running it shows a deprecation notice and routes tosquads runinternally.Affected files
docs/commands.md(line 19)squads autopilotlisted under "For Humans" as an active commanddocs/running.md(lines 29–31)squads autopilot --interval 30 --budget 50shown as canonical autonomous dispatchREADME.md(lines 57–59)squads autopilotin the quickstart code blockCorrect behavior
Fix
squads autopilotexamples in all three files withsquads runequivalentssquads autopilotfrom the "For Humans" list indocs/commands.mdSource: docs-eval agent