moonspec-breakdown — community moonspec-breakdown, MoonMind, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

Run Claude Code, Codex, and Gemini CLI with superior safety, resiliency, and observability.

MoonLadderStudios MoonLadderStudios
[9]
[4]
更新于: 4/16/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 3/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Quality floor passed for review
Review Score
3/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Run Claude Code, Codex, and Gemini CLI with superior safety, resiliency, and observability.

核心价值

Run Claude Code, Codex, and Gemini CLI with superior safety, resiliency, and observability.

适用 Agent 类型

Suitable for operator workflows that need explicit guardrails before installation and execution.

赋予的主要能力 · moonspec-breakdown

! 使用限制与门槛

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

moonspec-breakdown 是什么?

Run Claude Code, Codex, and Gemini CLI with superior safety, resiliency, and observability.

如何安装 moonspec-breakdown?

运行命令:npx killer-skills add MoonLadderStudios/MoonMind/moonspec-breakdown。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

moonspec-breakdown 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add MoonLadderStudios/MoonMind/moonspec-breakdown。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    moonspec-breakdown 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

moonspec-breakdown

安装 moonspec-breakdown,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

MoonSpec Breakdown

Use this skill to perform the Moon Spec breakdown workflow.

When To Use

Use this skill when the user wants to turn a broad technical or declarative design into multiple independently testable story candidates.

Good inputs include:

  • A pasted technical design.
  • A declarative design document.
  • A file path to a design artifact.
  • A request to run or reproduce /speckit.breakdown.

Do not use this skill for a single natural-language feature request. Use moonspec-specify for one clearly scoped story.

Inputs

  • Treat the user's request text as the source design unless it names a readable file path.
  • If a file path is provided, resolve it relative to the repo root unless it is absolute, then read it before extracting stories.
  • If no design text or readable design path is provided, stop with: ERROR "No technical design provided".
  • Preserve the original design text verbatim in the breakdown output so later /speckit.specify output can keep it in spec.md **Input**.
  • Preserve the source document reference path whenever the source design came from a file. Use the repo-relative path when possible; otherwise use the absolute path provided by the user. This reference is required downstream so every Jira story can point back to the original declarative document.
  • Do not implement, plan, generate tasks, create Jira issues, create spec.md, or create directories under specs/.

Pre-Breakdown Hooks

Before extracting stories, check for extension hooks:

  1. If .specify/extensions.yml exists, read it and look for hooks.before_breakdown.
  2. If the YAML cannot be parsed or is invalid, skip hook checking silently.
  3. Ignore hooks where enabled is explicitly false; hooks without enabled are enabled.
  4. Do not evaluate non-empty condition expressions. Treat hooks with no condition, null condition, or empty condition as executable. Skip hooks with non-empty conditions.
  5. For each executable hook:
    • Optional hook (optional: true): print:
markdown
1## Extension Hooks 2 3**Optional Pre-Hook**: {extension} 4Command: `/{command}` 5Description: {description} 6 7Prompt: {prompt} 8To execute: `/{command}`
  • Mandatory hook (optional: false): print:
markdown
1## Extension Hooks 2 3**Automatic Pre-Hook**: {extension} 4Executing: `/{command}` 5EXECUTE_COMMAND: {command} 6 7Wait for the result of the hook command before proceeding to the Outline.

If no hooks are registered or .specify/extensions.yml does not exist, skip silently.

Breakdown Workflow

1. Summarize The Design

Summarize the design in a few sentences, focusing on:

  • Technical shape and declarative intent.
  • User or operational outcomes.
  • Implementation boundaries.
  • Explicit non-goals and constraints.
  • Migration, rollout, security, durability, observability, and external interface expectations.

2. Extract Coverage Points

Convert the design into normalized major design points with stable IDs: DESIGN-REQ-001, DESIGN-REQ-002, and so on.

For each coverage point, capture:

  • id
  • title
  • type: requirement, constraint, integration, state-model, artifact, non-goal, security, observability, migration, or another precise type.
  • source_section or source heading when available.
  • explanation

Include these design point classes when present:

  • Purpose and scope.
  • Actors, jobs to be done, workflows, and success signals.
  • Architectural layers and ownership boundaries.
  • Lifecycle behavior, state transitions, and data model fields.
  • Protocol, integration, and public contract choices.
  • Control actions, API surfaces, commands, or UI surfaces.
  • Reset, migration, rollout, and backwards-compatibility semantics.
  • Durability, source-of-truth, and persistence rules.
  • Artifact, observability, logging, and diagnostics expectations.
  • Security, privacy, policy, and operational constraints.
  • Explicit exclusions and non-goals.

3. Draft Candidate Stories

Create the smallest reasonable set of stories that fully covers the design while preserving clarity and independent validation.

Rules:

  • Split only on independently valuable user or operational outcomes.
  • Do not split implementation layers into separate stories unless each layer is independently useful and testable.
  • Exclude pure technical chores unless they directly enable a user-visible or operational outcome.
  • Explicit non-goals and constraints must still be owned by at least one story, either as acceptance criteria or as a dedicated guardrail or contract story.
  • Each story must have one primary concern, one clear delivery surface, and concrete acceptance criteria.

For each story, define:

  • Title.
  • 2-4 word short name for directory naming.
  • Why the story exists.
  • Source document reference: the original declarative document path plus the relevant source section or heading when available.
  • Scope and out of scope.
  • Independent test.
  • Acceptance criteria.
  • Dependencies.
  • Risks or open questions.
  • Owned DESIGN-REQ-* coverage points.

4. Normalize And Order Stories

  • Merge duplicates and near-duplicates.
  • Keep dependencies explicit: story A depends on story B only when A cannot be independently validated first.
  • Rank stories by dependency order, risk, and user value.
  • Preserve stable story IDs, story order, and dependency IDs in stories.json so downstream Jira export can map created Jira issue keys back to ordered stories and optionally create a linear blocker chain.
  • Prefer high-risk contract, state, migration, or integration stories early when they unlock reliable TDD for later stories.

5. Run The Coverage Gate

Create a coverage matrix from every DESIGN-REQ-* point to one or more stories.

A coverage point passes only when at least one story explicitly owns it in story scope, acceptance criteria, requirements, or source design coverage. Implied coverage is not enough.

A point is weakly owned if a reasonable reader cannot tell which story is responsible for implementing or enforcing it.

If any coverage point is uncovered, weakly covered, spread so thinly that ownership is unclear, or covered only by future-work language, revise the stories and rerun the gate.

Do not write specs until the gate result is exactly:

text
1PASS - every major design point is owned by at least one story.

Write Breakdown Output

After the coverage gate passes, write story candidates under docs/tmp/story-breakdowns/.

Use the explicit storyBreakdownPath and storyBreakdownMarkdownPath values from the prompt when present. If they are not present, create a timestamped folder under docs/tmp/story-breakdowns/<short-name>-<YYYYMMDD-HHMMSS>/ and write:

  • stories.json: machine-readable breakdown output for Jira issue creation or later specify.
  • stories.md: human-readable summary.

Never name any breakdown output spec.md. Never write to specs/ during breakdown.

The JSON file must be an object with:

  • source: object containing title, path, referencePath, and the original design text. For file-backed designs, path and referencePath must both contain the original design document path. For pasted designs without a file path, set them to null and use a clear title such as inline user request.
  • extractedAt: ISO-8601 timestamp.
  • coverageGate: exactly PASS - every major design point is owned by at least one story.
  • stories: ordered list of story objects.
  • coverageMatrix: mapping from DESIGN-REQ-* points to story IDs.

Each story object must include:

  • id: stable story ID, such as STORY-001.
  • summary: concise title suitable for a Jira issue summary.
  • description: user-story or task narrative.
  • sourceReference: object containing path, title, sections, and coverageIds. For file-backed designs, path must be the same original design document path from source.referencePath; do not omit it from any story.
  • independentTest: how this story can be validated independently.
  • acceptanceCriteria: concrete acceptance criteria.
  • requirements: functional requirements owned by the story.
  • sourceDesignCoverage: DESIGN-REQ-* points with short ownership explanations.
  • dependencies: story IDs this story truly depends on.
  • assumptions: only when assumptions are used.
  • needsClarification: story-critical unresolved choices, max 3 per story.

The markdown file must include the same substance for human review:

  • Source design title or path.
  • Original source document reference path for the breakdown and for each story.
  • Story extraction date.
  • Design summary.
  • Coverage points.
  • Ordered list of story candidates and their independent test criteria.
  • Coverage matrix mapping DESIGN-REQ-* points to stories.
  • Dependencies between stories.
  • Out-of-scope items and rationale.
  • Coverage gate result.

The gate result must be exactly:

text
1PASS - every major design point is owned by at least one story.

Report

Report completion with:

  • The JSON and markdown breakdown paths.
  • The recommended first story to run through /speckit.specify.
  • Any stories with unresolved [NEEDS CLARIFICATION] markers.
  • Confirmation that no spec.md files or specs/ directories were created.
  • Confirmation that TDD remains the default strategy for downstream /speckit.plan, /speckit.tasks, and /speckit.implement.
  • Confirmation that /speckit.verify should be run after implementation to compare final behavior against the original design preserved through specify.

Post-Breakdown Hooks

After reporting, check .specify/extensions.yml for hooks.after_breakdown using the same parsing, filtering, and condition rules as pre-breakdown hooks. For each executable hook:

  • Optional hook (optional: true): print:
markdown
1## Extension Hooks 2 3**Optional Hook**: {extension} 4Command: `/{command}` 5Description: {description} 6 7Prompt: {prompt} 8To execute: `/{command}`
  • Mandatory hook (optional: false): print:
markdown
1## Extension Hooks 2 3**Automatic Hook**: {extension} 4Executing: `/{command}` 5EXECUTE_COMMAND: {command}

If no hooks are registered or .specify/extensions.yml does not exist, skip silently.

Key Rules

  • One breakdown story candidate equals one future spec.md.
  • Preserve the original technical or declarative design verbatim in the breakdown output for later specify.
  • Every story candidate must carry a sourceReference.path back to the original declarative document when the source came from a file.
  • Prefer vertical user or operational outcomes over technical-layer slices.
  • Extract stable DESIGN-REQ-* coverage points before drafting story candidates.
  • Do not write specs in this skill.
  • Every major design point, constraint, and non-goal must be explicitly owned by at least one story candidate.
  • Acceptance scenarios must support downstream integration tests; functional requirements and edge cases must support downstream unit tests.
  • Do not generate tasks, implementation plans, code, or issues from this skill.
  • Final implementation alignment is checked later with /speckit.verify.

相关技能

寻找 moonspec-breakdown 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具