This context is loaded by the gsd-core Gemini CLI extension. It gives Gemini the operating context for GSD Core, a meta-prompting, context-engineering, and spec-driven development system for AI coding agents.
GSD turns a vague goal into shipped software through an explicit,
resumable workflow: explore → plan → execute → verify → ship. Work is
organised into milestones and phases under a .planning/ directory, with each
phase carrying a SPEC, a PLAN, and verification criteria. The system favours
small, atomic, test-backed commits and keeps durable context in version-tracked
files rather than in the conversation.
This extension ships only the context above — not the slash commands. It loads gsd's operating context into your Gemini sessions and is managed through
gemini extensions list / update / uninstall. To install the/gsd:*command set, agents, and hooks into~/.gemini/, run the dedicated installer:npx gsd-core --gemini --globalThe two paths are complementary and the manual installer remains fully supported. The commands below are available only once that installer has run.
If you have installed the gsd commands, the workflow is driven by these /gsd:*
slash commands (Gemini registers gsd's commands under the gsd namespace, so the
colon form is canonical):
/gsd:new-project— initialise a project and gather deep context./gsd:progress— the unified situational command: check progress, advance the workflow, or dispatch a freeform intent./gsd:plan-phase <N>— produce a detailed phase plan with a verification loop./gsd:execute-phase <N>— execute a phase's plans with wave-based parallelism./gsd:verify-work— validate built features through conversational UAT./gsd:ship— open a PR, run review, and prepare for merge./gsd:help— list every available command.
- Treat
.planning/as the source of truth for project state — read it before acting, and keep it current as work progresses. - Prefer the smallest change that satisfies the phase's verification criteria.
- Run the project's tests and linters before declaring a phase done.
- When unsure what to do next, and the gsd commands are installed,
/gsd:progressis the situational entry point.
Learn more: https://github.com/open-gsd/gsd-core