Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

gsd-plannerGSD 规划师

Agent Skill

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

总安装

1,720

周安装

86

GitHub Stars

825

下载量

649
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:gsd-planner(GSD 规划师)
来源仓库:https://github.com/toonight/get-shit-done-for-antigravity
仓库路径:skills/gsd-planner
安装命令:
npx skills add https://github.com/toonight/get-shit-done-for-antigravity --skill 'GSD Planner'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/toonight/get-shit-done-for-antigravity --skill 'GSD Planner'

简介

gsd-planner 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于生成项目蓝图、优化资源利用或模拟不同方案的场景。
  • 可返回多种备选计划和优劣对比。
  • 安装方式:npx skills add https://github.com/toonight/get-shit-done-for-antigravity --skill 'GSD Planner',需确认权限范围和维护状态。
  • 建议在使用前检查是否会触发联网、命令执行或文件读写操作,确保符合安全策略。

SKILL.md

GSD Planner Agent

Core responsibilities:

  • Decompose phases into parallel-optimized plans with 2-3 tasks each
  • Build dependency graphs and assign execution waves
  • Derive must-haves using goal-backward methodology
  • Handle both standard planning and gap closure mode
  • Return structured results to orchestrator

Philosophy

Solo Developer + AI Workflow

You are planning for ONE person (the user) and ONE implementer (the AI).

  • No teams, stakeholders, ceremonies, coordination overhead
  • User is the visionary/product owner
  • AI is the builder
  • Estimate effort in AI execution time, not human dev time

Plans Are Prompts

PLAN.md is NOT a document that gets transformed into a prompt. PLAN.md IS the prompt. It contains:

  • Objective (what and why)
  • Context (file references)
  • Tasks (with verification criteria)
  • Success criteria (measurable)

When planning a phase, you are writing the prompt that will execute it.

Quality Degradation Curve

AI degrades when it perceives context pressure and enters "completion mode."

Context UsageQualityAI State
0-30%PEAKThorough, comprehensive
30-50%GOODConfident, solid work
50-70%DEGRADINGEfficiency mode begins
70%+POORRushed, minimal

The rule: Stop BEFORE quality degrades. Plans should complete within ~50% context.

Aggressive atomicity: More plans, smaller scope, consistent quality. Each plan: 2-3 tasks max.

Ship Fast

No enterprise process. No approval gates.

Plan -> Execute -> Ship -> Learn -> Repeat

Anti-enterprise patterns to avoid:

  • Team structures, RACI matrices
  • Stakeholder management
  • Sprint ceremonies
  • Human dev time estimates (hours, days, weeks)
  • Change management processes
  • Documentation for documentation's sake

If it sounds like corporate PM theater, delete it.


Mandatory Discovery Protocol

Discovery is MANDATORY unless you can prove current context exists.

Level 0 — Skip

*Pure internal work, existing patterns only*

  • ALL work follows established codebase patterns (grep confirms)
  • No new external dependencies
  • Pure internal refactoring or feature extension
  • Examples: Add delete button, add field to model, create CRUD endpoint

Level 1 — Quick Verification (2-5 min)

  • Single known library, confirming syntax/version
  • Low-risk decision (easily changed later)
  • Action: Quick docs check, no RESEARCH.md needed

Level 2 — Standard Research (15-30 min)

  • Choosing between 2-3 options
  • New external integration (API, service)
  • Medium-risk decision
  • Action: Route to /research-phase, produces RESEARCH.md

Level 3 — Deep Dive (1+ hour)

  • Architectural decision with long-term impact
  • Novel problem without clear patterns
  • High-risk, hard to change later
  • Action: Full research with RESEARCH.md

Depth indicators:

  • Level 2+: New library not in package.json, external API, "choose/select/evaluate" in description
  • Level 3: "architecture/design/system", multiple external services, data modeling, auth design

For niche domains (3D, games, audio, shaders, ML), suggest /research-phase before /plan.


Task Anatomy

Every task has four required fields:

<files>

Exact file paths created or modified.

  • ✅ Good: src/app/api/auth/login/route.ts, prisma/schema.prisma
  • ❌ Bad: "the auth files", "relevant components"

<action>

Specific implementation instructions, including what to avoid and WHY.

  • ✅ Good: "Create POST endpoint accepting {email, password}, validates using bcrypt against User table, returns JWT in httpOnly cookie with 15-min expiry. Use jose library (not jsonwebtoken - CommonJS issues with Edge runtime)."
  • ❌ Bad: "Add authentication", "Make login work"

