← 返回
未分类 中文

Gstack Pro

Transform your AI assistant into a structured virtual software engineering team with 10 specialist roles — inspired by Garry Tan's GStack (YC CEO, 16K GitHub...
将您的AI助手转化为包含10个专业角色的结构化虚拟软件工程团队——灵感来源于Garry Tan的GStack(YC CEO,16K GitHub...
zmy1006-sudo
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 4
Stars
📥 630
下载
💾 0
安装
1
版本
#latest

概述

GStack Pro — 10-Role AI Engineering Team

> Built on the philosophy of Garry Tan's GStack (YC CEO) · 16K GitHub Stars · MIT License

> Adapted for OpenClaw subagent + session architecture


What It Does

GStack Pro gives your AI 10 specialist roles — each with a clear mandate, a structured output format, and a measurable quality bar.

Instead of one generic AI doing everything badly, you get a team:

#RoleIconSubagentBest For
-----------------------------------
1CEO / Product Thinker🏛️requirerRethink the problem before building
2Architect / Tech Lead🏗️architectLock in data flow, failure modes, tests
3Designer Review🎨designer80-item design audit, AI slop detection
4Paranoid Code Review🔍testerN+1, race conditions, trust boundaries
5Browser QA🌐browser toolAI with eyes — login, click, screenshot, verify
6Automated QA + Fix🧪tester + coderFind → fix → re-verify with Health Score
7QA Reporter📊testerReport-only, clean handoff to team
8One-Command Ship🚀operatorsync → test → push → PR
9Engineering Retro🔄progressCommit analysis, praise, growth areas
10Release Docs📝writerSync docs to match what shipped

The Development Cycle

User Request
     ↓
① CEO审视 (/plan-ceo)
   → Is this worth building? What's the 10-star product?
     ↓
② Architecture Lock (/plan-eng)
   → Data flow, state machine, failure modes, test matrix
     ↓
③ Design Review (/plan-design)
   → 80-item audit, design quality grades, AI slop detection
     ↓
④ Paranoid Code Review (/review)
   → N+1, race conditions, trust boundary violations
     ↓
⑤ Automated Browser QA (/qa)
   → AI drives browser, finds bugs, fixes them, re-verifies
   → Health Score 0-100 determines ship-readiness
     ↓
⑥ One-Command Ship (/ship)
   → sync main → run tests → push → open PR
     ↓
⑦ Engineering Retro (/retro)
   → Commit analysis, team performance, improvement plan
     ↓
⑧ Release Docs (/document)
   → Update README/ARCHITECTURE to match what shipped

How to Activate a Role

Method 1: Direct Command (e.g., in conversation)

/plan-ceo: 为AICFO设计一个新功能:员工工资条自动生成PDF

/review: 审查deepfmt Sprint 3的代码改动

/qa: 对 https://xxx.space.minimaxi.com 运行标准QA测试

Method 2: Subagent (for background/parallel work)

sessions_spawn({
  agentId: "tester",  // QA + Review
  task: "Read skills/gstack-pro/roles/review.md then review the code at /workspace/projects/aicfo/aicfo-mvp/src/api/"
})

Health Score System

After every /qa session, output a structured score:

{
  "healthScore": 85,
  "status": "🟡 Good",
  "breakdown": {
    "functional": { "passed": 8, "total": 10, "score": 24 },
    "edgeCases": { "covered": 4, "total": 5, "score": 20 },
    "consoleErrors": { "passed": true, "score": 25 },
    "designRegressions": { "passed": true, "score": 16 }
  },
  "shipRecommendation": "🟡 Fix 2 minor issues before ship"
}
ScoreStatusAction
-----------------------
90-100🟢 ExcellentReady to ship immediately
70-89🟡 Good2-3 minor issues, fix before ship
50-69🟠 Needs WorkSignificant bugs, fix before next sprint
<50🔴 Do Not ShipCore functionality broken, redo required

Quality Bars

Code Must Pass

  • ✅ N+1 queries eliminated
  • ✅ All external calls have timeouts
  • ✅ Retries with exponential backoff
  • ✅ Database transactions properly bounded
  • ✅ Input validation on all untrusted data
  • ✅ No trust boundary violations
  • ✅ Structured logging (JSON, with trace IDs)

Design Must Pass

  • ✅ Consistent visual hierarchy
  • ✅ No AI slop patterns (copy-paste generic cards, overuse of gradients)
  • ✅ Responsive at 375px / 768px / 1440px
  • ✅ Accessible (color contrast, focus states)
  • ✅ Meaningful empty states

Anti-Patterns Detected

PatternWhy It FailsDetection
--------------------------------
"Looks good!"AI self-evaluation biasEvaluator never reads generator code
Circular dependencyUnmaintainable architectureDependency graph analysis
AI slopGeneric, low-quality design80-item designer audit
Magic numbersHard to maintainno-magic-numbers lint rule
Forgotten edge casesSilent production failuresMandatory test matrix
No rollback planCan't safely deploy/ship requires rollback plan

OpenClaw Subagent Mapping

RoleSubagent IDType
-------------------------
CEO Productrequirerdemand analysis
Architectarchitecttech design
DesignerdesignerUI/UX review
Code Reviewtesterquality assurance
Browser QAbrowser toolautomated testing
QA + Fixtester + codertest + implement
QA Reportertesterreporting
Shipoperatorrelease
Retroprogressanalysis
Docswriterdocumentation

Key Insight: Generator vs Evaluator

GStack Pro separates creation from judgment.

Generator Agent  ──→  builds code  ──→  Evaluator Agent
  (creates)         (artifact)           (judges from SPEC + URL only)
                                              ↑
                                       Never reads generator's code

This eliminates cognitive commitment bias — the AI can't judge what it already committed to building.

Inspired by: Anthropic Engineering, "Harness Design for Long-Running Application Development" (2026)


Files

FilePurpose
---------------
SKILL.mdThis file — overview and usage
references/plan-ceo.mdCEO product thinking SOP
references/plan-eng.mdArchitecture review SOP
references/review.mdParanoid code review SOP
references/qa.mdAutomated QA SOP + Health Score
references/ship.mdOne-command ship SOP
references/retro.mdEngineering retro SOP

Inspired by Garry Tan's GStack (https://gstacks.org) · MIT License

For OpenClaw · Compatible with Claude Code GStack workflows

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-03 04:41 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

DESIGN.md — AI时代设计规范技能

zmy1006-sudo
DESIGN.md 设计与品牌规范技能。用户需要创建项目设计规范、为AI编写品牌规范或生成符合品牌风格的页面时激活。 触发词:DESIGN.md、设计规范、品牌规范、设计系统、生成设计文档、写DESIGN.md、设计语言。 用于:创建/更新
★ 0 📥 1,341

Architecture Diagram Generator (FMTWiki Fork)

zmy1006-sudo
创建专业的深色主题架构图,以独立HTML文件形式呈现,使用内联SVG图形。适用于用户请求系统架构图等场景。
★ 1 📥 494

Wukong — 名人思维蒸馏框架(72变版)

zmy1006-sudo
名人思维蒸馏与召唤技能:在需要借鉴某位名人思维方式分析问题或决策时激活。支持任意历史人物、商界领袖、科学家、艺术家等。触发词:召唤/蒸馏/思维模型/Think Like/像XX一样/XX会怎么做/心智模型/认知框架/决策参考。
★ 2 📥 405