Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

leanspec-sdd精益规格 SDD

Agent Skill

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

总安装

392

周安装

16

GitHub Stars

236

下载量

127
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:leanspec-sdd(精益规格 SDD)
来源仓库:https://github.com/codervisor/lean-spec
仓库路径:skills/leanspec-sdd
安装命令:
npx skills add https://github.com/codervisor/lean-spec --skill leanspec-sdd
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/codervisor/lean-spec --skill leanspec-sdd

简介

leanspec-sdd 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前建议检查是否会触发联网、命令执行或文件读写操作。
  • 当前维护状态和稳定性需结合仓库活跃度进一步确认。

SKILL.md

LeanSpec SDD Skill

Teach agents how to run Spec-Driven Development (SDD) in LeanSpec projects using the lean-spec CLI.

Core Principles

  1. Context Economy: Keep specs under 2000 tokens when possible. Split large specs.
  2. Discovery First: Always run board/search before creating new specs.
  3. Intent Over Implementation: Capture why first, then how.
  4. No Manual Frontmatter: Use tools to update status, tags, dependencies.
  5. Verify Against Reality: Check actual codebase, commits, and changes—not just spec status.

SDD Lifecycle

1. Discover

Before creating or modifying anything:

  • Run board to see current project state and identify gaps
  • Run search "relevant keywords" to find related specs
  • If similar spec exists, consider extending it or linking as dependency

2. Create Spec

Use lean-spec create "spec-name".

Always pass all known fields in the create calltitle, content, priority, tags, etc. Never create empty specs then populate with follow-up update.

Gather requirements first:

  • Problem/Goal: What needs to be solved?
  • Scope: What's in and out?
  • Success Criteria: How do we know it's done?
  • Dependencies: What needs to exist first?

Naming conventions: kebab-case, descriptive — user-auth-oauth-integration, not bug-fix.

Quality content sections:

  1. Overview (1-3 sentences) — problem and importance
  2. Requirements- [] checklist, independently verifiable items
  3. Non-Goals — prevents scope creep
  4. Technical Notes (optional) — architecture, APIs
  5. Acceptance Criteria — measurable success conditions

After creation:

  • Link relationships (parent, depends_on) — see "Choosing Relationship Type"
  • Run validate to check quality; check tokens — keep under 2000

3. Refine Spec

Pre-implementation research to ensure the spec is implementation-ready. Use when spec is drafted and approaching in-progress.

Research the codebase:

  • Search for files/modules mentioned in the spec
  • Find existing patterns to follow
  • Locate integration points; review test patterns

Validate technical approach:

  • Do referenced files/APIs exist?
  • Are proposed interfaces compatible?
  • Does architecture match current patterns?
  • Are there existing solutions to leverage?

Update spec with findings:

  • Specific file paths to modify
  • Exact function/class names and API signatures
  • Existing code to reuse; edge cases and blockers

Readiness checklist:

  • All referenced code paths verified
  • Technical approach validated against codebase
  • Dependencies confirmed available
  • No blocking unknowns remain
  • Checklist items are specific and actionable

4. Implement Spec

Before starting:

  • Run lean-spec view <spec> — includes parent, children, depends_on, required_by
  • Set status to in-progress: lean-spec update <spec> --status in-progress
  • If draft is enabled, move draftplanned first (skipping requires --force)

For umbrella specs: Implement children first; parent completes when all children complete.

For child specs: Complete independently once requirements are met.

During implementation:

  • Follow spec's checklist items in order
  • Stay within defined scope boundaries
  • Run tests frequently
  • Document discoveries in the spec

Verification (MANDATORY — do NOT skip):

pnpm typecheck    # Zero type errors
pnpm test         # All tests pass
pnpm lint         # No lint errors
lean-spec validate

All must pass before marking complete. If any fail, fix and re-run.

Completing:

  1. Mark all checklist items as done
  2. Add implementation notes if needed
  3. Set status to complete: update <spec> --status complete

5. Check Progress

Verify spec completion against actual implementation.

Extract from spec: checklist items, acceptance criteria, scope boundaries, technical requirements.

Verify against codebase:

git log --oneline --since="<spec-created-date>" -- <relevant-paths>
  • Verify new files/modules exist
  • Read actual code to verify it matches spec design
  • Check test coverage for spec requirements
  • Run pnpm test

For each checklist item:

  1. Determine if verifiable via code, tests, or manual check
  2. Search codebase for evidence of completion
  3. Mark complete only if implementation is verified

Update status based on findings. Never trust status alone — always verify against actual code.


Managing Specs

Updating Specs

Use during draft/revision phase when requirements are evolving.

Content updates (edit spec file):

  • Add/remove requirements (- [] items)
  • Clarify scope and non-goals
  • Update technical approach
  • Document decisions with rationale

