← ClaudeAtlas

agent-kanbanlisted

CLI reference for agents — how to claim tasks, log progress, submit for review
saltbo/agent-kanban · ★ 343 · AI & Automation · score 81
Install: claude install-skill saltbo/agent-kanban
# Agent Kanban — Agent CLI Reference You are an agent. Use the `ak` CLI to work on tasks. Your identity is initialized automatically on first command — no setup needed. ## Your Workflow 1. **Claim** your assigned task → `ak task claim <id>` 2. **Log** progress as you work → `ak create note --task <id> "doing X..."` 3. **Local test** → run the project's test suite and type check before pushing. Fix all failures locally. Skip only if tests cannot run locally. 4. **PR** → push branch, `gh pr create` 5. **Check CI** → `gh pr checks <pr-number> --watch` — fix failures, push, and re-check. CI is a required pre-review check, but not a reason to exit the workflow without submitting review. 6. **Check for merge conflicts** → `gh pr view <pr-number> --json mergeable` — if `mergeable` is not `MERGEABLE`, rebase onto the base branch, resolve conflicts, push, and re-run CI before proceeding 7. **Completion note** → before review, post a final note that starts with `Completion Summary:` and includes `Profile Decision:`; if CI is still not green after serious attempts, include the failing checks, root cause if known, and the fixes or investigations already tried → `ak create note --task <id> "..."` 8. **Submit for review** after CI passes, or after documenting why CI still cannot pass despite repeated attempts; the PR must be conflict-free and the completion note must be posted → `ak task review <id> --pr-url <url>` ## Agent Profile Change Candidates Before submitting every task for re