LIVE//NAKODIL.SITE//PAYLOAD :: SKILL

Skill Dev tools

Get Shit Done (GSD)

Meta-prompting и spec-driven фреймворк для Claude Code: слэш-команды + параллельные субагенты + защитные хуки. Цикл discuss → plan → execute → verify → ship превращает «опиши идею» в структурированную разработку с XML-планами и атомарными коммитами. Каждый план выполняется субагентом в свежем 200k-контексте (нет деградации от context rot), wave-параллелизм запускает независимые задачи разом, артефакты живут в .planning/ — память проекта между сессиями. Важно: оригинальный репозиторий заброшен, поэтому в каталоге — живое комьюнити-продолжение open-gsd/gsd-core (активные мейнтейнеры, MIT, кросс-платформа: Claude Code, OpenCode, Codex, Gemini CLI, Cursor). Отличие от superpowers из каталога: GSD — оркестратор по запросу через слэш-команды с внешней памятью в .planning/; superpowers — методология «всегда включена» через SessionStart-хук. Для мелких правок есть /gsd:fast и /gsd:quick.

Установка
npx @opengsd/gsd-core@latest
Документация ↗
README.md
обновлено 2 часа назад
# 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, Gemini CLI, Kimi CLI, Kilo, Codex, Copilot, Cursor, Windsurf, and more.** [![npm version](https://img.shields.io/npm/v/%40opengsd%2Fgsd-core?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/@opengsd/gsd-core) [![npm downloads](https://img.shields.io/npm/dm/%40opengsd%2Fgsd-core?style=for-the-badge&logo=npm&logoColor=white&color=CB3837)](https://www.npmjs.com/package/@opengsd/gsd-core) [![Tests](https://img.shields.io/github/actions/workflow/status/open-gsd/gsd-core/test.yml?branch=main&style=for-the-badge&logo=github&label=Tests)](https://github.com/open-gsd/gsd-core/actions/workflows/test.yml) [![Discord](https://img.shields.io/badge/Discord-Join-5865F2?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/mYgfVNfA2r) [![GitHub stars](https://img.shields.io/github/stars/open-gsd/gsd-core?style=for-the-badge&logo=github&color=181717)](https://github.com/open-gsd/gsd-core) [![License](https://img.shields.io/badge/license-MIT-blue?style=for-the-badge)](LICENSE)

What is GSD Core

GSD Core is a context-engineering and spec-driven development framework that drives AI coding agents (Claude Code, Codex, Gemini CLI, Kimi CLI, Copilot, Cursor, and more) through a disciplined phase loop. It solves context rot — 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

npx @opengsd/gsd-core@latest

The installer prompts for your runtime (Claude Code, OpenCode, Gemini 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.

Once installed, start your first project:

/gsd-new-project

New here? Follow Your first project for a guided walkthrough from install to first shipped phase.


Documentation

Tutorials — learning by doing: - Your first project - Onboarding an existing codebase

How-to guides — task-focused recipes: - Install on your runtime - Plan a phase - Verify and ship - … see all how-to guides

Reference — authoritative facts: - Commands - Configuration - CLI tools

Explanation — concepts and design decisions: - Context engineering - The phase loop - Architecture

Full index: docs/README.md. Other languages: 日本語 · 한국어 · Português · 简体中文.


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 for the full reasoning.

Troubleshooting? See docs/how-to/recover-and-troubleshoot.md.


Community

Project Platform
gsd-opencode Original OpenCode port
Discord Community support

Star History

Star History Chart


License

MIT License. See LICENSE for details.


**Claude Code is powerful. GSD Core makes it reliable.**
Похожее в категории Dev tools
Skill
Karpathy Guidelines

Один скилл-набор поведенческих правил, дистиллированный из наблюдений Андрея Карпаты про кодинг с...

Skill
Self-Learning Skills

Мета-скилл: агент распознаёт «золотые тропы» — команды деплоя, доступ к проду, тупики дебага, най...

Skill
claude-mem

Память между сессиями Claude Code: пишет всё, что делает агент, в локальную БД и подтягивает реле...

Skill
Grill Me

Скилл-«гриль» от Matt Pocock (Total TypeScript): безжалостное интервью о твоём плане до начала ко...