|
| 1 | +# GStack for CodeBuddy IDE |
| 2 | + |
| 3 | +One-command installation of [GStack](https://github.com/garrytan/gstack) (Garry Tan's AI development workflow - 31 specialized AI agents) for CodeBuddy IDE. |
| 4 | + |
| 5 | +## Quick Install |
| 6 | + |
| 7 | +### One-Liner (Recommended) |
| 8 | + |
| 9 | +```bash |
| 10 | +# Project-level (current project only) |
| 11 | +curl -sSL https://raw.githubusercontent.com/[YOUR-USER]/gstack-codebuddy/main/install.sh | bash -s -- --project |
| 12 | + |
| 13 | +# User-level (all projects) |
| 14 | +curl -sSL https://raw.githubusercontent.com/[YOUR-USER]/gstack-codebuddy/main/install.sh | bash -s -- --user |
| 15 | +``` |
| 16 | + |
| 17 | +### Manual Install |
| 18 | + |
| 19 | +```bash |
| 20 | +# Clone this repository |
| 21 | +git clone https://github.com/[YOUR-USER]/gstack-codebuddy.git |
| 22 | +cd gstack-codebuddy |
| 23 | + |
| 24 | +# Run installer |
| 25 | +./install.sh --project # For current project |
| 26 | +# OR |
| 27 | +./install.sh --user # For all projects |
| 28 | +``` |
| 29 | + |
| 30 | +## Update GStack |
| 31 | + |
| 32 | +When GStack updates, simply run: |
| 33 | + |
| 34 | +```bash |
| 35 | +# Auto-detect and update |
| 36 | +curl -sSL https://raw.githubusercontent.com/[YOUR-USER]/gstack-codebuddy/main/install.sh | bash -s -- --update |
| 37 | + |
| 38 | +# Or from existing installation |
| 39 | +cd .codebuddy/skills/gstack |
| 40 | +./update-gstack |
| 41 | +``` |
| 42 | + |
| 43 | +## What is GStack? |
| 44 | + |
| 45 | +GStack transforms AI coding assistants into a virtual engineering team with **31 specialized roles**: |
| 46 | + |
| 47 | +### Product Planning (5) |
| 48 | +| Skill | Role | Description | |
| 49 | +|-------|------|-------------| |
| 50 | +| `/office-hours` | YC Office Hours | Product brainstorming with six forcing questions | |
| 51 | +| `/plan-ceo-review` | CEO/Founder | Strategic product review | |
| 52 | +| `/plan-eng-review` | Eng Manager | Architecture & data flow review | |
| 53 | +| `/plan-design-review` | Senior Designer | Design quality audit | |
| 54 | +| `/autoplan` | Review Pipeline | Automated planning pipeline | |
| 55 | + |
| 56 | +### Design (4) |
| 57 | +| Skill | Role | Description | |
| 58 | +|-------|------|-------------| |
| 59 | +| `/design-consultation` | Design Partner | Full design system creation | |
| 60 | +| `/design-shotgun` | Design Explorer | Multiple design exploration | |
| 61 | +| `/design-html` | Design Engineer | Production HTML generation | |
| 62 | +| `/design-review` | Designer Who Codes | Design review + fixes | |
| 63 | + |
| 64 | +### Development (4) |
| 65 | +| Skill | Role | Description | |
| 66 | +|-------|------|-------------| |
| 67 | +| `/review` | Staff Engineer | Code review, find bugs | |
| 68 | +| `/investigate` | Debugger | Root cause debugging | |
| 69 | +| `/codex` | Second Opinion | OpenAI Codex review | |
| 70 | +| `/cso` | Chief Security Officer | Security audit (OWASP + STRIDE) | |
| 71 | + |
| 72 | +### Testing (3) |
| 73 | +| Skill | Role | Description | |
| 74 | +|-------|------|-------------| |
| 75 | +| `/qa` | QA Lead | Auto testing + fix + regression | |
| 76 | +| `/qa-only` | QA Reporter | Bug reports only | |
| 77 | +| `/browse` | QA Engineer | Browser automation | |
| 78 | + |
| 79 | +### Release (4) |
| 80 | +| Skill | Role | Description | |
| 81 | +|-------|------|-------------| |
| 82 | +| `/ship` | Release Engineer | Push PR | |
| 83 | +| `/land-and-deploy` | Release Engineer | Merge + deploy + verify | |
| 84 | +| `/canary` | SRE | Post-deploy monitoring | |
| 85 | +| `/benchmark` | Performance Engineer | Performance testing | |
| 86 | + |
| 87 | +### Documentation (1) |
| 88 | +| Skill | Role | Description | |
| 89 | +|-------|------|-------------| |
| 90 | +| `/document-release` | Technical Writer | Sync project docs | |
| 91 | + |
| 92 | +### Process (2) |
| 93 | +| Skill | Role | Description | |
| 94 | +|-------|------|-------------| |
| 95 | +| `/retro` | Eng Manager | Team weekly retro | |
| 96 | +| `/learn` | Memory | Project memory management | |
| 97 | + |
| 98 | +### Safety (4) |
| 99 | +| Skill | Role | Description | |
| 100 | +|-------|------|-------------| |
| 101 | +| `/careful` | Safety Guardrails | Danger command warnings | |
| 102 | +| `/freeze` | Edit Lock | Edit boundary lock | |
| 103 | +| `/guard` | Full Safety | Maximum safety mode | |
| 104 | +| `/unfreeze` | Unlock | Remove lock | |
| 105 | + |
| 106 | +### Tools (4) |
| 107 | +| Skill | Role | Description | |
| 108 | +|-------|------|-------------| |
| 109 | +| `/connect-chrome` | Chrome Controller | Real Chrome control | |
| 110 | +| `/setup-browser-cookies` | Session Manager | Cookie import | |
| 111 | +| `/setup-deploy` | Deploy Configurator | Deploy configuration | |
| 112 | +| `/gstack-upgrade` | Self-Updater | Auto-updater | |
| 113 | + |
| 114 | +## How It Works |
| 115 | + |
| 116 | +### Directory Structure |
| 117 | + |
| 118 | +``` |
| 119 | +.codebuddy/ |
| 120 | +└── skills/ |
| 121 | + └── gstack/ ← GStack installed here |
| 122 | + ├── SKILL.md # Main skill definition |
| 123 | + ├── setup-codebuddy # Setup script |
| 124 | + ├── update-gstack # Update script |
| 125 | + └── [GStack files...] |
| 126 | +``` |
| 127 | + |
| 128 | +### Installation Flow |
| 129 | + |
| 130 | +1. **Clone**: Script clones GStack from GitHub |
| 131 | +2. **Convert**: Creates CodeBuddy-compatible SKILL.md |
| 132 | +3. **Setup**: Creates symlink to CodeBuddy skills directory |
| 133 | +4. **Ready**: Restart CodeBuddy to use GStack skills |
| 134 | + |
| 135 | +### Update Flow |
| 136 | + |
| 137 | +1. **Detect**: Script checks for new GStack commits |
| 138 | +2. **Pull**: Pulls latest changes from GStack repository |
| 139 | +3. **Sync**: Updates CodeBuddy-compatible files |
| 140 | +4. **Ready**: Restart CodeBuddy to use updated skills |
| 141 | + |
| 142 | +## Requirements |
| 143 | + |
| 144 | +- CodeBuddy IDE installed |
| 145 | +- Git |
| 146 | +- Bash shell (Linux/macOS/Windows with WSL) |
| 147 | + |
| 148 | +## Auto-Sync |
| 149 | + |
| 150 | +This repository includes a GitHub Actions workflow that automatically syncs with GStack daily. When GStack updates, the workflow: |
| 151 | + |
| 152 | +1. Detects new commits |
| 153 | +2. Pulls latest GStack changes |
| 154 | +3. Updates CodeBuddy-compatible files |
| 155 | +4. Creates a new release tag |
| 156 | + |
| 157 | +## License |
| 158 | + |
| 159 | +MIT - Same as original [GStack](https://github.com/garrytan/gstack) |
| 160 | + |
| 161 | +--- |
| 162 | + |
| 163 | +**Credit**: [Garry Tan](https://twitter.com/garrytan), President & CEO of Y Combinator |
0 commit comments