원클릭으로
workflow-run
Execute a stored workflow with step-by-step orchestration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Execute a stored workflow with step-by-step orchestration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Show MinnsDB knowledge graph dashboard
Store a learning into MinnsDB for cross-session recall
Query cross-session memory from MinnsDB
Design a workflow via 3-stage Vibe Graphing pipeline
| name | workflow-run |
| description | Execute a stored workflow with step-by-step orchestration |
| user_invocable | true |
Execute a previously created workflow with step-by-step orchestration, tracking progress through MinnsDB's graph.
When the user invokes /workflow-run <workflow_id>:
Load workflow state:
minns workflow status <workflow_id>
This shows all steps, their current states, roles, tasks, and dependencies.
Identify ready steps: Steps whose dependencies are all completed and whose own state is pending or ready.
For each ready step, transition it to running:
minns workflow step-transition <workflow_id> <step_id> --state running
Execute the step based on its role:
code — Read relevant files, make changes, write codearchitect / design — Analyze codebase, produce design decisionstest — Write tests, run them via Bashreview — Use the Explore agent to analyze changesresearch — Use the Explore agent for investigationops — Run infrastructure/deployment commandsReport completion:
minns workflow step-transition <workflow_id> <step_id> --state completed --result "<summary of what was done>"
Or on failure:
minns workflow step-transition <workflow_id> <step_id> --state failed --result "<what went wrong>"
Repeat — check status again and process newly ready steps until all steps are completed or a failure requires intervention.
Capture outcome:
minns learn "Workflow completed: <summary>" --category workflow_result --tags workflow
Steps that are independent (no shared dependencies) can be executed in parallel using subagents:
When a step fails:
step-transition --state failedrunning and try againcompleted with a note and continue/workflow-run 42
/workflow-run 1337