mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-06 21:46:40 +02:00
db9447c333
* feat: native gbrain code-surface orchestrator + ensureSourceRegistered helper Replaces gbrain import (markdown only) with gbrain sources add + sync --strategy code (or reindex-code on --full). Adds lib/gbrain-sources.ts exporting ensureSourceRegistered/probeSource/sourcePageCount, plus lock file + tmp-rename atomicity + dry-run write skip in the orchestrator. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: setup-gbrain Step 8 writes ## GBrain Search Guidance after smoke test Extends Step 8 to write a machine-agnostic guidance block that teaches the agent when to prefer gbrain CLI (search/query/code-def/code-refs/ code-callers/code-callees) over Grep. Gated on smoke test pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: /sync-gbrain skill — keep gbrain current and refresh agent guidance New top-level skill that wraps gstack-gbrain-sync with state probing, capability check (write+search round-trip, not gbrain doctor), CLAUDE.md guidance lifecycle (write iff healthy, remove iff broken), and a per-source verdict block. Re-runnable, idempotent. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * feat: preamble emits gbrain-availability block when capability ok Extends generate-brain-sync-block.ts to emit Variant A (steady-state, 4 lines) when cwd page_count > 0 or Variant B (empty-corpus emergency, 3 lines) when 0; empty string otherwise. Reads cached page_count from .gbrain-sync-state.json (handles pretty + compact JSON). Refreshes ship golden fixtures and bumps the plan-review preamble byte budget to 35K to absorb the new block. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * docs: register /sync-gbrain in AGENTS.md and docs/skills.md Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: regenerate SKILL.md across all hosts (gen:skill-docs) Mechanical regeneration after preamble + setup-gbrain template + new sync-gbrain skill. Run via: bun run gen:skill-docs --host all. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * chore: bump version and changelog (v1.26.3.0) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * docs: add /sync-gbrain to README skills table and gbrain section Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
5.9 KiB
5.9 KiB
gstack — AI Engineering Workflow
gstack is a collection of SKILL.md files that give AI agents structured roles for software development. Each skill is a specialist: CEO reviewer, eng manager, designer, QA lead, release engineer, debugger, and more.
Available skills
Skills live in .agents/skills/ (or ~/.claude/skills/gstack/ on Claude Code).
Invoke them by name (e.g., /office-hours).
Plan-mode reviews
| Skill | What it does |
|---|---|
/office-hours |
Start here. Reframes your product idea before you write code. |
/plan-ceo-review |
CEO-level review: find the 10-star product in the request. |
/plan-eng-review |
Lock architecture, data flow, edge cases, and tests. |
/plan-design-review |
Rate each design dimension 0-10, explain what a 10 looks like. |
/plan-devex-review |
DX-mode review: TTHW, magical moments, friction points, persona traces. |
/plan-tune |
Self-tune AskUserQuestion sensitivity per question. |
/autoplan |
One command runs CEO → design → eng → DX review. |
/design-consultation |
Build a complete design system from scratch. |
Implementation + review
| Skill | What it does |
|---|---|
/review |
Pre-landing PR review. Finds bugs that pass CI but break in prod. |
/codex |
Second opinion via OpenAI Codex. Review, challenge, or consult modes. |
/investigate |
Systematic root-cause debugging. No fixes without investigation. |
/design-review |
Live-site visual audit + fix loop with atomic commits. |
/design-shotgun |
Generate multiple AI design variants, comparison board, iterate. |
/design-html |
Generate production-quality Pretext-native HTML/CSS. |
/devex-review |
Live developer experience audit (TTHW measured against the real flow). |
/qa |
Open a real browser, find bugs, fix them, re-verify. |
/qa-only |
Same methodology as /qa but report only — no code changes. |
/scrape |
Pull data from a web page. First call prototypes; codified call runs in ~200ms. |
/skillify |
Codify the most recent successful /scrape flow into a permanent browser-skill. |
Release + deploy
| Skill | What it does |
|---|---|
/ship |
Run tests, review, push, open PR. Workspace-aware version queue. |
/land-and-deploy |
Merge the PR, wait for CI and deploy, verify production health. |
/canary |
Post-deploy monitoring loop using the browse daemon. |
/landing-report |
Read-only dashboard for the workspace-aware ship queue. |
/document-release |
Update all docs to match what you just shipped. |
/setup-deploy |
One-time deploy config detection (Fly.io, Render, Vercel, etc.). |
/gstack-upgrade |
Update gstack to the latest version. |
Operational + memory
| Skill | What it does |
|---|---|
/context-save |
Save working context (git state, decisions, remaining work). |
/context-restore |
Resume from a saved context, even across Conductor workspaces. |
/learn |
Manage what gstack learned across sessions. |
/retro |
Weekly retro with per-person breakdowns and shipping streaks. |
/health |
Code quality dashboard (type checker, linter, tests, dead code). |
/benchmark |
Performance regression detection (page load, Core Web Vitals). |
/benchmark-models |
Cross-model benchmark for skills (Claude, GPT, Gemini side-by-side). |
/cso |
OWASP Top 10 + STRIDE security audit. |
/setup-gbrain |
Set up gbrain for cross-machine session memory sync. |
/sync-gbrain |
Keep gbrain current with this repo's code; refresh agent search guidance in CLAUDE.md. |
Browser + agent integration
| Skill | What it does |
|---|---|
/browse |
Headless browser — real Chromium, real clicks, ~100ms/command. |
/open-gstack-browser |
Launch the visible GStack Browser with sidebar + stealth. |
/setup-browser-cookies |
Import cookies from your real browser for authenticated testing. |
/pair-agent |
Pair a remote AI agent (OpenClaw, Codex, etc.) with your browser. |
Safety + scoping
| Skill | What it does |
|---|---|
/careful |
Warn before destructive commands (rm -rf, DROP TABLE, force-push). |
/freeze |
Lock edits to one directory. Hard block, not just a warning. |
/guard |
Activate both careful + freeze at once. |
/unfreeze |
Remove directory edit restrictions. |
/make-pdf |
Turn any markdown file into a publication-quality PDF. |
Build commands
bun install # install dependencies
bun test # run free tests (no API spend)
bun run test:windows # curated Windows-safe subset (runs on windows-latest)
bun run build # generate docs + compile binaries
bun run gen:skill-docs # regenerate SKILL.md files from templates
bun run skill:check # health dashboard for all skills
Platform support
- macOS + Linux: full test suite supported.
- Windows: curated Windows-safe subset runs on
windows-latestvia thewindows-free-testsCI job. Setup script (./setup) requires Git Bash or MSYS today; native PowerShell support is a future expansion. Thebin/gstack-pathshelper resolves state roots throughCLAUDE_PLUGIN_DATA/GSTACK_HOMEso plugin installs work on every platform.
Key conventions
- SKILL.md files are generated from
.tmpltemplates. Edit the template, not the output. - Run
bun run gen:skill-docs --host codexto regenerate Codex-specific output. - The browse binary provides headless browser access. Use
$B <command>in skills. - Safety skills (careful, freeze, guard) use inline advisory prose — always confirm before destructive operations.
- State paths resolve via
bin/gstack-paths(sourced viaeval "$(...)"). HonorsGSTACK_HOME,CLAUDE_PLUGIN_DATA,CLAUDE_PLANS_DIR. - The
claudeCLI binary resolves viabrowse/src/claude-bin.ts(Bun.which()+GSTACK_CLAUDE_BINoverride). SetGSTACK_CLAUDE_BIN=wslplusGSTACK_CLAUDE_BIN_ARGS='["claude"]'to run Claude through WSL on Windows.