askill
mycelium-status

mycelium-statusSafety 95Repository

Displays current workflow state, progress dashboard, and active plans. Use when user says "show status", "what's the progress", "where are we", "list tasks", "show current state", or needs overview of work in progress. Supports --verbose for detailed output including metrics and checkpoints.

0 stars
1.2k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Workflow Status

Display current workflow state and progress dashboard.

Your Task

  1. Load current state:

    • Read .mycelium/state.json
    • Read plans[] registry from session state
    • Read the active plan file (from current_track.plan_file) to get task breakdown
    • Get git status and recent commits
  2. Discover capabilities (scan plugin cache filesystem - do NOT hardcode or guess):

    Skills & Agents from plugins - Read ~/.claude/plugins/installed_plugins.json. For each plugin:

    • pluginName = part before @ in key (e.g., mycelium from mycelium@jasonhch-plugins)
    • installPath = first array element's installPath
    • Skills: glob {installPath}/skills/*/SKILL.md, read YAML frontmatter for name/description. Fully-qualified: {pluginName}:{name}
    • Agents: glob {installPath}/agents/**/*.md, read YAML frontmatter for name/description. Fully-qualified: {pluginName}:{name}

    Built-in agents (NOT in plugin cache) - Read Task tool description for: Bash, general-purpose, Explore, Plan, claude-code-guide, statusline-setup.

    MCP Tools (NOT in plugin cache) - Check system prompt for any MCP server tools.

  3. Display dashboard:

    πŸ“Š Mycelium Status
    
    Current Track: {track_id}
    Phase: {current_phase}
    
    Plans: {total} total ({active} active, {paused} paused, {completed} completed)
      Active: {track_id} ({completed}/{total} tasks)
      {other plans listed with status if any}
    
    Active Plan Tasks:
    - βœ… Completed: {count} ({percentage}%)
    - πŸ”„ In Progress: {count}
    - ⏳ Pending: {count}
    - 🚫 Blocked: {count}
    
    Task Summary (from active plan file):
    - [x] 1.1: {task title}
    - [~] 1.2: {task title} (in progress)
    - [ ] 1.3: {task title}
    - ...
    
    Available Skills: {count} skills discovered
    Available Agents: {count} agents discovered
    Available MCP Tools: {count} MCP tools discovered
    
    Recent Activity:
    - {recent commits}
    
    Next Action: {suggested_command}
    

    Read plans[] from state.json for the plan summary. If plans[] is missing, fall back to listing .mycelium/plans/*.md files.

  4. Suggest next action based on state:

    • No plan β†’ /mycelium-plan
    • Plan exists, tasks pending β†’ /mycelium-work
    • All tasks complete β†’ /mycelium-review
    • Review complete β†’ /mycelium-capture
    • Blockers detected β†’ Address blockers or use /mycelium-continue
  5. Verbose mode (--verbose):

    • Full plan list with status, track_id, creation date, and task progress (from plans[])
    • Detailed task breakdown by phase
    • Full list of discovered skills with descriptions
    • Full list of discovered agents with capabilities
    • Full list of discovered MCP tools with descriptions
    • Git status and stashes
    • Test coverage metrics
    • Context usage estimate
    • Recent solutions captured

Quick Example

/mycelium-status       # Standard view
/mycelium-status -v    # Verbose view with details

Important

  • Read-only operation - Does not modify any state
  • Fast execution - Should complete in <2 seconds
  • Actionable - Always shows clear next steps
  • Visual - Uses box drawing and symbols for clarity

References

Install

Download ZIP
Requires askill CLI v1.0+β–Ά

AI Quality Score

82/100Analyzed 2/24/2026

Well-structured workflow status skill with clear trigger phrases, comprehensive step-by-step instructions, and good use of formatting. Includes plugin/agent discovery logic, decision-based next action suggestions, and verbose mode. Located in dedicated skills folder with proper metadata, tags, and documentation link. Slightly project-specific but demonstrates good reference patterns with reusable discovery logic. High actionability and clarity, read-only safe operation."

95
85
70
85
85

Metadata

Licenseunknown
Version0.9.0
Updated2/13/2026
Publisherjason-hchsieh

Tags

dashboardprogressstatus