name: status description: Read-only status of an AgentBoard phase-based project — current phase (N/13), task counts by status, blockers, and the next action, without starting work. Use whenever the user asks where a project stands, what phase it's on, what's blocked, or what's next on an AgentBoard project — e.g. "project status", "where are we", "what phase are we in", "anything blocked". Mutates nothing. For a workspace-board snapshot, use board-status instead.
AgentBoard Status
Quick situational awareness. Read-only — no mutations.
Instructions
Authenticate if needed, then verify connectivity. If only
agentboard_authenticateandagentboard_complete_authenticationare visible, run the OAuth bootstrap fromskills/agentboard/SKILL.md§1.3 first. Then callagentboard_health_check.- If
health_checkfails post-auth, tell the user: "AgentBoard cloud service is unreachable. Check your network connection or service status at agent-board.app." - Stop here if unhealthy.
- If
List projects by calling
agentboard_list_projects:- If no projects exist, tell the user: "No projects found. Use
/kickoffto create one." - Stop here if no projects.
- If no projects exist, tell the user: "No projects found. Use
For each project (or the active one if only one), call
agentboard_get_projectandagentboard_list_tasks.Display a status summary:
## AgentBoard Status **Project**: [name] **Phase**: [N]/13 — [phase name] **Target**: [target_project_path or "not set"] ### Tasks | Status | Count | Details | |--------|-------|---------| | In Progress | N | [task titles] | | Blocked | N | [task titles + reason if in notes] | | Ready | N | [next claimable task title] | | Review | N | [awaiting human review] | | Done | N/total | | ### Next Action [What should happen next — e.g., "Claim next ready task with /pickup" or "Waiting for human to approve Phase 3 document"]Do not start any work. This skill is purely informational.