Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

gstack-progstack 专业版

Agent Skill

gstack-pro 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,044

周安装

342

GitHub Stars

2

下载量

2,818
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gstack-pro(gstack 专业版)
来源仓库:https://github.com/zmy1006-sudo/gstack-pro
安装命令:
openclaw skills install gstack-pro
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gstack-pro

简介

将单一 AI 助手转化为十角色虚拟软件工程团队。

  • 灵感源自 YC CEO Garry Tan 的 gstack 方法论扩展版。
  • 覆盖从需求分析到部署上线的完整开发链条。gstack-pro 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用前请配置各专家角色专属知识库与沟通协议。
  • 建议按 Sprint 节奏分配任务并定期同步阻塞点。

SKILL.md

name
gstack-pro
slug
gstack-pro
version
1.0.0
tagline
Your AI Development Team in 10 Roles
description
>

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*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.51%
按下载量换算2,269

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills