Examples
List projects (JSON)
Show active context (JSON)
pmMode (tasks or traditional) when a project is set.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Common workflows for humans, scripts, and AI tools.
blocpad projects list --json
blocpad context show --json
pmMode (tasks or traditional) when a project is set.
blocpad task ERS-1 --md
blocpad tasks next ERS-1 --json
blocpad tasks focus ERS-1 --md
blocpad pages list --json
blocpad pages show <pageId> --md
blocpad pm tree --json
blocpad pm tree --max-depth 2 # goals + epics only
blocpad goals list --json
blocpad goals show <goalId> --md
blocpad epics list --goal <goalId> --json
blocpad epics show <epicId> --md
blocpad stories list --epic <epicId> --json
blocpad stories list --sprint <sprintId> --json
blocpad stories show <storyId> --md
blocpad sprints list --json
blocpad sprints show <sprintId> --md
blocpad propose task status --status done --task-number 42
blocpad proposals list
blocpad apply --yes
blocpad propose story create --title "Add widgets" --epic <epicId> --status backlog
blocpad propose sprint add-story --sprint <sprintId> --story <storyId>
blocpad apply --yes
# 1. Orient: see the project hierarchy
blocpad pm tree --json
# 2. Pick a task and get full context
blocpad tasks focus 42 --md
# 3. (AI does the work)
# 4. Mark done and move on
blocpad propose task status --status done --task-number 42
blocpad propose task comment --body "Implemented login with OAuth2"
blocpad apply --yes
# 5. Next task
blocpad tasks next 42 --json