소스 정보
- 저장소
- 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 run-manager명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | run-manager |
| description | Manage FABER workflow run lifecycle - create, query, resume, rerun runs |
| model | claude-opus-4-5 |
Every FABER workflow execution is a "run" identified by a unique run_id in the format:
{org}/{project}/{uuid}
This enables:
<CRITICAL_RULES> YOU MUST:
YOU MUST NOT:
Generate a new unique run identifier.
Script: scripts/generate-run-id.sh
Parameters:
org (optional): Organization name (auto-detected from git)project (optional): Project name (auto-detected from git)Returns:
{
"status": "success",
"operation": "generate-id",
"run_id": "fractary/claude-plugins/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
Usage:
RUN_ID=$(scripts/generate-run-id.sh)
Initialize a new run directory with state and metadata.
Script: scripts/init-run-directory.sh
Parameters:
run_id (required): Full run identifierwork_id (required): Work item IDtarget (optional): Target artifact nameworkflow (optional): Workflow ID (default: "default")autonomy (optional): Autonomy level (default: "guarded")phases (optional): Comma-separated phases to executeparent_run (optional): Parent run ID (for resume)rerun_of (optional): Original run ID (for rerun)Returns:
{
"status": "success",
"operation": "init-run-directory",
"run_id": "fractary/claude-plugins/a1b2c3d4-...",
"run_dir": ".fractary/plugins/faber/runs/fractary/claude-plugins/a1b2c3d4-...",
"work_id": "220",
"files_created": [
".../metadata.json",
".../state.json",
".../events/.next-id"
]
}
Creates:
.fractary/plugins/faber/runs/{run_id}/
├── state.json # Workflow state
├── metadata.json # Run parameters and context
└── events/
└── .next-id # Event sequence counter
Emit a workflow event to the run's event log.
Script: scripts/emit-event.sh
Parameters:
run_id (required): Run identifiertype (required): Event type (see Event Types)phase (optional): Current phasestep (optional): Current stepstatus (optional): Event statusmessage (optional): Human-readable messagedata (optional): JSON metadataartifacts (optional): JSON array of artifactsEvent Types:
workflow_start, workflow_complete, workflow_error, workflow_cancelled, workflow_resumed, workflow_rerunphase_start, phase_skip, phase_complete, phase_errorstep_start, step_complete, step_error, step_retryartifact_create, artifact_modifycommit_create, branch_create, pr_create, pr_mergecheckpoint, skill_invoke, decision_point, retry_loop_enter, retry_loop_exitReturns:
{
"status": "success",
"operation": "emit-event",
"event_id": 15,
"type": "step_complete",
"run_id": "...",
"timestamp": "2025-12-04T10:15:00Z",
"event_path": ".../events/015-step_complete.json"
}
Get run metadata and current state.
Script: scripts/get-run.sh
Parameters:
run_id (required): Run identifierinclude_events (optional): Include event count (default: false)Returns:
{
"status": "success",
"operation": "get-run",
"run_id": "...",
"metadata": { ... },
"state": { ... },
"event_count": 45
}
List runs for a project or work item.
Script: scripts/list-runs.sh
Parameters:
work_id (optional): Filter by work itemstatus (optional): Filter by status (pending, running, completed, failed)limit (optional): Max results (default: 20)org (optional): Organization filterproject (optional): Project filterReturns:
{
"status": "success",
"operation": "list-runs",
"runs": [
{
"run_id": "...",
"work_id": "220",
"status": "completed",
"created_at": "2025-12-04T10:00:00Z",
"completed_at": "2025-12-04T11:30:00Z"
}
],
"total": 5
}
Prepare a run for resumption from failure point.
Script: scripts/resume-run.sh
Parameters:
run_id (required): Run to resumeReturns:
{
"status": "success",
"operation": "resume-run",
"run_id": "...",
"resumable": true,
"resume_from": {
"phase": "build",
"step": "implement",
"event_id": 12
},
"completed_phases": ["frame", "architect"],
"completed_steps": {
"build": ["setup"]
}
}
Validation:
Create a new run based on an existing run with optional parameter changes.
Script: scripts/rerun-run.sh
Parameters:
run_id (required): Original run to rerunwork_id (optional): Override work_idautonomy (optional): Override autonomy levelphases (optional): Override phasesReturns:
{
"status": "success",
"operation": "rerun-run",
"original_run_id": "...",
"new_run_id": "fractary/claude-plugins/new-uuid-...",
"parameter_changes": {
"autonomy": { "from": "guarded", "to": "autonomous" }
}
}
Rebuild state.json from event history (for corruption recovery).
Script: scripts/reconstruct-state.sh
Parameters:
run_id (required): Run to reconstructdry_run (optional): Show changes without applyingReturns:
{
"status": "success",
"operation": "reconstruct-state",
"run_id": "...",
"events_processed": 45,
"state_diff": { ... },
"applied": true
}
Consolidate event files to JSONL for archival.
Script: scripts/consolidate-events.sh
Parameters:
run_id (required): Run to consolidateoutput (optional): Output path (default: events.jsonl in run dir)Returns:
{
"status": "success",
"operation": "consolidate-events",
"run_id": "...",
"events_consolidated": 45,
"output_path": ".../events.jsonl",
"size_bytes": 15234
}
When invoked with an operation:
Parse Request
Validate Context
Execute Operation
Return Result
<ERROR_HANDLING>
| Error | Code | Recovery |
|---|---|---|
| Run not found | RUN_NOT_FOUND | Check run_id, use list-runs |
| Run already exists | RUN_EXISTS | Use existing or generate new ID |
| Invalid run_id format | INVALID_RUN_ID | Use generate-id |
| Run not resumable | NOT_RESUMABLE | Check run status |
| Event write failed | EVENT_WRITE_ERROR | Check disk space, retry |
| State corruption | STATE_CORRUPTED | Use reconstruct-state |
| </ERROR_HANDLING> |
<OUTPUT_FORMAT>
🎯 STARTING: Run Manager
Operation: {operation}
Run ID: {run_id}
───────────────────────────────────────
[... execution ...]
✅ COMPLETED: Run Manager
{operation-specific summary}
───────────────────────────────────────
</OUTPUT_FORMAT>
<DIRECTORY_STRUCTURE>
.fractary/plugins/faber/runs/
└── {org}/
└── {project}/
└── {uuid}/
├── state.json # Current workflow state
├── metadata.json # Run parameters & context
└── events/
├── .next-id # Sequence counter
├── 001-workflow_start.json
├── 002-phase_start.json
├── ...
└── 045-workflow_complete.json
</DIRECTORY_STRUCTURE>
<STATE_SCHEMA>
{
"run_id": "org/project/uuid",
"work_id": "220",
"workflow_version": "2.1",
"status": "in_progress",
"current_phase": "build",
"last_event_id": 15,
"started_at": "2025-12-04T10:00:00Z",
"updated_at": "2025-12-04T10:30:00Z",
"completed_at": null,
"phases": {
"frame": {"status": "completed", "steps": [...]},
"architect": {"status" ...
...
</STATE_SCHEMA>
<METADATA_SCHEMA>
{
"run_id": "org/project/uuid",
"work_id": "220",
"target": "run-id-system",
"workflow_id": "default",
"autonomy": "guarded",
"source_type": "github",
"phases": ["frame", "architect", "build", "evaluate", "release"],
"created_at": "2025-12-04T10:00:00Z",
"created_by": "developer",
"relationships": {
"parent_run_id": null,
"rerun_of":
</METADATA_SCHEMA>
## Used By - `faber-director`: Generates run_id, initializes run - `faber-manager`: Emits events, updates state - `faber:run` command: Resume and rerun operationsfaber-state skill: State updates go through run-managerConduct 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 직업 분류 기준