npx claudepluginhub aphrody-code/bun-agentShow the Bun agent's current state: Execute this and present the results.
/statusDisplay Conductor project status including overall progress, active tracks summary, and next actions. Optional [track-id] [--detailed] for per-track task details and blockers.
/statusDisplays compact planning status from task_plan.md: current phase and progress, phase list with icons, error count, and planning file checks.
/statusShows active and recent Codex jobs for this repository in a compact Markdown table, including review-gate status. Pass job ID for full details; supports --wait, --timeout-ms, --all.
/statusDisplays current design system state from .interface-design/system.md including direction, foundation, depth, tokens, patterns, and last updated time. Suggests setup options if no system found.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
/statusDisplays status of tasks in the orchestration system, including summaries, distributions, detailed views, timelines, and velocity reports with filters for date, status, agent, priority, and type.
Show the Bun agent's current state:
DATA="${CLAUDE_PLUGIN_DATA}"
MEM="$DATA/memory"
SESS="$DATA/sessions"
echo "=== Bun Agent Status ==="
echo "Data dir: $DATA"
echo ""
echo "--- Memory ---"
if [ -d "$MEM" ]; then
echo "Files: $(ls "$MEM"/*.md 2>/dev/null | wc -l) topic files"
if [ -f "$MEM/MEMORY.md" ]; then
echo "Index (MEMORY.md):"
cat "$MEM/MEMORY.md"
else
echo "(no MEMORY.md index)"
fi
echo ""
if [ -f "$MEM/.consolidate-lock" ]; then
echo "Last dream: $(stat -c '%y' "$MEM/.consolidate-lock" 2>/dev/null || stat -f '%Sm' "$MEM/.consolidate-lock" 2>/dev/null)"
else
echo "Last dream: never"
fi
else
echo "(no memory directory — run /bun-agent:dream to initialize)"
fi
echo ""
echo "--- Sessions ---"
if [ -d "$SESS" ]; then
COUNT=$(ls "$SESS"/*.jsonl 2>/dev/null | wc -l)
echo "Total: $COUNT session files"
echo "Recent:"
ls -lt "$SESS"/*.jsonl 2>/dev/null | head -5
else
echo "(no sessions recorded yet)"
fi
Execute this and present the results.