feat: add skill subcommand for LLM-readable reference and fix shell integration docs
All checks were successful
Release / release (push) Successful in 1m40s

- New gitnow skill command outputs a comprehensive machine-readable reference
- Fix eval quoting in README: eval $(…) → eval "$(…)"
- Add homebrew caveats with shell integration instructions
- Add after_help hint directing LLMs to gitnow skill
This commit is contained in:
2026-03-24 11:35:05 +01:00
parent 451fbe1640
commit 2f0303aada
5 changed files with 285 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ cargo binstall gitnow
gitnow
# Or install gitnow scripts (in your .bashrc, .zshrc) this will use native shell commands to move you around
eval $(gitnow init zsh)
eval "$(gitnow init zsh)"
git-now # Long
gn # Short alias
```
@@ -165,7 +165,7 @@ Commands that navigate to a directory (`gitnow`, `gitnow project`, `gitnow proje
The recommended way to use gitnow is with shell integration, which uses a **chooser file** to communicate the selected path back to your shell:
```bash
eval $(gitnow init zsh)
eval "$(gitnow init zsh)"
git-now # or gn
```