Stats
Actions
Tags
From super-gsd
Use this when you need a map of the current codebase structure — invokes gsd-map-codebase to analyse and document the project layout.
How this skill is triggered — by the user, by Claude, or both
Slash command
/super-gsd:sg-exploreThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<language>
<execution_context> Self-contained. Delegates entirely to gsd-map-codebase Skill (terminal action). </execution_context>
0. **Add `.planning/` to `.gitignore` (idempotent).**Ensure the project's .gitignore excludes the .planning/ directory while keeping .planning/codebase/ tracked:
if ! grep -qxF '.planning/' .gitignore 2>/dev/null; then
printf '\n.planning/\n!.planning/codebase/\n' >> .gitignore
fi
Skill(skill="gsd-map-codebase", args="")
<success_criteria>
npx claudepluginhub gyuha/super-gsd --plugin super-gsdGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.