crd — for Claude Code prd-breakdown-execute, community, for Claude Code, ide skills, project <path>, status <slug>, project, If different, invoke context update, **If not exists:**, feature-add

v1.0.0

Über diesen Skill

Geeigneter Einsatz: Ideal for AI agents that need crd orchestration skill. Lokalisierte Zusammenfassung: # CRD Orchestration Skill You orchestrate the Change Request Document workflow for brownfield projects. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Funktionen

CRD Orchestration Skill
Argument Required Description
---------- ---------- -------------
--project <path Yes Path to target project
Description text No Initial change description

# Core Topics

vinzenz vinzenz
[51]
[2]
Updated: 4/1/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

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

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
66
Canonical Locale
en
Detected Body Locale
en

Geeigneter Einsatz: Ideal for AI agents that need crd orchestration skill. Lokalisierte Zusammenfassung: # CRD Orchestration Skill You orchestrate the Change Request Document workflow for brownfield projects. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Warum diese Fähigkeit verwenden

Empfehlung: crd helps agents crd orchestration skill. CRD Orchestration Skill You orchestrate the Change Request Document workflow for brownfield projects. This AI agent skill supports Claude Code, Cursor, and Windsurf

Am besten geeignet für

Geeigneter Einsatz: Ideal for AI agents that need crd orchestration skill.

Handlungsfähige Anwendungsfälle for crd

Anwendungsfall: Applying CRD Orchestration Skill
Anwendungsfall: Applying Argument Required Description
Anwendungsfall: Applying ---------- ---------- -------------

! Sicherheit & Einschränkungen

  • Einschraenkung: Priority (must-have, should-have, could-have)
  • Einschraenkung: Requires repository-specific context from the skill documentation
  • Einschraenkung: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is crd?

Geeigneter Einsatz: Ideal for AI agents that need crd orchestration skill. Lokalisierte Zusammenfassung: # CRD Orchestration Skill You orchestrate the Change Request Document workflow for brownfield projects. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install crd?

Run the command: npx killer-skills add vinzenz/prd-breakdown-execute/crd. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for crd?

Key use cases include: Anwendungsfall: Applying CRD Orchestration Skill, Anwendungsfall: Applying Argument Required Description, Anwendungsfall: Applying ---------- ---------- -------------.

Which IDEs are compatible with crd?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for crd?

Einschraenkung: Priority (must-have, should-have, could-have). Einschraenkung: Requires repository-specific context from the skill documentation. Einschraenkung: Works best when the underlying tools and dependencies are already configured.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add vinzenz/prd-breakdown-execute/crd. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use crd immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

crd

# CRD Orchestration Skill You orchestrate the Change Request Document workflow for brownfield projects. This AI agent skill supports Claude Code, Cursor, and

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

CRD Orchestration Skill

You orchestrate the Change Request Document workflow for brownfield projects. You coordinate context management, change capture, impact analysis, and CRD generation.

Arguments

ArgumentRequiredDescription
--project <path>YesPath to target project
Description textNoInitial change description
--listNoList existing CRDs
--status <slug>NoCheck CRD status

Orchestration Flow

Phase 1: Validation

  1. Parse arguments, extract --project path
  2. Verify path exists and is a git repository:
    bash
    1git -C {project_path} rev-parse --git-dir
  3. If invalid, report error and exit

Phase 2: Context Management

Check for PROJECT.md at {project_path}/PROJECT.md:

If exists:

bash
1# Read and extract last-context-hash 2cat {project_path}/PROJECT.md | grep -A1 "<last-context-hash>"

Compare with current HEAD:

bash
1git -C {project_path} rev-parse HEAD

If different, invoke context update:

/crd-context-update --project {project_path}

If not exists:

/crd-investigate --project {project_path} --depth medium

Phase 3: Handle List/Status Flags

If --list:

bash
1find {project_path}/docs/crd -name "*.md" -type f 2>/dev/null

Parse and display CRDs, then exit.

If --status <slug>: Read {project_path}/docs/crd/{slug}.md, extract status, display, exit.

Phase 4: Change Capture

If description provided, use it. Otherwise prompt user.

Classify change type based on keywords:

  • "add", "create", "new" → feature-add
  • "change", "update", "modify" → feature-modify
  • "remove", "delete", "drop" → feature-remove
  • "refactor", "restructure" → refactor

Confirm type with user.

Capture:

  • Summary (1-2 sentences)
  • Motivation
  • Priority

Phase 5: Impact Analysis

Invoke impact analysis skill:

/crd-impact-analysis --project {project_path} --type {change_type} --description "{description}"

Present results to user for confirmation.

Phase 6: Requirements

Interactively capture requirements:

  • ID
  • Description
  • Priority (must-have, should-have, could-have)

Optionally capture acceptance criteria (Given/When/Then).

Phase 7: Generate CRD

Create directory if needed:

bash
1mkdir -p {project_path}/docs/crd

Write CRD file at {project_path}/docs/crd/{slug}.md:

xml
1<crd> 2 <meta> 3 <name>{name}</name> 4 <slug>{slug}</slug> 5 <type>{type}</type> 6 <created>{date}</created> 7 <status>ready</status> 8 </meta> 9 10 <context> 11 <project-ref>PROJECT.md</project-ref> 12 <related-features> 13 {from impact analysis} 14 </related-features> 15 </context> 16 17 <change-request> 18 <summary>{summary}</summary> 19 <motivation>{motivation}</motivation> 20 </change-request> 21 22 <impact-analysis> 23 {from impact analysis skill} 24 </impact-analysis> 25 26 <requirements> 27 {captured requirements} 28 </requirements> 29 30 <acceptance-criteria> 31 {captured criteria} 32 </acceptance-criteria> 33</crd>

Phase 8: Completion

Report success with next steps:

  • Path to generated CRD
  • Command to run /breakdown
  • Command to run /execute

Sub-Skills Used

SkillPurpose
/crd-investigateFull codebase investigation for PROJECT.md
/crd-context-updateIncremental context update via git diff
/crd-impact-analysisAnalyze change impact on existing code

Error Handling

ErrorAction
Missing --projectDisplay usage and exit
Invalid pathReport error and exit
Not a git repoReport error and exit
Context parse errorOffer to regenerate
Impact analysis failureShow partial results, continue

State Management

CRD workflow is stateless per invocation. All state is stored in:

  • PROJECT.md - Context with hash
  • docs/crd/*.md - CRD documents

No execute-state.json style tracking needed for CRD creation.

Verwandte Fähigkeiten

Looking for an alternative to crd or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler