| name | sg-explore |
| description | Use this when you need a map of the current codebase structure — invokes gsd-map-codebase to analyse and document the project layout. |
Detect the user's input language and respond in that language throughout this skill's output.
- Korean input → respond in Korean
- English input → respond in English
- Mixed input → match the dominant language
Invoke the gsd-map-codebase Skill to analyse and map the current codebase. No arguments required.
<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
- Session control transfers to the skill; no steps execute after this point:
Skill(skill="gsd-map-codebase", args="")
<success_criteria>
- gsd-map-codebase Skill is invoked exactly once.
- 실행 전 .gitignore에 .planning/ 항목이 없으면 자동으로 추가된다 (멱등).
</success_criteria>