소스 정보
- 저장소
- ForceInjection/domain-driven-design-skills
- 최근 소스 활동
- 2026년 5월 8일 03:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 25
- 포크
- 7
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ForceInjection/domain-driven-design-skills --skill module-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Conduct deep academic research for philosophy, neuroscience, cognitive science, and theoretical computer science (computability, complexity, AI theory, logic). Use when user asks to: research academic topics, find scholarly papers, conduct literature reviews, analyze citations, synthesize research findings, explore philosophical arguments, investigate consciousness/cognition, study computability/decidability/Turing machines, or analyze academic debates. Triggers on: 'research papers', 'literature review', 'academic sources', 'scholarly articles', 'philosophy of mind', 'computability theory', 'neuroscience studies', 'find papers on', 'what does the research say'.
Create clear action plans with steps, success criteria, and risk awareness. Use before implementing features, making changes, starting projects, or anytime you need a roadmap to success. Triggers on "plan this", "how should we approach", "what's the strategy", "steps to complete", or when facing complex multi-step work.
Add keyboard navigation to a feature using CommandRegistryService. Use when implementing keyboard shortcuts, vim-style navigation, or hotkeys for a page or component.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | module-workflow |
| description | Implementation orchestrator for stages 2-6 (Foundation through Validation) |
| allowed-tools | ["Task","Bash","Read","Write","Edit"] |
| preconditions | ["architecture.md must exist (from /plan)","plan.md must exist (from /plan)","Status must be 🚧 Stage 1 OR resuming from 🚧 Stage 2+","Module must NOT be ✅ Working or 📦 Installed (use /improve instead)"] |
Purpose: Pure orchestrator for stages 2-6 of VCV Rack module implementation. This skill NEVER implements directly - it always delegates to specialized subagents and presents decision menus after each stage completes.
This skill orchestrates module implementation stages 2-6. Stages 0-1 (Research & Planning) are handled by the module-planning skill.
Implementation Stages:
CRITICAL ORCHESTRATION RULES:
Stages 2-5 MUST use Task tool to invoke subagents - NEVER implement directly
After EVERY subagent return (whether full stage or phase completion), orchestrator MUST:
This applies to:
Note: Number of phases determined by plan.md - could be 4.1-4.2, or 4.1-4.3, or more depending on complexity
Stage 6 can run directly in orchestrator or via validator subagent
All subagents receive Required Reading (vcv-critical-patterns.md) to prevent repeat mistakes
Subagents NEVER commit - they only implement and return JSON report
Each stage is fully documented in its own reference file in references/ subdirectory.
Before starting, verify contracts from module-planning:
test -f "modules/$MODULE_NAME/.ideas/architecture.md"
test -f "modules/$MODULE_NAME/.ideas/plan.md"
test -f "modules/$MODULE_NAME/.ideas/creative-brief.md"
If any missing, BLOCK with message:
[ModuleName] is missing required planning documents.
Missing files will be listed here:
- architecture.md (from Stage 0)
- plan.md (from Stage 1)
- creative-brief.md (from ideation)
Run /plan [ModuleName] to complete planning stages 0-1.
grep "^### $MODULE_NAME$" MODULES.md
Verify status is appropriate:
[ModuleName] needs planning before implementation.
Run /plan [ModuleName] to complete stages 0-1.
[ModuleName] is already complete.
Use /improve [ModuleName] to make changes.
Purpose: Handle workflow resume from .continue-here.md handoff file.
When invoked via context-resume skill or /continue command:
Check if handoff file exists:
if [ ! -f "modules/${MODULE_NAME}/.continue-here.md" ]; then
echo "No handoff file found. Starting fresh at Stage 2."
CURRENT_STAGE=2
fi
Parse handoff metadata:
CURRENT_STAGE=$(grep "^stage:" modules/${MODULE_NAME}/.continue-here.md | awk '{print $2}')
NEXT_ACTION=$(grep "^next_action:" modules/${MODULE_NAME}/.continue-here.md | awk '{print $2}')
NEXT_PHASE=$(grep "^next_phase:" modules/${MODULE_NAME}/.continue-here.md | awk '{print $2}')
Determine resume behavior:
Always use orchestration pattern:
Purpose: Pure orchestration dispatcher that ONLY invokes subagents via Task tool.
Entry point: Called by /implement command or /continue command after module-planning completes.
This skill is a PURE ORCHESTRATOR:
# Check if handoff file exists (resuming)
if [ -f "modules/${MODULE_NAME}/.continue-here.md" ]; then
# Parse stage from handoff YAML frontmatter
CURRENT_STAGE=$(grep "^stage:" modules/${MODULE_NAME}/.continue-here.md | awk '{print $2}')
echo "Resuming from Stage ${CURRENT_STAGE}"
else
# Starting fresh after planning
CURRENT_STAGE=2
echo "Starting implementation at Stage 2"
fi
See references/state-management.md for checkStagePreconditions() function.
async function dispatchStage(moduleName, stageNumber) {
// Check preconditions
const preconditionCheck = checkStagePreconditions(moduleName, stageNumber)
if (!preconditionCheck.allowed) {
console.log(`✗ BLOCKED: ${preconditionCheck.reason}`)
console.log(`Action: ${preconditionCheck.action}`)
return { status: 'blocked', reason: preconditionCheck.reason }
}
// ALWAYS invoke subagents via Task tool for stages 2-5
switch(stageNumber) {
case 2:
// Invoke foundation-agent subagent
return await invokeSubagent('foundation-agent', {
moduleName,
contracts: loadContracts(moduleName),
requiredReading: 'vcv-critical-patterns.md'
})
case 3:
// Invoke shell-agent subagent
return await invokeSubagent('shell-agent', {
moduleName,
contracts: loadContracts(moduleName),
requiredReading: 'vcv-critical-patterns.md'
})
:
(, {
moduleName,
: (moduleName),
:
})
:
(, {
moduleName,
: (moduleName),
:
})
:
(moduleName)
:
{ : , : }
}
}
async function runWorkflow(moduleName, startStage = 2) {
let currentStage = startStage
let shouldContinue = true
while (shouldContinue && currentStage <= 6) {
console.log(`\n━━━ Stage ${currentStage} ━━━\n`)
// ALWAYS invoke subagent (never implement directly)
const result = await dispatchStage(moduleName, currentStage)
if (result.status === 'blocked' || result.status === 'error') {
console.log(`\nWorkflow blocked: ${result.reason}`)
return result
}
// CHECKPOINT: Commit, update state, present menu
await commitStage(moduleName, currentStage, result.description)
await updateHandoff(moduleName, currentStage + 1, result.completed, result.nextSteps)
await updateModuleStatus(moduleName, `🚧 Stage ${currentStage}`)
await updateModuleTimeline(moduleName, currentStage, result.description)
// Present decision menu and WAIT for user
const choice = ({
: currentStage,
: result.,
: moduleName
})
(choice === || choice === ) {
currentStage++
} (choice === ) {
.()
shouldContinue =
} {
(choice, moduleName, currentStage)
}
}
(currentStage > ) {
.()
(moduleName, )
}
}
Usage:
// From /implement command (after planning complete):
runWorkflow(moduleName, 2)
// From /continue command:
const handoff = readHandoffFile(moduleName)
const resumeStage = handoff.stage
runWorkflow(moduleName, resumeStage)
Implementation stages reference files (Stages 0-1 removed, now in module-planning skill):
Note: Stage reference files contain subagent prompts and context. The orchestrator reads these files to construct Task tool invocations but never implements stage logic directly.
Invoked by:
/implement command (after module-planning completes)context-resume skill (when resuming implementation stages)/continue command (for stages 2-6)ALWAYS invokes (via Task tool):
foundation-agent subagent (Stage 2) - REQUIRED, never implement directlyshell-agent subagent (Stage 3) - REQUIRED, never implement directlydsp-agent subagent (Stage 4) - REQUIRED, never implement directlygui-agent subagent (Stage 5) - REQUIRED, never implement directlyvalidator subagent (Stage 6) - Optional, can run directlyAlso invokes:
build-automation skill (build coordination across stages)module-testing skill (validation after stages 4, 5, 6)module-lifecycle skill (if user chooses to install after Stage 6)Reads (contracts from module-planning):
architecture.md (DSP specification from Stage 0)plan.md (implementation strategy from Stage 1)creative-brief.md (vision from ideation)parameter-spec.md (parameter definitions)Creates:
.continue-here.md (handoff file for checkpoints)CHANGELOG.md (Stage 6)presets/ directory (Stage 6)Updates:
.continue-here.md (after each stage completes)If contract files missing before Stage 2:
Block and instruct user to run /plan [ModuleName] to complete stages 0-1.
If build fails during subagent execution: Subagent returns error. Orchestrator presents 4-option menu:
If tests fail: Present menu with investigation options. Do NOT auto-proceed to next stage.
If subagent fails to complete: Present menu allowing retry, manual intervention, or workflow pause.
If git staging fails: Continue anyway, log warning.
Workflow is successful when:
CRITICAL ORCHESTRATION REQUIREMENTS:
commitStage() from state-management.mdWhen executing this skill:
Common pitfalls to AVOID: