From mega-code
Shows MEGA-Code status including pending skills, strategies, and recent pipeline runs. Useful for checking what will be activated or installed.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mega-code:statusThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Show current MEGA-Code status and pending items.
Show current MEGA-Code status and pending items.
MEGA_DIR="$(cd "${CLAUDE_SKILL_DIR}/../.." && pwd)"
export MEGA_CODE_AGENT="claude"
uv run --directory "$MEGA_DIR" python -m mega_code.client.check_auth
If the auth check fails (non-zero exit), show the output to the user and stop.
uv run --directory "$MEGA_DIR" mega-code pipeline-status 2>/dev/null || true
ls -la ~/.local/share/mega-code/data/pending-skills/ ~/.local/share/mega-code/data/pending-strategies/ 2>/dev/null || echo "No pending items"
Uses ls checks to avoid zsh glob errors on empty directories.
SKILLS_DIR="$HOME/.local/share/mega-code/data/pending-skills"
STRATS_DIR="$HOME/.local/share/mega-code/data/pending-strategies"
echo "=== Pending Skills ==="
if [ -d "$SKILLS_DIR" ] && [ "$(ls -A "$SKILLS_DIR" 2>/dev/null)" ]; then
for dir in "$SKILLS_DIR"/*/; do
name=$(basename "$dir")
desc=$(grep -m1 "description:" "$dir/SKILL.md" 2>/dev/null | cut -d: -f2- | head -c 60)
echo " $name:$desc"
done
else
echo " (none)"
fi
echo "=== Pending Strategies ==="
if [ -d "$STRATS_DIR" ] && [ "$(ls -A "$STRATS_DIR" 2>/dev/null)" ]; then
for file in "$STRATS_DIR"/*.md; do
name=$(basename "$file" .md)
desc=$(grep -m1 "^# " "$file" | cut -c3- | head -c 60)
echo " $name: $desc"
done
else
echo " (none)"
fi
| Type | Pending Location | Installed Location |
|---|---|---|
| Skills | ~/.local/share/mega-code/data/pending-skills/{name}/ | .claude/skills/{name}/SKILL.md |
| Strategies | ~/.local/share/mega-code/data/pending-strategies/{name}.md | .claude/rules/mega-code/{name}.md |
npx claudepluginhub wisdomgraph/mega-code --plugin mega-codeShows MEGA-Code commands, output paths, skill/strategy file structure, model options, and usage tips.
Scans and reports health of all Claude Code skills across scopes, detecting duplicates, broken symlinks, missing frontmatter, and stale plugins. Use for skill inventory and maintenance.
Manages and maintains Claude Code project configuration files (CLAUDE.md, AGENTS.md). Provides workflows to update, verify, and check project setup for improvements.