By left-try
GSD Core is a meta-prompting, context engineering, and spec-driven development system for AI coding agents.
Generate tests for a completed phase based on UAT criteria and implementation
Generate an AI-SPEC.md design contract for phases that involve building AI systems.
Autonomous audit-to-fix pipeline — find issues, classify, fix, test, commit
Audit milestone completion against original intent before archiving
Cross-phase audit of all outstanding UAT and verification items
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.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Executables (bin/) — files in this plugin's bin/directory are added to the Bash tool's PATH while the plugin is enabled.
Uses Bash, Write, or Edit tools
Uses Bash, Write, or Edit tools
Spec-driven development for AI coding agents, powered by a Recursive Language Model inference loop.
rgsd is a fork of gsd-core that replaces the linear subagent model with an RLM (Recursive Language Model) inference loop — agents that can decompose problems by recursively calling themselves, rather than spawning one-shot leaf agents.
Where gsd-core runs planning and execution in flat, isolated subagents, rgsd treats each agent as a first-class RLM node: it can examine the context it receives, decide what sub-problems to delegate, and invoke child agents as function calls — all within a structured phase loop.
The core insight from Recursive Language Models: a model operating inside a code environment can call itself as a function, deferring context decomposition decisions to the model itself rather than hardcoding them in the orchestrator.
Each milestone repeats the same five-step loop, one phase at a time:
The difference from gsd-core is in step 3: instead of a flat executor receiving a fixed context slice, rgsd executors operate in an RLM loop — they receive a structural skeleton of large files via the context-slice engine, query the graphify knowledge graph for relevant symbols, and recursively narrow context before generating code.
Agents call themselves recursively to decompose arbitrarily large contexts. No fixed context-window ceiling on what a single phase can reason about.
rgsd-tools context-slice <file> pre-filters large source files into a structural skeleton (all function/class signatures) plus pattern-ranked excerpt windows, capped by a configurable token budget. Files below 3 000 tokens pass through unchanged. Dropped regions are reported explicitly — never silently truncated.
rgsd-tools config-set context-slice.enabled true
rgsd-tools context-slice src/graphify.cts --budget-tokens 2000
The graphify knowledge graph resolves queries through a two-tier seed matcher: exact substring matching first, fuzzy symbol-tokenized fallback second. Natural-language queries like "find authentication middleware" reliably expand to the right graph nodes even when no exact token matches exist.
npx rgsd@latest
The installer prompts for your runtime (Claude Code, Gemini CLI, Codex, Cursor, Windsurf, and more) and whether to install globally or locally.
rgsd-tools config-set context-slice.enabled true # enable context-slice
rgsd-tools config-set graphify.enabled true # enable knowledge graph
Full configuration reference: docs/CONFIGURATION.md
rgsd-tools context-slice <file> [--pattern <regex>] [--budget-tokens N] [--context-lines N]
rgsd-tools graphify build
rgsd-tools graphify query <term>
rgsd-tools graphify status
Full CLI reference: docs/CLI-TOOLS.md
rgsd is a fork of gsd-core. It inherits the full phase-loop workflow, all commands, and the installer. The additions are:
| Feature | gsd-core | rgsd |
|---|---|---|
| Phase loop (discuss/plan/execute/verify/ship) | ✓ | ✓ |
| Subagent isolation | flat | recursive (RLM) |
| Context-slice engine | ✓ | ✓ (extended) |
| Graphify knowledge graph | ✓ | ✓ + fuzzy symbol matching |
| RLM inference loop in executor | — | ✓ |
MIT — see LICENSE.
npx claudepluginhub left-try/rgsdComprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Harness-native ECC operator layer - 67 agents, 278 skills, 94 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Consult multiple AI coding agents (Gemini, OpenAI, Grok, Perplexity, plus codex, antigravity, and grok CLIs when installed) to get diverse perspectives on coding problems
The Claude Code knowledge system — 380+ skills, 182+ agents, 100+ commands, 40 hooks, 32 rules, and workflows.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete developer toolkit for Claude Code