

Also from Kynth Studios


Also from Kynth Studios


Also from Kynth Studios
1# gstack — AI Engineering Workflow23gstack is a collection of SKILL.md files that give AI agents structured roles for4software development. Each skill is a specialist: CEO reviewer, eng manager,5designer, QA lead, release engineer, debugger, and more.67## Available skills89Skills live in `.agents/skills/` (or `$GSTACK_ROOT/` on Claude Code).10Invoke them by name (e.g., `/office-hours`).1112### Plan-mode reviews1314| Skill | What it does |15|-------|-------------|16| `/office-hours` | Start here. Reframes your product idea before you write code. |17| `/plan-ceo-review` | CEO-level review: find the 10-star product in the request. |18| `/plan-eng-review` | Lock architecture, data flow, edge cases, and tests. |19| `/plan-design-review` | Rate each design dimension 0-10, explain what a 10 looks like. |20| `/plan-devex-review` | DX-mode review: TTHW, magical moments, friction points, persona traces. |21| `/plan-tune` | Self-tune AskUserQuestion sensitivity per question. |22| `/autoplan` | One command runs CEO → design → eng → DX review. |23| `/design-consultation` | Build a complete design system from scratch. |2425### Implementation + review2627| Skill | What it does |28|-------|-------------|29| `/review` | Pre-landing PR review. Finds bugs that pass CI but break in prod. |30| `/codex` | Second opinion via OpenAI Codex. Review, challenge, or consult modes. |31| `/investigate` | Systematic root-cause debugging. No fixes without investigation. |32| `/design-review` | Live-site visual audit + fix loop with atomic commits. |33| `/design-shotgun` | Generate multiple AI design variants, comparison board, iterate. |34| `/design-html` | Generate production-quality Pretext-native HTML/CSS. |35| `/devex-review` | Live developer experience audit (TTHW measured against the real flow). |36| `/qa` | Open a real browser, find bugs, fix them, re-verify. |37| `/qa-only` | Same methodology as /qa but report only — no code changes. |38| `/scrape` | Pull data from a web page. First call prototypes; codified call runs in ~200ms. |39| `/skillify` | Codify the most recent successful `/scrape` flow into a permanent browser-skill. |4041### Release + deploy4243| Skill | What it does |44|-------|-------------|45| `/ship` | Run tests, review, push, open PR. Workspace-aware version queue. |46| `/land-and-deploy` | Merge the PR, wait for CI and deploy, verify production health. |47| `/canary` | Post-deploy monitoring loop using the browse daemon. |48| `/landing-report` | Read-only dashboard for the workspace-aware ship queue. |49| `/document-release` | Update all docs to match what you just shipped. |50| `/document-generate` | Generate Diataxis docs (tutorial / how-to / reference / explanation) from code. |51| `/setup-deploy` | One-time deploy config detection (Fly.io, Render, Vercel, etc.). |52| `/gstack-upgrade` | Update gstack to the latest version. |5354### Operational + memory5556| Skill | What it does |57|-------|-------------|58| `/context-save` | Save working context (git state, decisions, remaining work). |59| `/context-restore` | Resume from a saved context, even across Conductor workspaces. |60| `/learn` | Manage what gstack learned across sessions. |61| `/retro` | Weekly retro with per-person breakdowns and shipping streaks. |62| `/health` | Code quality dashboard (type checker, linter, tests, dead code). |63| `/benchmark` | Performance regression detection (page load, Core Web Vitals). |64| `/benchmark-models` | Cross-model benchmark for skills (Claude, GPT, Gemini side-by-side). |65| `/cso` | OWASP Top 10 + STRIDE security audit. |66| `/setup-gbrain` | Set up gbrain for cross-machine session memory sync. |67| `/sync-gbrain` | Keep gbrain current with this repo's code; refresh agent search guidance in CLAUDE.md. |6869### Browser + agent integration7071| Skill | What it does |72|-------|-------------|73| `/browse` | Headless browser — real Chromium, real clicks, ~100ms/command. |74| `/open-gstack-browser` | Launch the visible GStack Browser with sidebar + stealth. |75| `/setup-browser-cookies` | Import cookies from your real browser for authenticated testing. |76| `/pair-agent` | Pair a remote AI agent (OpenClaw, Codex, etc.) with your browser. |7778### iOS QA — drive real iPhones over USB or Tailscale (v1.43.0.0+)7980| Skill | What it does |81|-------|-------------|82| `/ios-qa` | Live-device iOS QA via USB CoreDevice tunnel + embedded StateServer. Optionally exposes the device over Tailscale so remote agents can drive it. |83| `/ios-fix` | Autonomous iOS bug fixer with regression snapshot capture. |84| `/ios-design-review` | Designer's-eye QA on a real iPhone — 10-dimension Apple HIG rubric. |85| `/ios-clean` | Convenience: strip DebugBridge + #if DEBUG wiring before a Release build. |86| `/ios-sync` | Regenerate the iOS debug bridge against the latest upstream templates. |8788Companion CLIs (run on the Mac that's plugged into the device):8990| Command | What it does |91|---------|-------------|92| `gstack-ios-qa-daemon` | Mac-side broker. Loopback by default; `--tailnet` adds a Tailscale-facing listener with capability tiers and audit logging. |93| `gstack-ios-qa-mint` | Owner-grant CLI for the tailnet allowlist (`grant`/`revoke`/`list`). |9495End-to-end walkthrough: [docs/howto-ios-testing-with-gstack.md](docs/howto-ios-testing-with-gstack.md).9697### Safety + scoping9899| Skill | What it does |100|-------|-------------|101| `/careful` | Warn before destructive commands (rm -rf, DROP TABLE, force-push). |102| `/freeze` | Lock edits to one directory. Hard block, not just a warning. |103| `/guard` | Activate both careful + freeze at once. |104| `/unfreeze` | Remove directory edit restrictions. |105| `/make-pdf` | Turn any markdown file into a publication-quality PDF. |106107## Build commands108109```bash110bun install # install dependencies111bun test # run free tests (no API spend)112bun run test:windows # curated Windows-safe subset (runs on windows-latest)113bun run build # generate docs + compile binaries114bun run gen:skill-docs # regenerate SKILL.md files from templates115bun run skill:check # health dashboard for all skills116```117118## Platform support119120- **macOS** + **Linux**: full test suite supported.121- **Windows**: curated Windows-safe subset runs on `windows-latest` via the122 `windows-free-tests` CI job. Setup script (`./setup`) requires Git Bash or123 MSYS today; native PowerShell support is a future expansion. The `bin/gstack-paths`124 helper resolves state roots through `CLAUDE_PLUGIN_DATA` / `GSTACK_HOME` so plugin125 installs work on every platform.126127## Key conventions128129- SKILL.md files are **generated** from `.tmpl` templates. Edit the template, not the output.130- Run `bun run gen:skill-docs --host codex` to regenerate Codex-specific output.131- The browse binary provides headless browser access. Use `$B <command>` in skills.132- Safety skills (careful, freeze, guard) use inline advisory prose — always confirm before destructive operations.133- State paths resolve via `bin/gstack-paths` (sourced via `eval "$(...)"`). Honors `GSTACK_HOME`, `CLAUDE_PLUGIN_DATA`, `CLAUDE_PLANS_DIR`.134- The `claude` CLI binary resolves via `browse/src/claude-bin.ts` (`Bun.which()` + `GSTACK_CLAUDE_BIN` override). Set `GSTACK_CLAUDE_BIN=wsl` plus `GSTACK_CLAUDE_BIN_ARGS='["claude"]'` to run Claude through WSL on Windows.135
One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-build.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-code-simplify.mdc · 51 | Cursor rules | testing-strategy | 30/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-plan.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-review.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-ship.mdc · 51 | Cursor rules | testing-strategygitdeploymentdo-not | 61/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-spec.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-test.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/AGENTS.md · 51 | AGENTS.md | lint-formatstylearchdo-not | 73/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/CLAUDE.md · 51 | CLAUDE.md | teststylearchagent-behaviour | 70/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-cancel-ralph.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-help.mdc · 51 | Cursor rules | no sections | 54/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-ralph-loop.mdc · 51 | Cursor rules | no sections | 22/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_agent-sdk-dev/for-cursor/.cursor/rules/cmd-new-sdk-app.mdc · 51 | Cursor rules | setupstylearchdocs | 76/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_claude-md-management/for-cursor/.cursor/rules/cmd-revise-claude-md.mdc · 51 | Cursor rules | agent-behaviour | 50/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_code-review/for-cursor/.cursor/rules/cmd-code-review.mdc · 51 | Cursor rules | testing-strategygit | 35/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-clean_gone.mdc · 51 | Cursor rules | no sections | 60/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit-push-pr.mdc · 51 | Cursor rules | stylegit | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit.mdc · 51 | Cursor rules | style | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_example-plugin/for-cursor/.cursor/rules/cmd-example-command.mdc · 51 | Cursor rules | lint-formatstyleagent-behaviour | 58/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_feature-dev/for-cursor/.cursor/rules/cmd-feature-dev.mdc · 51 | Cursor rules | stylearchgit | 56/100 | today |
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| code-yeongyu/oh-my-openagentpackages/web/AGENTS.md · 68k | AGENTS.md | setupbuildtestlint-format+6 | 100/100 | 13 days ago | |
| mui/material-uiAGENTS.md · 99k | AGENTS.md | setupbuildtestlint-format+9 | 100/100 | 14 days ago | |
| aaif-goose/gooseAGENTS.md · 53k | AGENTS.md | setupbuildtestlint-format+7 | 100/100 | 8 days ago | |
| duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70 | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| deepseek-ai/deepseek-harnessnative/landlock-run/AGENTS.md · 104k | AGENTS.md | setupteststylearch+3 | 100/100 | today | |
| TryGhost/Ghoste2e/AGENTS.md · 55k | AGENTS.md | setupteststylearch+2 | 100/100 | today | |
| n8n-io/n8npackages/@n8n/agents/AGENTS.md · 201k | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| elastic/elasticsearchx-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ml/AGENTS.md · 78k | AGENTS.md | buildtestlint-formatstyle+2 | 100/100 | 14 days ago |
A badge carrying the measured quality of the strongest agent config file in this repository, out of 100. It reads from this index every time somebody loads your page, so it changes when the measurement changes and there is nothing to keep up to date. Free, no account, and the value is not something you or we can set by hand.
[](https://rulestack.kynth.studio/configs/nota-america-forgecat-agent-profiles-profiles-garrytan-gstack-for-cursor-cursor-skills-garrytan-gstack-agents)Would rather not hotlink us? Every badge is also served in shields.io’s endpoint schema, so shields renders the image and your readers never talk to our domain:
Published by Toolproof, the masthead over this index and eight others. The method behind the number is at toolproof.kynth.studio/methodology, and the whole thing is readable as JSON with no key at /api.