How this command is triggered — by the user, by Claude, or both
Slash command
/lattice:statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Lattice Status Show all tracked projects with their current status. ## Instructions 1. Source the Lattice config: 2. Build the auth args (omit the header when no token is set, mirroring `hooks/scripts/lib/common.sh`): 3. Fetch all projects: 4. Display the results in a readable table format showing: - Project name (display_name or canonical_name) - Client tag (if set) - Last work (relative time of the most recent real-work event — not heartbeats) - Status (active/idle based on whether active sessions exist) 5. For projects with active sessions, also show the device an...
Show all tracked projects with their current status.
source ~/.config/lattice/config.env
hooks/scripts/lib/common.sh):[ -n "$LATTICE_API_TOKEN" ] && AUTH_ARGS=(-H "Authorization: Bearer $LATTICE_API_TOKEN") || AUTH_ARGS=()
curl -s "${AUTH_ARGS[@]}" "${LATTICE_API_URL}/api/projects"
Display the results in a readable table format showing:
For projects with active sessions, also show the device and branch.
npx claudepluginhub bookchiq/lattice-tracker --plugin lattice/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
/statusDisplays progress in the active vibe session: current phase, recent changes, verifications, next steps, and required user actions in plain language.