Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.joggr.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

/gg-status shows where you are in a workflow — which phases or tasks are complete, which are in progress, and what comes next. It works for both project-mode (multi-phase) and task-mode (single-session) workflows. It is read-only and does not modify any files.

Invocation

/gg-status [project-slug]
  • No argument — shows the active project, active task, or both if both are running.
  • With a project slug — shows the status of the specified project.

What It Produces

A status summary displayed in the chat. No files are written or modified.
my-project — Add user profile endpoints

├── Phase 1: Database schema .............. [execute/done]
├── Phase 2: API endpoints ................ [execute/running]
│   ├── Task 2.1: Create routes ........... done
│   ├── Task 2.2: Add validation .......... todo    ← current
│   ├── Task 2.3: Write tests ............. todo
│   └── Task 2.4: Update OpenAPI spec ..... todo
├── Phase 3: Console UI ................... [scaffold/done]
└── Phase 4: Documentation ................ [scaffold/done]
Project-mode expands tasks only for phases that are currently running. Task-mode shows the flat step progression for the active task. If both a project and a task are active, both sections are displayed.

Behavior

Project mode

Phase stateSuggested action
scaffold/doneRun /gg-discuss, /gg-research, or /gg-plan
plan/doneRun /gg-execute to start implementation
execute/runningResume /gg-execute to continue
execute/doneRun /gg-verify to validate acceptance criteria
verify/donePhase complete
All phases verifiedProject complete — mark the PR as ready for review

Task mode

Task stateSuggested action
new/pendingResume /gg-task to begin discussion
new/doneResume /gg-task to begin discussion
discuss/runningResume /gg-task to continue discussion
discuss/doneResume /gg-task to start research
research/runningResume /gg-task to continue research
research/doneResume /gg-task to generate the plan
plan/runningResume /gg-task to finish planning
plan/doneResume /gg-task to begin execution
execute/runningResume /gg-task to continue execution
execute/doneResume /gg-task to run verification
verify/doneTask complete — archive with jog gg tm archive
any/errorRun /gg-task to retry the current step
Use /gg-status anytime you need to orient yourself mid-workflow — after switching branches, resuming a session, or when you’re unsure what to do next.