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):

  1. ALWAYS use absolute paths (recommended)
  2. Use separate commands (never cd with &&)
  3. Run from repository root with relative paths

NEVER DO THIS:

  • Chain cd with &&: cd <relative-path> && python <script> causes path doubling
  • Assume current directory
  • Use relative paths when current dir is inside skill directory
Related skills
Installs
10
GitHub Stars
65
First Seen
Jan 24, 2026