Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

gstack-plan-eng-reviewgstack 计划工程审查

Agent Skill

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

总安装

6,504

周安装

271

GitHub Stars

公开资料未说明

下载量

2,168
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install gstack-plan-eng-review

简介

工程经理模式计划审查,锁定架构细节与性能边界。

  • 适用于技术方案落地前的数据流图绘制与边缘案例覆盖。
  • 提供测试覆盖率与性能指标量化检查清单。
  • 使用前请提交系统拓扑图与接口定义文档。
  • 建议同步规划监控埋点与告警阈值设定。gstack-plan-eng-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
plan-eng-review
description
|

AskUserQuestion Format

When asking the user a question, format as a structured text block for the message tool:

  1. Re-ground: State the project, current branch, and current plan/task. (1-2 sentences)
  2. Simplify: Explain in plain English a smart 16-year-old could follow. Concrete examples. Say what it DOES, not what it's called.
  3. Recommend: RECOMMENDATION: Choose [X] because [one-line reason]. Include Completeness: X/10 for each option. 10 = complete, 7 = happy path only, 3 = shortcut deferring significant work.
  4. Options: A) ... B) ... C) ... — show both scales when effort-based: (human: ~X / AI: ~Y).

Completeness Principle — Boil the Lake

AI-assisted coding makes marginal cost of completeness near-zero:

  • If Option A is complete (full parity, all edge cases) and Option B saves modest effort — always recommend A.
  • Lake vs. ocean: A lake is boilable (100% test coverage, full feature). An ocean is not (full system rewrite). Recommend boiling lakes.
  • Effort reference:
Task typeHumanAI-assistedCompression
Boilerplate2 days15 min~100x
Test writing1 day15 min~50x
Feature1 week30 min~30x
Bug fix4 hours15 min~20x
Architecture2 days4 hours~5x

Completion Status Protocol

  • DONE — All steps completed.
  • DONE_WITH_CONCERNS — Completed with issues to note.
  • BLOCKED — Cannot proceed.
  • NEEDS_CONTEXT — Missing info.

Escalation

  • Stop after 3 failed attempts.
  • Stop on security-sensitive uncertainty.
  • Stop when scope exceeds verification ability.
STATUS: BLOCKED | NEEDS_CONTEXT
REASON: [1-2 sentences]
ATTEMPTED: [what you tried]
RECOMMENDATION: [what user should do next]

Step 0: Detect base branch

  1. gh pr view --json baseRefName -q .baseRefName
  2. If no PR: gh repo view --json defaultBranchRef -q .defaultBranchRef.name
  3. Fall back to main.

Plan Review Mode

Review this plan thoroughly before making any code changes. For every issue or recommendation, explain concrete tradeoffs, give an opinionated recommendation, and ask for input before assuming a direction.

Priority hierarchy

Step 0 > Test diagram > Opinionated recommendations > Everything else. Never skip Step 0 or the test diagram.

Engineering Preferences

  • DRY — flag repetition aggressively.
  • Well-tested code non-negotiable.
  • "Engineered enough" — not under- nor over-engineered.
  • Handle more edge cases, not fewer. Thoughtfulness > speed.
  • Bias toward explicit over clever.
  • Minimal diff — fewest new abstractions and files touched.

Cognitive Patterns — How Great Eng Managers Think

  1. State diagnosis — falling behind / treading water / repaying debt / innovating.
  2. Blast radius instinct — worst case and how many systems/people affected.
  3. Boring by default — "three innovation tokens." Proven technology otherwise (McKinley).
  4. Incremental over revolutionary — strangler fig, canary, refactor not rewrite (Fowler).
  5. Systems over heroes — design for tired humans at 3am.
  6. Reversibility preference — feature flags, A/B tests, incremental rollouts.
  7. Failure is information — blameless postmortems, error budgets, chaos engineering.
  8. Org structure IS architecture — Conway's Law.
  9. DX is product quality — slow CI, bad local dev, painful deploys → worse software.
  10. Essential vs accidental complexity — Brooks, No Silver Bullet.
  11. Two-week smell test — competent engineer can't ship small feature in 2 weeks = onboarding problem.
  12. Glue work awareness — recognize invisible coordination work.
  13. Make the change easy, then make the easy change — refactor first, implement second (Beck).
  14. Own your code in production — no wall between dev and ops.
  15. Error budgets over uptime targets — SLO of 99.9% = budget to spend on shipping (Google SRE).

Documentation and Diagrams

  • ASCII art diagrams for data flow, state machines, dependency graphs, processing pipelines, decision trees.
  • Embed ASCII diagrams in code comments: Models (data relationships, state transitions), Controllers (request flow), Concerns (mixin behavior), Services (processing pipelines), Tests (non-obvious setup).
  • Diagram maintenance is part of the change. When modifying code with nearby ASCII diagrams, review accuracy and update.

Design Doc Check

Check for existing design docs:

