Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

gsd-clawGSD 爪

Agent Skill

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

总安装

51,552

周安装

2,148

GitHub Stars

3

下载量

17,184
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install gsd-claw

简介

规范驱动的开发,具有针对大型项目的内置验证。当用户想要规划项目、确定功能范围、构建具有结构的内容或说“GSD 模式”、“让我们计划”、“范围扩大”、“规范驱动”时使用。工作流程为讨论→计划→执行→验证。基于glittercowboy的GSD系统(MIT许可证)。不适用于快速提问或简单任务。

SKILL.md

name
GSD Claw
description
Spec-driven development with built-in verification for substantial projects. Use when user wants to plan a project, scope a feature, build something with structure, or says "GSD mode", "let's plan", "scope out", "spec-driven". Workflow is Discuss → Plan → Execute → Verify. Based on glittercowboy's GSD system (MIT license). NOT for quick questions or simple tasks.

GSD Claw

A spec-driven development system adapted for OpenClaw. Transforms vague ideas into verified, working implementations through structured workflows.

Based on: glittercowboy/get-shit-done Original Author: Lex Christopherson (@glittercowboy) License: MIT

When to Use

Trigger this skill when user says:

  • "Let's plan [project/feature]"
  • "I want to build [something]"
  • "Scope out [project name]"
  • "GSD mode" or "spec-driven"
  • "Plan and execute [task]"
  • Any substantial project that needs structure

NOT for: Quick questions, simple tasks, chat conversations.

Core Philosophy

From the original GSD:

"The complexity is in the system, not in your workflow."

Principles:

  1. Plans ARE prompts — Executable instructions, not documents to interpret
  2. Verification built-in — Every task has acceptance criteria
  3. Fresh context per task — Subagents prevent context rot
  4. Solo developer + AI — No enterprise theater

Workflow Overview

┌─────────────────────────────────────────────────────────────┐
│  1. DISCUSS     Capture decisions before planning           │
│  2. PLAN        Research → Create verified specs            │
│  3. EXECUTE     Work through tasks with deviation rules     │
│  4. VERIFY      Confirm deliverables actually work          │
└─────────────────────────────────────────────────────────────┘

Phase 1: DISCUSS

Purpose: Capture user's vision BEFORE any planning.

Process:

  1. Ask about the goal (what are we building?)
  2. Identify gray areas based on domain:

- Visual features → layout, interactions, empty states - APIs → response format, error handling - Content → structure, tone, depth

  1. For each area, ask until user is satisfied
  2. Document decisions in {project}/.gsd/CONTEXT.md

Output Structure:

# Context: [Project/Phase Name]

## Decisions (Locked)
- [User decision 1]
- [User decision 2]

## Agent Discretion (Freedom Areas)
- [Area where agent can choose approach]

## Deferred Ideas (Out of Scope)
- [Not doing this now]

Rule: Never assume. Always ask.


Phase 2: PLAN

Purpose: Create executable task specs with built-in verification.

Research (Optional but Recommended)

Spawn sub-agent to investigate:

  • Technical approach options
  • Potential pitfalls
  • Best practices for the domain

Save to: {project}/.gsd/RESEARCH.md

Create Plans

Each plan = 2-3 tasks maximum (context efficiency).

Task XML Structure:

<task type="auto">
  <name>Task N: Action-oriented name</name>
  <files>src/path/file.ts, src/other/file.ts</files>
  <action>
    What to do, what to avoid and WHY.
    Be specific. No guessing.
  </action>
  <verify>Command or check to prove completion</verify>
  <done>Measurable acceptance criteria</done>
</task>

Task Types:

  • type="auto" — Agent executes autonomously
  • type="checkpoint:verify" — User must verify
  • type="checkpoint:decision" — User must choose

Plan Verification

Before execution, verify plans against:

  • [ ] Tasks are specific and actionable
  • [ ] Each task has verify + done criteria
  • [ ] Scope matches CONTEXT.md decisions
  • [ ] No enterprise bloat

Save plans to: {project}/.gsd/plans/{phase}-{N}-PLAN.md


Phase 3: EXECUTE

Purpose: Work through tasks with deviation handling.

Execution Rules

  1. Read plan as literal instructions
  2. Execute each task in order
  3. Verify done criteria before moving on
  4. Apply deviation rules automatically
  5. Document everything

Deviation Rules

Apply automatically — track for summary:

RuleTriggerActionPermission
BugBroken behavior, errors, security issuesFix → verify → trackAuto
Missing CriticalMissing validation, auth, error handlingAdd → verify → trackAuto
BlockingPrevents completion (missing deps, wrong types)Fix blocker → trackAuto
ArchitecturalNew table, schema change, breaking APISTOP → ask userAsk