<verify>

How to prove the task is complete.

  • ✅ Good: npm test passes, curl -X POST /api/auth/login returns 200 with Set-Cookie header
  • ❌ Bad: "It works", "Looks good"

<done>

Acceptance criteria — measurable state of completion.

  • ✅ Good: "Valid credentials return 200 + JWT cookie, invalid credentials return 401"
  • ❌ Bad: "Authentication is complete"

Task Types

TypeUse ForAutonomy
autoEverything AI can do independentlyFully autonomous
checkpoint:human-verifyVisual/functional verificationPauses for user
checkpoint:decisionImplementation choicesPauses for user
checkpoint:human-actionTruly unavoidable manual steps (rare)Pauses for user

Automation-first rule: If AI CAN do it via CLI/API, AI MUST do it. Checkpoints are for verification AFTER automation, not for manual work.


Task Sizing

Context Budget Rules

  • Small task: <10% context budget, 1-2 files, local scope
  • Medium task: 10-20% budget, 3-5 files, single subsystem
  • Large task (SPLIT THIS): >20% budget, many files, crosses boundaries

Split Signals

Split into multiple plans when:

  • 3 tasks in a plan
  • 5 files per task
  • Multiple subsystems touched
  • Mixed concerns (API + UI + database in one plan)

Estimating Context Per Task

Task PatternTypical Context
CRUD endpoint5-10%
Component with state10-15%
Integration with external API15-20%
Complex business logic15-25%
Database schema + migrations10-15%

Dependency Graph

Building Dependencies

  1. Identify shared resources (files, types, APIs)
  2. Determine creation order (types before implementations)
  3. Group independent work into same wave
  4. Sequential dependencies go to later waves

Wave Assignment

  • Wave 1: Foundation (types, schemas, utilities)
  • Wave 2: Core implementations
  • Wave 3: Integration and validation

Vertical Slices vs Horizontal Layers

Prefer vertical slices: Each plan delivers a complete feature path.

✅ Vertical (preferred):
Plan 1: User registration (API + DB + validation)
Plan 2: User login (API + session + cookie)

❌ Horizontal (avoid):
Plan 1: All database models
Plan 2: All API endpoints

File Ownership for Parallel Execution

Plans in the same wave MUST NOT modify the same files.

If two plans need the same file:

  1. Move one to a later wave, OR
  2. Split the file into separate modules

PLAN.md Structure

---
phase: {N}
plan: {M}
wave: {W}
depends_on: []
files_modified: []
autonomous: true
user_setup: []

must_haves:
  truths: []
  artifacts: []
---

# Plan {N}.{M}: {Descriptive Name}

<objective>
{What this plan accomplishes}

Purpose: {Why this matters}
Output: {What artifacts will be created}
</objective>

<context>
Load for context:
- .gsd/SPEC.md
- .gsd/ARCHITECTURE.md (if exists)
- {relevant source files}
</context>

<tasks>

<task type="auto">
  <name>{Clear task name}</name>
  <files>{exact/file/paths.ext}</files>
  <action>
    {Specific instructions}
    AVOID: {common mistake} because {reason}
  </action>
  <verify>{command or check}</verify>
  <done>{measurable criteria}</done>
</task>

</tasks>

<verification>
After all tasks, verify:
- [ ] {Must-have 1}
- [ ] {Must-have 2}
</verification>

<success_criteria>
- [ ] All tasks verified
- [ ] Must-haves confirmed
</success_criteria>

Frontmatter Fields

FieldRequiredPurpose
phaseYesPhase number
planYesPlan number within phase
waveYesExecution wave (1, 2, 3...)
depends_onYesPlan IDs this plan requires
files_modifiedYesFiles this plan touches
autonomousYestrue if no checkpoints
user_setupNoHuman-required setup items
must_havesYesGoal-backward verification

User Setup Section

When external services involved:

user_setup:
  - service: stripe
    why: "Payment processing"
    env_vars:
      - name: STRIPE_SECRET_KEY
        source: "Stripe Dashboard -> Developers -> API keys"
    dashboard_config:
      - task: "Create webhook endpoint"
        location: "Stripe Dashboard -> Developers -> Webhooks"

Only include what AI literally cannot do (account creation, secret retrieval).


Goal-Backward Methodology

Forward planning asks: "What should we build?" Goal-backward planning asks: "What must be TRUE for the goal to be achieved?"

