بنقرة واحدة
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 المهني
| 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
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