Git. Ship. Done - Core
GSD Core is a meta-prompting and spec-driven development framework installable via `npx @opengsd/gsd-core@latest` that organizes AI coding sessions into a repeating five-step phase loop: Discuss, Plan, Execute, Verify, and Ship. Its primary design goal is combating context rot, the gradual quality degradation that occurs as an AI agent's context window fills up, by offloading research, planning, and code execution to fresh-context subagents that each start with a clean 200k-token window rather than inheriting a cluttered session. Structured artifacts including `STATE.md` and `CONTEXT.md` persist information across session boundaries so work is not lost between phases. The framework integrates directly with Claude Code as its primary target but also supports Gemini CLI, Codex, Cursor, Windsurf, Copilot, and several other runtimes through the same installer. A `/gsd-new-project` slash command bootstraps new projects. Developers working on multi-session, multi-milestone codebases who have experienced AI output degradation over long sessions are the main intended audience.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Healthy fork ratio
- ✓Topics declared
- ✓Documented (README)
git clone https://github.com/open-gsd/gsd-core && cp gsd-core/*.md ~/.claude/agents/24 items in this repository
Researches a single gray area decision and returns a structured comparison table with rationale. Spawned by discuss-phase advisor mode.
Researches a chosen AI framework's official docs to produce implementation-ready guidance — best practices, syntax, core patterns, and pitfalls distilled for the specific use case. Writes the Framework Quick Reference and Implementation Guidance sections of AI-SPEC.md. Spawned by /gsd:ai-integration-phase orchestrator.
Deeply analyzes codebase for a phase and returns structured assumptions with evidence. Spawned by discuss-phase assumptions mode.
Applies fixes to code review findings from REVIEW.md. Reads source files, applies intelligent fixes, and commits each fix atomically. Spawned by /gsd:code-review --fix.
Reviews source files for bugs, security issues, and code quality problems. Produces structured REVIEW.md with severity-classified findings. Spawned by /gsd:code-review.
Explores codebase and writes structured analysis documents. Spawned by map-codebase with a focus area (tech, arch, quality, concerns). Writes documents directly to reduce orchestrator context load.
Manages multi-cycle /gsd:debug checkpoint and continuation loop in isolated context. Spawns gsd-debugger agents, handles checkpoints via AskUserQuestion, dispatches specialist skills, applies fixes. Returns compact summary to main context. Spawned by /gsd:debug command.
Investigates bugs using scientific method, manages debug sessions, handles checkpoints. Spawned by /gsd:debug orchestrator.
Classifies a single planning document as ADR, PRD, SPEC, DOC, or UNKNOWN. Extracts title, scope summary, and cross-references. Spawned in parallel by /gsd:ingest-docs. Writes a JSON classification file and returns a one-line confirmation.
Synthesizes classified planning docs into a single consolidated context. Applies precedence rules, detects cross-ref cycles, enforces LOCKED-vs-LOCKED hard-blocks, and writes INGEST-CONFLICTS.md with three buckets (auto-resolved, competing-variants, unresolved-blockers). Spawned by /gsd:ingest-docs.
Verifies factual claims in generated docs against the live codebase. Returns structured JSON per doc.
Writes and updates project documentation. Spawned with a doc_assignment block specifying doc type, mode (create/update/supplement), and project context.
Researches the business domain and real-world application context of the AI system being built. Surfaces domain expert evaluation criteria, industry-specific failure modes, regulatory context, and what "good" looks like for practitioners in this field — before the eval-planner turns it into measurable rubrics. Spawned by /gsd:ai-integration-phase orchestrator.
Retroactive audit of an implemented AI phase's evaluation coverage. Checks implementation against the AI-SPEC.md evaluation plan. Scores each eval dimension as COVERED/PARTIAL/MISSING. Produces a scored EVAL-REVIEW.md with findings, gaps, and remediation guidance. Spawned by /gsd:eval-review orchestrator.
Designs a structured evaluation strategy for an AI phase. Identifies critical failure modes, selects eval dimensions with rubrics, recommends tooling, and specifies the reference dataset. Writes the Evaluation Strategy, Guardrails, and Production Monitoring sections of AI-SPEC.md. Spawned by /gsd:ai-integration-phase orchestrator.
Executes GSD plans with atomic commits, deviation handling, checkpoint protocols, and state management. Spawned by execute-phase orchestrator or execute-plan command.
Presents an interactive decision matrix to surface the right AI/LLM framework for the user's specific use case. Produces a scored recommendation with rationale. Spawned by /gsd:ai-integration-phase and /gsd-select-framework orchestrators.
Verifies cross-phase integration and E2E flows. Checks that phases connect properly and user workflows complete end-to-end.
Analyzes codebase and writes structured intel files to .planning/intel/.
Fills Nyquist validation gaps by generating tests and verifying coverage for phase requirements
Analyzes codebase for existing patterns and produces PATTERNS.md mapping new files to closest analogs. Read-only codebase analysis spawned by /gsd:plan-phase orchestrator before planning.
Researches how to implement a phase before planning. Produces RESEARCH.md consumed by gsd-planner. Spawned by /gsd:plan-phase orchestrator.
Verifies plans will achieve phase goal before execution. Goal-backward analysis of plan quality. Spawned by /gsd:plan-phase orchestrator.
Creates executable phase plans with task breakdown, dependency analysis, and goal-backward verification. Spawned by /gsd:plan-phase orchestrator.
Subagents overview
<div align="center"> # GSD Core **Git. Ship. Done.** **English** · [Português](README.pt-BR.md) · [简体中文](README.zh-CN.md) · [日本語](README.ja-JP.md) · [한국어](README.ko-KR.md) **A light-weight meta-prompting, context engineering, and spec-driven development system for Claude Code, OpenCode, Antigravity CLI, Kimi CLI, Kilo, Codex, Copilot, Cursor, Windsurf, and more.** [](https://www.npmjs.com/package/@opengsd/gsd-core) [](https://www.npmjs.com/package/@opengsd/gsd-core) [](https://github.com/open-gsd/gsd-core/actions/workflows/test.yml) [](https://discord.gg/mYgfVNfA2r) [](https://github.com/open-gsd/gsd-core) [](LICENSE) </div> --- ## What is GSD Core GSD Core is a context-engineering and spec-driven development framework that drives AI coding agents (Claude Code, Codex, Antigravity CLI, Kimi CLI, Copilot, Cursor, and more) through a disciplined phase loop. It solves [context rot](docs/explanation/context-engineering.md) — the quality degradation that accumulates as an AI fills its context window — by running all heavy research, planning, and execution work in fresh-context subagents while keeping your main session lean. --- ## How it works Each milestone repeats the same five-step loop, one phase at a time: 1. **Discuss** — capture implementation decisions before anything is planned 2. **Plan** — research, decompose, and verify the plan fits a fresh context window 3. **Execute** — run plans in parallel waves; each executor starts with a clean 200k-token context 4. **Verify** — walk through what was built; diagnose and fix before declaring done 5. **Ship** — create the PR, archive the phase, repeat for the next one --- ## Quickstart ```bash npx @opengsd/gsd-core@latest ``` The installer prompts for your runtime (Claude Code, OpenCode, Antigravity CLI, Kimi CLI, Kilo, Codex, Copilot, Cursor, Windsurf, and more) and whether to install globally or locally. The installer is required for cross-runtime compatibility — do not copy files from `agents/` or `commands/` directly. On another runtime or without Node.js? See [Install on your runtime](docs/how-to/install-on-your-runtime.md). Once installed, start a new project or onboard an existing repo: ```bash /gsd-new-project # greenfield project /gsd-onboard # existing codebase ``` New here? Follow [Your first project](docs/tutorials/your-first-project.md) for a guided walkthrough from install to first shipped phase, or [Onboarding an existing codebase](docs/tutorials/onboarding-an-existing-codebase.md) for brownfield setup. --- ## Documentation **What's new in 1.7.0** → [docs/whats-new-1.7.0.md](docs/whats-new-1.7.0.md) **Tutorials** — learning by doing: - [Your first project](docs/tutorials/your-first-project.md) - [Onboarding an existing codebase](docs/tutorials/onboarding-an-existing-codebase.md) **How-to guides** — task-focused recipes: - [Install on your runtime](docs/how-to/install-on-your-runtime.md) - [Plan a phase](docs/how-to/plan-a-phase.md) - [Verify and ship](docs/how-to/verify-and-ship.md) - … [see all how-to guides](docs/README.md#how-to-guides) **Reference** — authoritative facts: - [Commands](docs/COMMANDS.md) - [Configuration](docs/CONFIGURATION.md) - [CLI tools](docs/CLI-TOOLS.md) **Explanation** — concepts and design decisions: - [Context engineering](docs/explanation/context-engineering.md) - [The phase loop](docs/explanation/the-phase-loop.md) - [Architecture](docs/ARCHITECTURE.md) Full index: [docs/README.md](docs/README.md). Other languages: [日本語](README.ja-JP.md) · [한국어](README.ko-KR.md) · [Português](README.pt-BR.md) · [简体中文](README.zh-CN.md). --- ## Why it works Most AI-coding setups fail at scale because context bloat silently degrades output quality, there is no shared memory between sessions, and nothing verifies that code actually works. GSD Core solves all three: heavy work runs in fresh subagents, structured artifacts like `STATE.md` and `CONTEXT.md` survive session boundaries, and the verify step walks through what was built and generates fix plans before a phase is declared done. See [docs/explanation/context-engineering.md](docs/explanation/context-engineering.md) for the full reasoning. Troubleshooting? See [docs/how-to/recover-and-troubleshoot.md](docs/how-to/recover-and-troubleshoot.md). --- ## Community | Project | Platform | |---------|----------| | [gsd-opencode](https://github.com/rokicool/gsd-opencode) | Original OpenCode port | | [Discord](https://discord.gg/mYgfVNfA2r) | Community support | --- ## Star History <a href="https://star-history.com/#open-gsd/gsd-core&Date"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=open-gsd/gsd-core&type=Date&theme=dark" /> <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=open-gsd/gsd-core&type=Date" /> <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=open-gsd/gsd-core&type=Date" /> </picture> </a> --- ## License MIT License. See [LICENSE](LICENSE) for details. --- <div align="center"> **Claude Code is powerful. GSD Core makes it reliable.** </div>
What people ask about gsd-core
What is open-gsd/gsd-core?
+
open-gsd/gsd-core is subagents for the Claude AI ecosystem. Git. Ship. Done - Core It has 7.3k GitHub stars and was last updated today.
How do I install gsd-core?
+
You can install gsd-core by cloning the repository (https://github.com/open-gsd/gsd-core) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is open-gsd/gsd-core safe to use?
+
Our security agent has analyzed open-gsd/gsd-core and assigned a Trust Score of 100/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains open-gsd/gsd-core?
+
open-gsd/gsd-core is maintained by open-gsd. The last recorded GitHub activity is from today, with 135 open issues.
Are there alternatives to gsd-core?
+
Yes. On ClaudeWave you can browse similar subagents at /categories/agents, sorted by popularity or recent activity.
Deploy gsd-core to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/open-gsd-gsd-core)<a href="https://claudewave.com/repo/open-gsd-gsd-core"><img src="https://claudewave.com/api/badge/open-gsd-gsd-core" alt="Featured on ClaudeWave: open-gsd/gsd-core" width="320" height="64" /></a>More Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Build Agentic workflows, RAG pipelines, with rich AI model and tool support on one collaborative workspace. Deploy on cloud, VPC, or self-hosted, so teams move from prototype to production without rebuilding the stack.
The agent engineering platform.
Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.