Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
miles990 avatar

Status

  • 1 installs
  • 4 repo stars
  • Updated May 12, 2026
  • miles990/multi-agent-workflow

Displays workflow execution progress, task lists, and a task-dependency DAG, with terminal, JSON, Markdown, and interactive HTML output.

About

A status viewer that shows current workflow stage, task progress, and a dependency DAG for the multi-agent-workflow. A developer uses it to check where a running or historical workflow stands.

  • Renders stage progress bar and per-agent status
  • Outputs terminal, JSON, Markdown+Mermaid, or HTML dashboard

Status by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #2,479 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/miles990/multi-agent-workflow --skill status

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars4
Last updatedMay 12, 2026
Repositorymiles990/multi-agent-workflow

What it does

Displays workflow execution progress, task lists, and a task-dependency DAG, with terminal, JSON, Markdown, and interactive HTML output.

Files

SKILL.mdMarkdownGitHub ↗

Multi-Agent Status v1.0.0

即時查看工作流執行進度與統計

使用方式

/status                    # 顯示當前工作流狀態
/status [workflow-id]      # 顯示特定工作流狀態
/status --list             # 列出所有工作流歷史
/status --dag              # 顯示任務依賴 DAG 圖

Flags: --list | --dag | --json | --html | -o <file>

輸出格式

終端輸出(預設)

╭──────────────────────────────────────────────────────────╮
│  🎯 user-auth-feature                                    │
│  狀態: 執行中 | 品質: 82/100                              │
╰──────────────────────────────────────────────────────────╯

進度: [████████████░░░░░░] 65%

RESEARCH ✅ → PLAN ✅ → TASKS ✅ → IMPLEMENT 🔄 → REVIEW ⏳ → VERIFY ⏳
                                    ↑
                                 當前階段

┌─────────────┬─────────────┬─────────────┬─────────────┐
│ TDD 守護者  │ 安全審計員  │ 效能優化師  │ 維護性專家  │
│     ✅      │     🔄      │     ⏳      │     ⏳      │
└─────────────┴─────────────┴─────────────┴─────────────┘

任務進度: 3/5 完成
├── ✅ TEST-001: 登入功能測試
├── ✅ T-F-001: 實作登入功能
├── 🔄 T-F-002: 實作註冊功能
└── ⏳ T-F-003: 實作密碼重設

Memory: .claude/memory/implement/user-auth/

其他格式

格式說明範例
--json程式化處理/status --json
--markdownMarkdown + Mermaid/status -o report.md
--html互動式 Dashboard/status --html -o dashboard.html

執行方式

執行底層 CLI 工具:

python shared/tools/workflow-status.py {args}

將輸出直接展示給用戶。

參數對應

Skill 參數CLI 參數
/statuspython workflow-status.py
/status user-authpython workflow-status.py --id user-auth
/status --listpython workflow-status.py --list
/status --dagpython workflow-status.py --dag
/status --jsonpython workflow-status.py --json
/status --html -o dash.htmlpython workflow-status.py --html -o dash.html

工作流歷史

/status --list 顯示所有工作流歷史:

╭──────────────────────────────────────────────────────────╮
│  📋 工作流歷史                                           │
╰──────────────────────────────────────────────────────────╯

最近 5 個工作流:

│ ID                  │ 任務            │ 狀態    │ 品質  │ 日期       │
├─────────────────────┼─────────────────┼─────────┼───────┼────────────┤
│ user-auth-feature   │ 用戶認證功能    │ 🔄執行中│ 82    │ 2026-01-26 │
│ api-refactor        │ API 重構        │ ✅完成  │ 91    │ 2026-01-25 │

統計:
  總計: 12 | 完成: 9 | 失敗: 2 | 執行中: 1
  平均品質分數: 84.5

任務 DAG 可視化

/status --dag 生成 Mermaid 任務依賴圖:

graph TD
    subgraph Wave1["Wave 1"]
        TEST001["✅ TEST-001: 登入測試"]
        TEST002["✅ TEST-002: 註冊測試"]
    end

    subgraph Wave2["Wave 2"]
        TF001["✅ T-F-001: 登入功能"]
        TF002["🔄 T-F-002: 註冊功能"]
    end

    subgraph Wave3["Wave 3"]
        TF003["⏳ T-F-003: 密碼重設"]
    end

    TEST001 --> TF001
    TEST002 --> TF002
    TF001 --> TF003
    TF002 --> TF003

    style TEST001 fill:#4ade80
    style TEST002 fill:#4ade80
    style TF001 fill:#4ade80
    style TF002 fill:#fbbf24
    style TF003 fill:#9ca3af

狀態圖示

圖示狀態說明
pending等待執行
🔄running執行中
completed成功完成
failed執行失敗
⏭️skipped已跳過

進度計算

stage_weights:
  RESEARCH: 0.15
  PLAN: 0.15
  TASKS: 0.10
  IMPLEMENT: 0.35
  REVIEW: 0.15
  VERIFY: 0.10

# 公式: progress = sum(weight * stage_completion)

輸出位置

狀態資訊來源:

.claude/memory/
├── workflows/[id]/meta.yaml     # 完整工作流
├── research/[id]/meta.yaml      # 研究階段
├── plans/[id]/meta.yaml         # 計劃階段
├── tasks/[id]/tasks.yaml        # 任務定義
└── implement/[id]/meta.yaml     # 實作階段

相關模組

模組用途
workflow-status.pyCLI 核心工具
dag-validator.pyDAG 驗證 + Mermaid
display.md進度顯示規範

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.