AI Agent Playbook
- Create project:
agentcli new --module example.com/mycli mycli
- Add command:
agentcli add command --dir ./mycli --preset file-sync sync-data
- Validate contract:
agentcli doctor --dir ./mycli --json
- Run gate:
cd mycli && task verify
Prompt Starter
You are helping me onboard to agentcli-go.
Goal: create a deterministic Go CLI and keep it contract-compliant.
1) agentcli new --module example.com/mycli mycli
2) agentcli add command --dir ./mycli --preset file-sync sync-data
3) agentcli doctor --dir ./mycli --json
4) cd mycli && task verify
If anything fails, fix and re-run verification.