Rule 4 (Architectural) Format:

⚠️ Architectural Decision Needed

Current task: [task name]
Discovery: [what prompted this]
Proposed change: [modification]
Why needed: [rationale]
Alternatives: [other approaches]

Proceed? (yes / different approach / defer)

Fresh Context Pattern

For multi-task execution, spawn sub-agents:

  • Each sub-agent gets fresh 200k context
  • Main context stays lean for user interaction
  • Prevents quality degradation

Task Completion

After each task:

  1. Verify done criteria met
  2. Commit changes (if applicable)
  3. Record in summary
  4. Move to next task

Phase 4: VERIFY

Purpose: Confirm deliverables actually work.

Automated Verification

  • Run verify commands from each task
  • Check files exist
  • Run tests if applicable

User Acceptance

Walk user through testable deliverables:

  1. Extract what they should be able to do now
  2. Present one at a time
  3. Get yes/no or issue description
  4. If issues found → create fix plans

If all pass: Mark phase complete. If issues: Don't debug manually — create fix plan and re-execute.


File Structure

{project}/
└── .gsd/
    ├── PROJECT.md           # Vision, always loaded
    ├── STATE.md             # Current position, decisions, blockers
    ├── REQUIREMENTS.md      # Scoped v1/v2 requirements
    ├── ROADMAP.md           # Phases and progress
    ├── CONTEXT.md           # User decisions from discuss phase
    ├── RESEARCH.md          # Domain research (optional)
    └── plans/
        ├── 01-01-PLAN.md    # Phase 1, Plan 1
        ├── 01-01-SUMMARY.md # Execution results
        └── ...

Templates: Copy from assets/ directory when initializing project files.


Quick Mode

For small tasks that don't need full planning:

Trigger: "Quick: [task description]"

Process:

  1. Skip research and discussion
  2. Create single plan with 1-3 tasks
  3. Execute with deviation rules
  4. Verify and commit

When to use:

  • Bug fixes
  • Small features
  • Config changes
  • One-off tasks

State Management

STATE.md Template

# Project State

## Current Position
Phase: [N]
Plan: [N of M]
Status: [planning | executing | verifying | blocked]

## Decisions Made
- [Decision 1] — [rationale]
- [Decision 2] — [rationale]

## Blockers
- [Blocker if any]

## Deviations Applied
- [Rule N] [Description] — [resolution]

Update STATE.md after each significant action.


Anti-Patterns (Banned)

From original GSD:

Enterprise theater

  • Story points, sprint ceremonies
  • Human time estimates (days/weeks)
  • RACI matrices, stakeholder syncs

Vague tasks

<!-- BAD -->
<task>
  <name>Add authentication</name>
  <action>Implement auth</action>
  <verify>???</verify>
</task>

Filler language

  • "Let me...", "I'd be happy to..."
  • "Great question!", "Excellent!"

Direct, imperative, technical


OpenClaw Adaptations

Original GSDOpenClaw Version

GSDOpenClaw
/gsd:command slash commandsNatural language triggers
Claude Code Task() spawningsessions_spawn sub-agents
.claude/ directory{project}/.gsd/ directory
Bash scriptsPowerShell/cross-platform
git commit protocolOptional, user preference

Preserved Core:

  • XML task structure with verify/done
  • Deviation rules
  • Fresh context via sub-agents
  • State management
  • Plan verification loop

Example Usage

User: "Let's plan the ORO website SEO overhaul"

Agent (DISCUSS):

Starting GSD workflow for: ORO Website SEO Overhaul

Before planning, I need to understand your vision.

1. What's the primary goal?
   a) Rank higher for specific keywords
   b) Improve technical SEO scores
   c) Both
   d) Something else

2. Any pages that are highest priority?
3. Budget constraints for tools/services?
4. Timeline expectations?

After discussion → creates CONTEXT.md

Agent (PLAN):

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 GSD ► PLANNING: ORO SEO Overhaul
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Spawning research sub-agent...
[Research complete]

Creating plans...
- Plan 1: Technical SEO fixes (3 tasks)
- Plan 2: Content optimization (2 tasks)
- Plan 3: Performance improvements (3 tasks)

Verifying plans against requirements...
✓ All checks passed

Ready to execute?

Credits

This skill is adapted from Get Shit Done (GSD) by Lex Christopherson (@glittercowboy).

  • Original Repository: https://github.com/glittercowboy/get-shit-done
  • License: MIT
  • Philosophy: Solo developer + AI, no enterprise bloat

Thank you Lex for creating an incredibly effective system for building things with AI.


Version History

  • 1.0.0 — Initial OpenClaw adaptation

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.64%
按下载量换算15,232

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install gsd-claw 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills