https://github.com/mertcapkin/graphstack
Graph-first, automatically orchestrated AI development workflow. One prompt starts the entire lifecycle β from blank repo to production.
https://github.com/mertcapkin/graphstack
ai-development claude claude-ai claude-code craft cursor cursor-ai cursor-ide cursor-rules god-node graph graph-first graph-node graphify graphstack node orchestrator stack vibe-coding workflow
Last synced: 7 days ago
JSON representation
Graph-first, automatically orchestrated AI development workflow. One prompt starts the entire lifecycle β from blank repo to production.
- Host: GitHub
- URL: https://github.com/mertcapkin/graphstack
- Owner: MertCapkin
- License: mit
- Created: 2026-05-06T19:43:35.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2026-06-11T17:25:59.000Z (7 days ago)
- Last Synced: 2026-06-11T18:16:48.294Z (7 days ago)
- Topics: ai-development, claude, claude-ai, claude-code, craft, cursor, cursor-ai, cursor-ide, cursor-rules, god-node, graph, graph-first, graph-node, graphify, graphstack, node, orchestrator, stack, vibe-coding, workflow
- Language: HTML
- Homepage:
- Size: 610 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# GraphStack π§ β‘
**Graph-first, automatically orchestrated AI development workflow.**
One prompt starts the entire lifecycle β from blank repo to production.
[](https://github.com/MertCapkin/graphstack/actions)
[](https://pypi.org/project/MertCapkin_GraphStack/)
[](LICENSE)
[](#compatibility)
[](https://cursor.sh)
[](https://claude.ai/code)
> **v4.5 highlights:** Published on [PyPI](https://pypi.org/project/MertCapkin_GraphStack/) as **`MertCapkin_GraphStack`**, one-command bootstrap, `board reopen` / `list-done`. Plus v4.4 `graph query` + `init`, v4.3 gate. See [CHANGELOG.md](CHANGELOG.md).
---
## One command (Cursor terminal)
Open your **project folder** in Cursor, open the integrated terminal, and run:
**Windows (PowerShell) β recommended:**
```powershell
irm https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.ps1 | iex
```
**macOS / Linux:**
```bash
curl -fsSL https://raw.githubusercontent.com/MertCapkin/GraphStack/master/scripts/bootstrap.sh | bash
```
**Or install from PyPI directly:**
> Package: **`MertCapkin_GraphStack`** on [PyPI](https://pypi.org/project/MertCapkin_GraphStack/) (`graphstack` name was taken). CLI command: **`graphstack`**.
```bash
pip install "MertCapkin_GraphStack[graphify]"
graphstack init . -y --install-deps
```
This installs GraphStack + Graphify, copies workflow files into **the current project**, refreshes the code graph, and runs `doctor`. Then describe your task in Cursor chat β rules load automatically.
---
## Quick Start
### Step 1 β Install GraphStack (PyPI)
**Python 3.8+** and **Git** are required.
```bash
py -3 --version
git --version
```
Install GraphStack + Graphify from PyPI, then initialize **your project** (run inside your project folder):
```bash
pip install "MertCapkin_GraphStack[graphify]"
graphstack init . -y --install-deps
```
Or use the [one-command bootstrap](#one-command-cursor-terminal) above (same result; installs from PyPI, falls back to GitHub if needed).
Verify:
```bash
graphstack --version
graphstack doctor
pip show graphifyy
```
> **PyPI:** [pypi.org/project/MertCapkin_GraphStack](https://pypi.org/project/MertCapkin_GraphStack/)
> **CLI name:** `graphstack` (unchanged β only the pip package name differs)
Graphify runs **entirely locally** β tree-sitter AST, no API calls for code graphs.
---
### Step 1 (alternative) β Manual Graphify only
If you prefer to install Graphify separately first:
```bash
pip install "graphifyy>=0.7,<0.9"
graphify cursor install
pip install "MertCapkin_GraphStack[graphify]"
graphstack init . -y --install-deps
```
---
### Step 2 β Install from source (contributors / offline)
For hacking on GraphStack itself or air-gapped installs, clone the repo instead of PyPI:
```bash
git clone https://github.com/MertCapkin/graphstack /tmp/graphstack
cd /path/to/your-project
bash /tmp/graphstack/install.sh
# or, equivalently:
# python3 -m graphstack install . --no-interactive
```
#### Windows (PowerShell β native, no Git Bash needed)
```powershell
git clone https://github.com/MertCapkin/graphstack $env:TEMP\graphstack
cd C:\path\to\your-project
& $env:TEMP\graphstack\install.ps1 .
```
If `python.exe` on Windows redirects you to the Microsoft Store, the installer detects that and falls back to the official `py -3` launcher automatically.
#### Any platform (Python, no shell preference)
```bash
git clone https://github.com/MertCapkin/graphstack /path/to/graphstack
cd /path/to/your-project
python -m graphstack install . --non-interactive
```
This copies all GraphStack files into your project:
- `.cursor/rules/graphstack.mdc` β Cursor loads this automatically on every session
- `orchestrator/`, `.cursor/skills/`, `handoff/`, `scripts/` β the full workflow system
- `scripts/graphstack/` β the Python helper package (used by both the bash and PowerShell shims)
The install script is non-destructive: it won't overwrite existing `handoff/BRIEF.md`, `handoff/REVIEW.md`, or `handoff/BOOTSTRAP.md` if they already exist.
---
### Step 3 β Build the knowledge graph
Open your project in Cursor. In the chat, type:
```
/graphify .
```
What happens:
- Graphify scans all source files (25 languages supported)
- Builds a dependency graph using tree-sitter (local, no API)
- Creates three files in `graphify-out/`:
- `GRAPH_REPORT.md` β human-readable architecture summary
- `graph.json` β machine-queryable full graph
- `graph.html` β visual explorer, open in browser
**How long does it take?**
| Codebase size | Time |
|---|---|
| < 50 files | ~5 seconds |
| 50β200 files | ~15β30 seconds |
| 200β500 files | ~1β2 minutes |
| 500+ files | ~3β5 minutes |
Run this once. After that, use `/graphify --update` β it only re-scans changed files and takes a few seconds.
**New project with no code yet?** Skip this step β GraphStack's Bootstrap Mode handles it.
**Already ran `graphstack init --install-deps`?** You have a code-only graph in `graphify-out/`; run `/graphify .` in Cursor for the full semantic graph when ready.
---
### Step 4 β Start working
The repo ships two ways to bootstrap the orchestrator β pick whichever feels natural.
#### A) Easiest β new chat only (recommended)
Because `.cursor/rules/graphstack.mdc` is **`alwaysApply: true`**, every new Composer / Agent
session already carries GraphStackβs binding rules. Simply open chat and describe your goal in
natural language (`Add β¦`, `Fix β¦`). The assistantβs first turn must still **execute**
`orchestrator/ORCHESTRATOR.md β Activation** (parallel `TOKEN_OPTIMIZER` + `GRAPH_REPORT`),
but **you donβt paste** `Read orchestrator/...` anymore.
#### B) Slash command `/graphstack` (explicit nudge)
In Cursor Chat/Composer press `/` β choose **`graphstack`**. That injects the Bootstrap command
stored in `.cursor/commands/graphstack.md` (helps when you want deterministic orchestrator wording
or onboarding teammates).
*If `/graphstack` doesn't appear immediately, restart Cursor once so it rescans `.cursor/commands/`.*
#### C) Classic explicit prompt (fallback / other tools)
**Existing codebase:**
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
[Describe what you want to build or fix]
```
**New project from scratch:**
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
This is a new project with no existing codebase.
I want to build [describe your idea].
Tech stack: [language, framework, database].
```
GraphStack handles everything from here β planning, building, reviewing, testing, shipping.
---
## What Is GraphStack?
GraphStack combines two ideas into one installable system:
**[Graphify](https://github.com/safishamsi/graphify)** builds a queryable knowledge graph of your codebase. Every AI query navigates that compact map instead of re-reading raw files from scratch.
**Role-based orchestration** drives a structured lifecycle: Bootstrapper β Architect β Builder β Reviewer β QA β Ship. A central Orchestrator manages all transitions automatically. You never switch roles manually.
> You write one prompt. GraphStack runs the full cycle.
---
## The Problem
Without GraphStack, every AI coding session looks like this:
```
You: "Add rate limiting to login."
AI: reads login.ts... reads session.ts... reads crypto.ts... reads types.ts...
(4 files, ~3 000 tokens β before writing a single line)
You: "Now add tests."
AI: reads login.ts again... reads session.ts again...
(same files, same cost, zero memory)
```
Problems:
- **Token waste** β AI re-reads your codebase on every query
- **No structure** β planning, coding, reviewing blur together
- **No memory** β closing Cursor means starting from zero
- **No audit trail** β impossible to know what was decided and why
---
## The Solution
```
Step 1 β once:
/graphify . β graphify-out/GRAPH_REPORT.md + graph.json
Step 2 β every session (minimal typing):
Open Composer + describe the task (rules already activate GraphStack automatically),
optionally type `/graphstack` once for an explicit orchestrator preamble,
or paste the legacy `Read orchestrator/ORCHESTRATOR.md β¦` snippet if working outside Cursor.
Example natural-language kickoff:
"Add rate limiting to login."
[ARCHITECT] reads graph (not raw files) β scopes change β writes BRIEF.md
β auto
[BUILDER] reads brief β queries graph for deps β builds exactly the brief
β auto
[REVIEWER] checks criteria β inspects graph neighbors for side effects
β auto (loops to Builder if rejected, max 3Γ)
[QA] traces call path through graph β verifies behavior
β auto
[SHIP] checklist β graph update β commit message β closes board task
```
**Zero manual role switching. Zero repeated file reads. Full git audit trail.**
---
## Bootstrap Mode β Start from Zero
No code yet? GraphStack handles that too.
```
Composer (Cursor):
Describe the product + tech stack naturally (alwaysApply rules bootstrap GraphStack),
optionally `/graphstack` beforehand to inject the scripted opener.
Bootstrap example:
"/graphstack then: New project REST API for task mgmt β TS, Express, PostgreSQL."
[BOOTSTRAPPER] analyzes idea β decomposes into modules β orders by dependency
β writes BOOTSTRAP.md (the memory across all cycles)
β writes Cycle 1 brief
β auto
[BUILDER β REVIEWER β QA β SHIP] Cycle 1 (auth module)
β
run /graphify . β first graph from real code
β
[BOOTSTRAPPER] reads new graph β writes Cycle 2 brief with real knowledge
β auto
[BUILDER β REVIEWER β QA β SHIP] Cycle 2 (data models)
β
run /graphify --update β next cycle β ...
```
Each brief is written with knowledge of what was **actually built** β not just planned. The graph grows with the project.
---
## Token Savings
GraphStack's savings come from three mechanisms:
| Mechanism | How | Savings |
|-----------|-----|---------|
| Graph-first reads | GRAPH_REPORT.md replaces browsing 10+ files | ~85% on architecture queries |
| Role discipline | Each role reads only what its job requires | ~60% vs unstructured sessions |
| File-based state | STATE.md replaces chat history on resume | ~60% per new session |
| Parallel reads | Multiple files in one tool call | ~50% on multi-file ops |
| Shell compaction | `graphstack run` shrinks git/test output before it hits context | ~60β80% on verbose shell ops |
**Net savings by codebase size:**
| Codebase | Tokens/day without | Tokens/day with | Saving |
|----------|--------------------|-----------------|--------|
| Small (10β20 files) | ~40k | ~28k | **~30%** |
| Medium (50β100 files) | ~180k | ~54k | **~70%** |
| Large (200+ files) | ~600k | ~90k | **~85%** |
| Very large (500+ files) | ~1.5M | ~180k | **~88%** |
*Estimates based on Graphify benchmarks and TOKEN_OPTIMIZER rules. Real savings depend on query patterns. See [docs/case-studies/graphstack-self.md](docs/case-studies/graphstack-self.md) for an honest self-analysis β measured community benchmarks are welcome via PR.*
---
## Limitations (read before adopting)
GraphStack is a **workflow protocol** (markdown + handoff files), not a runtime that enforces AI behavior.
| Topic | Reality |
|-------|---------|
| Role automation | Prompts alone cannot guarantee discipline. v4.3+ **`graphstack gate`** + v4.4 Cursor **`preToolUse`**. Hooks block commits and (on Cursor/Claude) code writes without a claimed task; `afterFileEdit` on Cursor remains advisory-only backup. |
| Token savings | The table above is **estimated**, not guaranteed. Small repos or undisciplined sessions may use **more** tokens than unstructured chat. |
| Knowledge graph | Value appears on **20+ file** codebases with module boundaries. Meta-repos full of markdown produce noisy graphs β use `.graphifyignore` (included in this repo). |
| Setup | Graphify + `pip install MertCapkin_GraphStack` + `graphstack init` β or one bootstrap command. See [PyPI](https://pypi.org/project/MertCapkin_GraphStack/). |
**v4.1 helpers:** `graphstack doctor` (health report) and `graphstack validate` (exit code for CI). Use `--strict` before Builder handoff; use `--fail-stale-graph` in CI after code changes.
```bash
graphstack doctor
graphstack validate
graphstack validate --strict --fail-stale-graph
```
---
## Shell Output Compaction (`graphstack run`)
Graph-first rules reduce **file reads**. Shell compaction reduces **terminal output** (git status, diffs, test runners) before it enters the AI context β without installing third-party proxies.
**Who uses it:** Cursor/Claude agents follow `TOKEN_OPTIMIZER.md` and `.cursor/rules/graphstack.mdc` β they call `graphstack run`, not raw `git`/`pytest`. You do not need to remember a separate workflow.
```bash
python -m graphstack run -- git status
python -m graphstack run -- git diff
python -m graphstack run -- git log -n 20
python -m graphstack run -- pytest -q
```
**Quality safeguards (not βblind compressionβ):**
- File paths, branch names, diff hunks (`@@`), and `+`/`-` lines are preserved
- Test failures, tracebacks, and stderr are kept (stderr is never compacted)
- If compaction would drop too much signal, output **falls back to raw** automatically
- Full output when debugging: `python -m graphstack run --raw -- git diff`
Independent Python implementation (MIT) β inspired by common agent-tooling patterns, no RTK dependency or vendored code.
`graphstack doctor` reports whether the compact module is installed in your project.
---
## Graph Queries (`graphstack graph`)
Graph-first rules mean **query the graph before opening raw files**. v4.4 wraps Graphify's CLI so agents use one consistent command:
```bash
python -m graphstack graph query "who calls login"
python -m graphstack graph query "blast radius of crypto.ts" --budget 1500
python -m graphstack graph path src/auth/login.ts src/utils/crypto.ts
python -m graphstack graph explain "login()"
python -m graphstack graph update . # AST-only refresh after code changes
```
Requires `graphify` on PATH (`pip install -r requirements.txt`). Agents should prefer `graph query` over reading full `GRAPH_REPORT.md` or grepping source for structural questions.
---
## Process Gate (`graphstack gate`)
v4.3+ adds **mechanical enforcement** so Architect β Builder β Reviewer steps are harder to skip silently. v4.4 extends Cursor with `preToolUse` blocking.
| Rule | What it blocks | Cursor | Claude Code |
|------|----------------|--------|-------------|
| R1 | `git commit` touching code while `doing/` is empty | deny (`beforeShellExecution` + `preToolUse` Shell) | deny (`PreToolUse` Bash) |
| R2 | Edit/Write on code paths while `doing/` is empty | deny (`preToolUse` Write/Edit) | deny (`PreToolUse` Edit/Write) |
| R3 | Commit while `BRIEF.md` is still the template | deny | deny |
| R4 | `STATE.json` not updated this cycle | advisory (`stop`) | advisory (`Stop`) |
| β | Edit already applied (legacy hook) | advisory only (`afterFileEdit`) | β |
```bash
python -m graphstack gate check # CI / manual β exit 1 on violation
python -m graphstack state set --role builder --task my-feature
GRAPHSTACK_GATE=off # emergency bypass (one session)
GRAPHSTACK_GATE=strict # fail-closed on hook internal errors
```
**Install** writes `.cursor/hooks.json` and `.claude/settings.json` with OS-specific shim commands (`scripts/gate-hook.ps1` on Windows, `scripts/gate-hook.sh` on macOS/Linux). By default hooks **fail open** if Python is missing β use `GRAPHSTACK_GATE=strict` for teams that prefer blocking over availability.
> **Framework repo note:** This GitHub repo ships `handoff/` as **templates** (empty brief, no `done/` tasks). Your installed project fills those files during real work. Before contributing here, reset handoff β see [CONTRIBUTING.md](CONTRIBUTING.md).
---
## What Gets Installed
```
your-project/
βββ .cursor/rules/graphstack.mdc β always-active rules (Cursor auto-loads)
βββ .cursor/commands/graphstack.md β `/graphstack` Cursor slash-command bootstrapper
βββ orchestrator/
β βββ ORCHESTRATOR.md β state machine: all transitions
β βββ TOKEN_OPTIMIZER.md β token budget rules for all roles
βββ .cursor/skills/
β βββ bootstrapper/BOOTSTRAPPER.md β new project β module plan β cycles
β βββ architect/ARCHITECT.md β scopes features, writes briefs
β βββ builder/BUILDER.md β implements exactly the brief
β βββ reviewer/REVIEWER.md β checks criteria + graph side effects
β βββ qa/QA.md β traces call paths, verifies behavior
β βββ ship/SHIP.md β checklist + graph update + commit msg
βββ handoff/
β βββ BRIEF.md β Architect β Builder
β βββ REVIEW.md β Reviewer + QA findings (append-only)
β βββ STATE.md β session state for resuming
β βββ BOOTSTRAP.md β cross-cycle project memory
β βββ board/
β βββ todo/ β tasks waiting to be claimed
β βββ doing/ β tasks in progress
β βββ done/ β completed tasks (audit trail)
βββ graphify-out/ β generated by graphify (commit this)
β βββ GRAPH_REPORT.md
β βββ graph.json
β βββ graph.html
βββ scripts/
β βββ board.sh β GNAP board shim (bash)
β βββ board.ps1 β GNAP board shim (PowerShell)
β βββ post-commit β smart graph-update hook (bash)
β βββ post-commit.ps1 β smart graph-update hook (PowerShell)
β βββ graphstack/ β Python core (single source of truth)
β βββ board.py β GNAP board logic
β βββ installer.py β project installer logic
β βββ hook.py β post-commit graph-update logic
β βββ platform_utils.py β OS detection, Python finder, encoding-safe echo
β βββ cli.py β entry point dispatcher
β βββ validate.py β layout / brief / graph checks
β βββ run.py β shell runner with compaction
β βββ compact/ β git / pytest / generic compactors
β βββ tests/ β pytest suite
βββ pyproject.toml β pip install -e . (v4.1+)
βββ .graphifyignore β code-focused graph for this repo
```
---
## The GNAP Board
GraphStack uses Git-Native Agent Protocol for task tracking β no server, no database, just files and git commits.
All three forms below are equivalent. Pick whichever fits your shell.
#### macOS / Linux (bash)
```bash
bash scripts/board.sh status
bash scripts/board.sh new add-oauth Add OAuth login with GitHub
bash scripts/board.sh claim add-oauth builder
bash scripts/board.sh complete add-oauth
bash scripts/board.sh log
```
#### Windows (PowerShell)
```powershell
.\scripts\board.ps1 status
.\scripts\board.ps1 new add-oauth Add OAuth login with GitHub
.\scripts\board.ps1 claim add-oauth builder
.\scripts\board.ps1 complete add-oauth
.\scripts\board.ps1 log
```
#### Cross-platform (any shell with Python)
```bash
python -m graphstack board status
python -m graphstack board new add-oauth Add OAuth login with GitHub
python -m graphstack board claim add-oauth builder
python -m graphstack board complete add-oauth
python -m graphstack board log
python -m graphstack run -- git status
python -m graphstack doctor
python -m graphstack validate --fail-stale-graph
```
Every board operation is a git commit. `git log handoff/board/` shows who did what, when.
---
## Graph Update Strategy
GraphStack's Ship role manages graph updates automatically at the end of every cycle:
| Condition | Action |
|-----------|--------|
| Files were **added or deleted** this cycle | Always update |
| Bootstrap cycle completed | Always update (next brief needs fresh graph) |
| Content-only edits (bug fixes, refactors) | Skip β graph topology unchanged |
The post-commit hook enforces the same rules automatically. You never need to think about when to update.
---
## Project Suitability
| Project type | Suitability | Notes |
|---|---|---|
| REST / GraphQL API | βββββ | Best fit β clear module boundaries |
| Monolithic web app | βββββ | God node protection is critical here |
| Data pipeline / ETL | βββββ | Graph mirrors pipeline topology |
| Library / SDK | βββββ | Breaking change detection is precise |
| Microservice (single) | βββββ | Integration edges clearly visible |
| CLI tool | ββββ | Good for medium+ complexity |
| Serverless / Lambda | ββββ | Shared util blast radius visible |
| Admin panel | ββββ | State + API integration coverage |
| Game server (backend) | ββββ | State machine edges map well |
| DevOps / automation | ββββ | Script dependency tracking |
| React / Vue SPA | βββ | Good, but UI churn increases update frequency |
| TypeScript monorepo | βββ | Cross-package deps very valuable |
| Mobile app (React Native) | βββ | JS/TS layer fully covered |
| Unity game (C#) | βββ | God node protection excellent |
| E-commerce backend | βββ | Checkout flow blast radius useful |
| AI / embedding pipeline | βββ | Static structure good; runtime behavior not |
| Flutter app | ββ | Dart supported; widget tree less useful |
| Rapid prototype | ββ | Brief discipline adds friction at this stage |
| Static site | β | Minimal dependencies β low graph value |
| Single-file script | β | No graph structure to analyze |
**Rule of thumb:** GraphStack pays off when your codebase exceeds ~20 files and queries regularly cross module boundaries.
---
## Comparison
| | GraphStack | gstack | loki-mode | code-review-graph |
|---|---|---|---|---|
| Knowledge graph | β
Graphify | β | β | β
|
| Auto role transitions | β
| β manual | β
complex | β |
| Bootstrap (0βproject) | β
| β | β | β |
| Git-native task board | β
GNAP | β | β | β |
| Session resumability | β
STATE.md | β | β | β |
| Token optimization rules | β
explicit | β | β | β
partial |
| Cursor `/graphstack` slash bootstrap | β
| β | β | β |
| Setup complexity | Low | Low | High | Low |
---
## Resuming a Session
Default (Cursor Composer with GraphStack repo open): reopen chat and paste a short cue such as `"Resume GraphStack STATE.md"` or select `/graphstack` followed by `"Resume"` β Activation still runs tokens + graph loaders automatically.
Classic explicit prompt:
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
Resume from last session.
```
Orchestrator reads `handoff/STATE.md` and `handoff/board/doing/` and picks up exactly where it left off.
---
## All Prompts
**Quick path:** describe work directly (rules + optional `/graphstack`). Legacy blocks remain for deterministic copy/paste workflows or nonβCursor tooling.
### Standard session *(legacy explicit)*
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
[What you want to build or fix β any language]
```
### New project from scratch *(legacy explicit)*
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
This is a new project with no existing codebase.
I want to build [describe your idea].
Tech stack: [language, framework, database].
```
### Resume a previous session *(legacy explicit)*
```
Read orchestrator/ORCHESTRATOR.md and follow it exactly.
Resume from last session.
```
### Manual role activation (advanced)
Use these when you want a single role without the full lifecycle:
**Architect** β plan and scope only, no building
```
Read .cursor/skills/architect/ARCHITECT.md and follow it exactly.
Read orchestrator/TOKEN_OPTIMIZER.md for token rules.
[What you want to plan]
```
**Builder** β build directly from an existing brief
```
Read .cursor/skills/builder/BUILDER.md and follow it exactly.
Read orchestrator/TOKEN_OPTIMIZER.md for token rules.
Brief is in handoff/BRIEF.md. Start building.
```
**Reviewer** β review existing code or a diff
```
Read .cursor/skills/reviewer/REVIEWER.md and follow it exactly.
Read orchestrator/TOKEN_OPTIMIZER.md for token rules.
Review the changes in [filename or "the last git diff"].
```
**QA** β trace and verify a specific feature
```
Read .cursor/skills/qa/QA.md and follow it exactly.
Read orchestrator/TOKEN_OPTIMIZER.md for token rules.
Trace and verify [feature name].
```
**Ship** β run pre-deploy checklist
```
Read .cursor/skills/ship/SHIP.md and follow it exactly.
Run the pre-ship checklist for task [task-id].
```
**Bootstrapper** β decompose an idea into a module plan only
```
Read .cursor/skills/bootstrapper/BOOTSTRAPPER.md and follow it exactly.
Read orchestrator/TOKEN_OPTIMIZER.md for token rules.
[Describe your project idea]
```
> **Note:** `.cursor/rules/graphstack.mdc` is loaded automatically by Cursor on every session. You never need to reference it manually.
---
## Compatibility
| Tool | Orchestrator | Manual roles |
|------|-------------|-------------|
| Cursor | β
Full (.mdc auto-loads) | β
|
| Claude Code | β
Full | β
|
| VS Code Copilot Chat | β
Full | β
|
| GitHub Copilot CLI | β οΈ Paste per session | β
|
| Aider | β οΈ Paste per session | β
|
---
## Demo
[`demo/DEMO_WALKTHROUGH.md`](demo/DEMO_WALKTHROUGH.md) β full end-to-end walkthrough: adding rate limiting to a Node.js auth service, showing every automatic transition, graph query, and board update.
---
## Contributing
See [`CONTRIBUTING.md`](CONTRIBUTING.md). GraphStack is just markdown and bash β the barrier is intentionally low.
---
## License
MIT β free forever. No telemetry. No accounts. No phoning home.