Help us improve
Share bugs, ideas, or general feedback.
From mega-code
Shows MEGA-Code status including pending skills, strategies, and recent pipeline runs. Useful for checking what will be activated or installed.
npx claudepluginhub wisdomgraph/mega-code --plugin mega-codeHow 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.
Shows MEGA-Code commands, output paths, skill/strategy file structure, model options, and usage tips.
Audits Claude Code skills against project state and usage, detects redundancies, consolidates/merges/archives safely with backups, confirmations, and rollbacks.
Scans the environment and repository to catalog installed plugins, agents, skills, and MCP servers across AI CLI platforms. Useful for resource discovery, auditing, and debugging missing capabilities.
Share bugs, ideas, or general feedback.
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 |