Metadata updates (use tools):

  • Status: lean-spec update <spec> --status <status>
  • Dependencies: lean-spec rel add <spec> --depends-on <other>
  • Parent: lean-spec rel add <child> --parent <parent>

Handling scope creep:

  1. Evaluate fit — does it belong in this spec?
  2. Split if needed — create new spec for out-of-scope work
  3. Link appropriately (parent or depends_on)
  4. Update original non-goals to reference new spec

Organizing Specs

Use when specs need structure, relationships are unclear, or project board is cluttered.

Survey first:

  • board — specs by status
  • board --group-by priority — priority imbalances
  • board --group-by parent — hierarchy
  • stats — overall health

Patterns to look for:

PatternAction
3+ related specs, no parentCreate umbrella and group
Spec can't start without anotherAdd depends_on
Completed spec still in-progressUpdate status
Low-value spec, no activityArchive
Large spec (>2000 tokens)Split into parent + children
Duplicate/overlapping specsMerge or archive redundant one

Status definitions:

StatusMeaning
plannedDefined, work not started
in-progressActive development
completeAll requirements verified
archivedNo longer relevant

Priority levels:

PriorityWhen to Use
criticalBlocking release or breaking production
highImportant for current milestone
mediumStandard priority (default)
lowNice-to-have, backlog

Bulk organization checklist:

  • Review board for misplaced/stale specs
  • Group related specs under umbrellas
  • Add missing depends_on links
  • Correct stale statuses
  • Adjust priorities to match current goals
  • Archive obsolete specs
  • Run validate and stats after changes

Tool Reference

All operations use the lean-spec CLI. Run commands via shell/Bash.

ActionCommand
Project statuslean-spec board
List specslean-spec list
Search specslean-spec search "query"
View speclean-spec view <spec>
Create speclean-spec create <name>
Update statuslean-spec update <spec> --status <status>
View relationshipslean-spec rel <spec>
Set parentlean-spec rel add <child> --parent <parent>
Add childlean-spec rel add <parent> --child <child>
Add dependencylean-spec rel add <spec> --depends-on <other>
Remove dependencylean-spec rel rm <spec> --depends-on <other>
Dependency graphlean-spec deps <spec>
List childrenlean-spec children <parent>
Token countlean-spec tokens <spec>
Validatelean-spec validate
Statslean-spec stats

Choosing Relationship Type

IMPORTANT: Critical decision. Read carefully before linking specs.

Parent/Child (Umbrella Decomposition)

Use when a large initiative is broken into child specs that together form the whole.

  • "This spec is a piece of that umbrella's scope"
  • Child spec doesn't make sense without parent context
  • Parent completes when all children complete

Command: lean-spec rel add <child> --parent <parent>

Example: "CLI UX Overhaul" umbrella → children: "Help System", "Error Messages", "Progress Indicators"

Depends On (Technical Blocker)

Use when a spec cannot start until another independent spec is done first.

  • "This spec needs that spec done first"
  • Both specs are independent work items with separate goals
  • Removal of the dependency doesn't change the spec's scope

Command: lean-spec rel add <spec> --depends-on <other> Remove: lean-spec rel rm <spec> --depends-on <other>

Example: "Search API" depends on "Database Schema Migration"

Decision Flowchart

  1. Is spec B part of spec A's scope? → Parent/child (type=parent)
  2. Does spec B just need spec A finished first? → Depends on (type=depends_on)
  3. Never use both parent AND depends_on for the same spec pair.

Litmus test: If spec A didn't exist, would spec B still make sense?

  • NO → B is a child of A
  • YES → B depends on A

Umbrella Workflow

  1. Create the umbrella spec: lean-spec create <name>
  2. Create each child spec: lean-spec create <name>
  3. Assign children: lean-spec rel add <child> --parent <parent> for each child
  4. Verify structure: lean-spec children <parent>
  5. Add cross-cutting deps if needed: lean-spec rel add <spec> --depends-on <other>

Best Practices

  • Never create spec files manually; use lean-spec create.
  • Always pass all known fields in the create call — never create empty then edit.
  • Keep specs short and focused; split when >2000 tokens.
  • Search first — never create duplicates; link related specs instead.
  • Checkboxes only for actions — use plain lists for non-actionable items.
  • Use parent/child for decomposition, depends_on for blockers.
  • Archive, don't delete — preserve history.
  • Survey before organizing — use board and stats first.
  • Research before implementing — refine specs to avoid surprises.
  • Verify before completingpnpm typecheck, pnpm test, pnpm lint must ALL pass.
  • Document trade-offs and decisions as they happen.
  • Out-of-scope discoveries become new specs, not scope creep.

See detailed guidance in:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.5%
按下载量换算43

Claude

33.57%
按下载量换算43

Cursor

18.22%
按下载量换算23

Gemini CLI

8.95%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/codervisor/lean-spec --skill leanspec-sdd 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills