Skip to content

Command Learning Path

ForgeDock installs many slash commands. You do not need to learn them all. Most of the time you'll use three.

This page tiers every command by when you need it — so you can start small and add commands as your workflow grows. For a full domain-grouped lookup of every command, see the Complete Command Reference.


Start here: 3 commands

If you only learn three commands, learn these. They cover the entire issue-to-merge loop:

text
/issue       →  describe what you want, get a pipeline-ready issue
/work-on #N  →  investigate, build, review, and merge it automatically
/review-pr   →  review a pull request with domain-specialist agents

Everything below is optional and additive. Come back when you hit the situation each tier describes.


Tier 1 — Core Loop

When you need this: Day 1. This is the minimum viable ForgeDock.

CommandWhat it does
/work-on #NPick up an issue and run the full pipeline: investigate → build → review → merge
/issueCreate a well-structured issue the pipeline can consume reliably
/review-prReview a PR with context-aware, domain-specialist agents
/quality-gatePre-commit checks, gated by the domains your change actually touches
/test-gateAcceptance verification against running code before anything deploys

With just these, you can ship a change end-to-end: write an issue, run it, review the result, and verify it works before it ships.


Tier 2 — Team Workflows

When you need this: Week 1, once you're running more than one issue at a time or coordinating work across a milestone.

CommandWhat it does
/orchestrateRun multiple issues — or an entire milestone — in parallel
/milestonePlan, track, and ship a milestone
/deploy-infoSee what will deploy next: staging vs. main diff with risk assessment
/scopeEstimate issue complexity before committing to /work-on
/adoptBootstrap an existing repo's backlog into pipeline-ready issues

These commands scale ForgeDock from "one issue at a time" to "a planned body of work moving in parallel."


Tier 3 — Observe & Recover

When you need this: As soon as you have multiple pipeline runs in flight or your first interrupted run. These are the durable-state commands — the most differentiating part of ForgeDock's architecture.

CommandWhat it does
/pipeline-statusFleet view of every in-flight issue, straight from workflow labels
/pipeline-resumeResume an interrupted run from whatever state GitHub reports
/diagnoseTrace why a run failed, from its annotations
/explainTranslate the FORGE annotations on any issue into plain language
/replayReplay a past run's full audit trail
/changelogRelease notes assembled from merged PRs and trajectory receipts

These commands turn ForgeDock's event-sourced run log and FORGE annotation trail into something you can inspect, recover from, and communicate about — crash-safe pipelines that can always resume, and audit trails that any teammate can read.


Tier 4 — Operations

When you need this: When something goes wrong in production, or when you're shipping a release.

CommandWhat it does
/rollbackCreate a revert PR to roll back a shipped feature or fix
/incident-responseCoordinate a P0 incident: hotfix validation, timeline, postmortem
/security-auditRun a periodic security posture audit
/autopilotAutonomous improvement cycle: recon → triage → fix
/cleanupSweep stale issues, branches, and worktrees

You'll reach for these occasionally, not daily — but you'll be glad they exist the moment you need them.


Tier 5 — Pipeline Tuning

When you need this: Advanced. Once ForgeDock is part of your daily workflow and you want to make the pipeline itself faster and smarter.

CommandWhat it does
/pipeline-healthSelf-analysis: measure pipeline performance and propose improvements
/optimizeGenerate adaptive scripts to speed up repeated pipeline work
/ci-auditAudit CI workflows for missing stack-specific validation checks
/compat-auditCheck Claude Code version compatibility with ForgeDock features

These commands turn ForgeDock on itself — measuring, debugging, and tuning the pipeline you run every day.


Extras / Project-Specific

When you need this: Only if your project is a public web property with analytics platforms (GSC, GA4, Umami, Cloudflare, Stripe, Clarity) configured in forge.yaml.

CommandWhat it does
/analyticsPull production analytics from multiple sources and create issues
/qa-sweepBrowser-automated QA sweep across your web app (requires Playwright MCP)
/geo-auditCheck AI referral traffic and GEO compliance for your pages
/audit-agentsAnalyze per-agent performance from large /orchestrate runs

These ship with ForgeDock but are not general-purpose pipeline commands. If your project is a backend service, CLI tool, or library, these have nothing to act on.


How to grow your toolkit

  1. Start with the Tier 1 commands. Ship one issue end-to-end.
  2. Add Tier 2 when you have more than one thing in flight. Orchestrate a milestone instead of babysitting issues one by one.
  3. Add Tier 3 when you hit your first interrupted run or want visibility into in-flight work. These are the observe-and-recover commands — they make the pipeline resilient and readable.
  4. Reach for Tier 4 only when operations demand it — a bad deploy, an incident, a release.
  5. Explore Tier 5 once the pipeline is routine and you want it faster and self-tuning.

You never have to memorize the full command set. Learn the next tier the day you need it.


Next Steps

Released under the AGPL-3.0 License.