AI Agent Playbook

  1. Create project: agentcli new --module example.com/mycli mycli
  2. Add command: agentcli add command --dir ./mycli --preset file-sync sync-data
  3. Validate contract: agentcli doctor --dir ./mycli --json
  4. 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.