Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/missions:listThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
List all missions in this project:
List all missions in this project:
ACTIVE="$(cat ./.claude/missions/active-mission.txt 2>/dev/null)"
for s in ./.claude/missions/*/state.json; do
[ -f "$s" ] || continue
id="$(basename "$(dirname "$s")")"
mark=""; [ "$id" = "$ACTIVE" ] && mark=" (active)"
jq -r --arg id "$id" --arg mark "$mark" '"- \($id[0:8])\($mark): \(.state) — updated \(.updatedAt)"' "$s"
done
Show the objective line from each mission's mission.md alongside. If none exist, say so and point at /missions:start.
npx claudepluginhub nicolas-palermo/dotclaude --plugin missionsCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.