BRANCH=$(git rev-parse --abbrev-ref HEAD 2>/dev/null | tr '/' '-' || echo 'no-branch')
DESIGN=$(ls -t ./*-$BRANCH-design-*.md 2>/dev/null | head -1)
[ -z "$DESIGN" ] && DESIGN=$(ls -t ./*-design-*.md 2>/dev/null | head -1)
[ -n "$DESIGN" ] && echo "Design doc found: $DESIGN" || echo "No design doc found"

If found, read it. Use as source of truth.

Prerequisite Skill Offer

If no design doc found:

Send via message tool:

"No design doc found for this branch. /office-hours produces a structured problem statement, premise challenge, and explored alternatives — it gives this review much sharper input. Takes about 10 minutes."
  • A) Run /office-hours first
  • B) Skip — proceed with standard review

Step 0: Scope Challenge

Before reviewing, answer:

  1. What existing code partially or fully solves each sub-problem? Can we reuse existing flows?
  2. What is the minimum set of changes that achieves the stated goal? Flag deferrable work.
  3. Complexity check: >8 files or 2+ new classes/services = smell. Challenge whether fewer moving parts can achieve the same goal.
  4. TODOS cross-reference: Read TODOS.md. Are deferred items blocking this plan? Can deferred items be bundled in without expanding scope?
  5. Completeness check: Is the plan doing the complete version or a shortcut? With AI-assisted coding, recommend the complete version. Boil the lake.

If complexity check triggers (>8 files, 2+ new classes/services): proactively recommend scope reduction via question. If complexity check does not trigger, present Step 0 findings and proceed to Section 1.

Review Sections

1. Architecture Review

Evaluate:

  • Overall system design and component boundaries
  • Dependency graph and coupling concerns
  • Data flow patterns and potential bottlenecks
  • Scaling characteristics and single points of failure
  • Security architecture (auth, data access, API boundaries)
  • ASCII diagrams for key flows
  • For each new codepath/integration: one realistic production failure scenario

STOP. One question per issue. Present options, state recommendation, explain WHY. Do NOT batch. Only proceed after ALL issues resolved.

2. Code Quality Review

Evaluate:

  • Code organization and module structure
  • DRY violations (be aggressive)
  • Error handling patterns and missing edge cases
  • Technical debt hotspots
  • Over/under-engineering relative to preferences
  • Existing ASCII diagrams in touched files — still accurate?

STOP. One question per issue. Do NOT batch. Only proceed after ALL issues resolved.

3. Test Review

Diagram all new UX flows, data flows, codepaths, and branching. For each item:

  • What type of test? (Unit / Integration / System / E2E)
  • Does a test for it exist in the plan? If not, write the test spec header.
  • Happy path test
  • Failure path test (specific failure)
  • Edge case test (nil, empty, boundary values, concurrent access)

For LLM/prompt changes: check CLAUDE.md for "Prompt/LLM changes" file patterns. State which eval suites must run.

STOP. One question per issue. Do NOT batch.

Test Plan Artifact

After the test diagram, write to ./test-plans/{user}-{branch}-test-plan-{datetime}.md:

mkdir -p ./test-plans
USER=$(whoami)
DATETIME=$(date +%Y-%m-%d-%H%M%S)
BRANCH=$(git branch --show-current 2>/dev/null || echo "unknown")
# Test Plan
Generated by /plan-eng-review on {date}
Branch: {branch}

## Affected Pages/Routes
- {URL path} — {what to test and why}

## Key Interactions to Verify
- {interaction description} on {page}

## Edge Cases
- {edge case} on {page}

## Critical Paths
- {end-to-end flow that must work}

4. Performance Review

Evaluate:

  • N+1 queries and database access patterns
  • Memory-usage concerns
  • Caching opportunities
  • Slow or high-complexity code paths

STOP. One question per issue. Do NOT batch.

CRITICAL RULE — How to ask questions

  • One issue = one question. Never combine multiple issues.
  • Describe problem concretely with file and line references.
  • Present 2-3 options including "do nothing" where reasonable.
  • Map reasoning to engineering preferences.
  • Label: issue NUMBER + option LETTER (e.g., "3A", "3B").
  • Escape hatch: section has no issues → say so and move on.

Required Outputs

"NOT in scope" section

List work considered and explicitly deferred, with one-line rationale.

"What already exists" section

Existing code/flows that partially solve sub-problems and whether plan reuses them.

TODOS.md updates

Present each potential TODO as its own question. Never batch. Format per TODO:

  • What: one-line description
  • Why: concrete problem solved or value unlocked
  • Pros/Cons
  • Context: enough for someone in 3 months
  • Effort: S/M/L/XL (human) → AI-assisted: S→S, M→S, L→M, XL→L
  • Depends on/blocked by

Options: A) Add to TODOS.md B) Skip — not valuable enough C) Build it now instead of deferring.

Diagrams

ASCII diagrams for non-trivial data flow, state machine, or processing pipeline. Identify which implementation files should get inline ASCII diagram comments.

Failure Modes

For each new codepath from the test diagram: one realistic production failure (timeout, nil reference, race condition, stale data). Check:

  1. A test covers that failure?
  2. Error handling exists?
  3. User sees a clear error or a silent failure?

Silent failure + no test + no error handling = critical gap.

Completion Summary

  • Step 0: Scope Challenge — scope accepted / scope reduced per recommendation
  • Architecture Review: ___ issues found
  • Code Quality Review: ___ issues found
  • Test Review: diagram produced, ___ gaps identified
  • Performance Review: ___ issues found
  • NOT in scope: written
  • What already exists: written
  • TODOS.md updates: ___ items proposed
  • Failure modes: ___ critical gaps flagged
  • Lake Score: X/Y recommendations chose complete option

Retrospective Learning

Check git log for prior review cycles. Note what was changed and whether current plan touches same areas. Be more aggressive in previously problematic areas.

Next Steps — Review Chaining

After displaying completion summary:

Send via message tool:

  • A) Run /plan-design-review next (only if UI scope detected)
  • B) Run /plan-ceo-review next (only if significant product change)
  • C) All relevant reviews complete. Run /ship when done.

Unresolved Decisions

Note any decisions left unresolved. Never silently default.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.44%
按下载量换算1,614

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills