Install
openclaw skills install gitignore-syncgitignore-sync combines gitignore.io templates with your repo context to produce a cleaner `.gitignore` with fewer overlooked cases. It generates `.gitignore...
openclaw skills install gitignore-syncGenerate high-confidence .gitignore rules from real repo signals and gitignore.io, then update safely via a managed block so manual rules stay untouched.
Use scripts/update_gitignore.py as the only execution path.
Do not fetch from the API directly in ad-hoc commands.
Do not manually compose or rewrite .gitignore when this skill is selected.
scripts/update_gitignore.py with --prompt-text and/or --services.https://www.toptal.com/developers/gitignore/api/<templates>..gitignore..gitignore.From the target repository root, run:
python3 <skill-path>/scripts/update_gitignore.py \
--prompt-text "create .gitignore for flutter firebase vscode" \
--repo .
Use explicit templates when the user names exact services:
python3 <skill-path>/scripts/update_gitignore.py \
--services flutter,firebase,visualstudiocode \
--repo .
--prompt-text and --services when available.--rules-file for offline/local testing when network access is blocked.