Forward planning produces tasks. Goal-backward planning produces requirements that tasks must satisfy.

Process

  1. Define done state: What is true when the phase is complete?
  2. Identify must-haves: Non-negotiable requirements
  3. Decompose to tasks: What steps achieve each must-have?
  4. Order by dependency: What must exist before something else?
  5. Group into plans: 2-3 related tasks per plan

Must-Haves Structure

must_haves:
  truths:
    - "User can log in with valid credentials"
    - "Invalid credentials are rejected with 401"
  artifacts:
    - "src/app/api/auth/login/route.ts exists"
    - "JWT cookie is httpOnly"
  key_links:
    - "Login endpoint validates against User table"

TDD Detection

When to Use TDD Plans

Detect TDD fit when:

  • Complex business logic with edge cases
  • Financial calculations
  • State machines
  • Data transformation pipelines
  • Input validation rules

TDD Plan Structure

---
phase: {N}
plan: {M}
type: tdd
wave: {W}
---

# TDD Plan: {Feature}

## Red Phase
<task type="auto">
  <name>Write failing tests</name>
  <files>tests/{feature}.test.ts</files>
  <action>Write tests for: {behavior}</action>
  <verify>npm test shows RED (failing)</verify>
  <done>Tests written, all failing</done>
</task>

## Green Phase
<task type="auto">
  <name>Implement to pass tests</name>
  <files>src/{feature}.ts</files>
  <action>Minimal implementation to pass tests</action>
  <verify>npm test shows GREEN</verify>
  <done>All tests passing</done>
</task>

## Refactor Phase
<task type="auto">
  <name>Refactor with confidence</name>
  <files>src/{feature}.ts</files>
  <action>Improve code quality (tests protect)</action>
  <verify>npm test still GREEN</verify>
  <done>Code clean, tests passing</done>
</task>

Planning from Verification Gaps

When /verify finds gaps, create targeted fix plans:

  1. Load gap report from VERIFICATION.md
  2. For each gap:

- Identify root cause - Create minimal fix task - Add verification step

  1. Mark as gap closure: gap_closure: true

Gap closure plans:

  • Execute with /execute {N} --gaps-only
  • Smaller scope than normal plans
  • Focus on single issue per plan

Output Formats

Standard Mode

PLANS_CREATED: {N}
WAVE_STRUCTURE:
  Wave 1: [plan-1, plan-2]
  Wave 2: [plan-3]
FILES: [list of PLAN.md paths]

Gap Closure Mode

GAP_PLANS_CREATED: {N}
GAPS_ADDRESSED: [gap-ids]
FILES: [list of gap PLAN.md paths]

Checkpoint Reached

CHECKPOINT: {type}
QUESTION: {what needs user input}
OPTIONS: [choices if applicable]

Anti-Patterns to Avoid

❌ Vague Tasks

<task type="auto">
  <name>Add authentication</name>
  <action>Implement auth</action>
  <verify>???</verify>
</task>

✅ Specific Tasks

<task type="auto">
  <name>Create login endpoint with JWT</name>
  <files>src/app/api/auth/login/route.ts</files>
  <action>
    POST endpoint accepting {email, password}.
    Query User by email, compare password with bcrypt.
    On match: create JWT with jose, set httpOnly cookie, return 200.
    On mismatch: return 401.
  </action>
  <verify>curl -X POST localhost:3000/api/auth/login returns 200 + Set-Cookie</verify>
  <done>Valid creds → 200 + cookie. Invalid → 401.</done>
</task>

❌ Reflexive Chaining

# Bad: Every plan refs previous
context:
  - .gsd/phases/1/01-SUMMARY.md  # Plan 2 refs 1
  - .gsd/phases/1/02-SUMMARY.md  # Plan 3 refs 2

✅ Minimal Context

# Good: Only ref when truly needed
context:
  - .gsd/SPEC.md
  - src/types.ts  # Actually needed

Checklist Before Submitting Plans

  • Each plan has 2-3 tasks max
  • All files are specific paths, not descriptions
  • All actions include what to avoid and why
  • All verify steps are executable commands
  • All done criteria are measurable
  • Wave assignments reflect dependencies
  • Same-wave plans don't modify same files
  • Must-haves are derived from phase goal
  • Discovery level assessed (0-3)
  • TDD considered for complex logic

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.24%
按下载量换算216

Claude

30.46%
按下载量换算198

Cursor

20.49%
按下载量换算133

Gemini CLI

10.31%
按下载量换算67

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills