gemini-cli-docs
Installation
SKILL.md
Gemini CLI Documentation Skill
CRITICAL: Path Doubling Prevention - MANDATORY
ABSOLUTE PROHIBITION: NEVER use cd with && in PowerShell when running scripts from this skill.
The Problem: If your current working directory is already inside the skill directory, using relative paths causes PowerShell to resolve paths relative to the current directory instead of the repository root, resulting in path doubling.
REQUIRED Solutions (choose one):
- ALWAYS use absolute paths (recommended)
- Use separate commands (never
cdwith&&) - Run from repository root with relative paths
NEVER DO THIS:
- Chain
cdwith&&:cd <relative-path> && python <script>causes path doubling - Assume current directory
- Use relative paths when current dir is inside skill directory