Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:23:17 +08:00
commit 37dd213b6c
6 changed files with 691 additions and 0 deletions

34
commands/completion.md Normal file
View File

@@ -0,0 +1,34 @@
---
description: Generate shell completion scripts
argument-hint: shell
---
Generate shell completion scripts for Bash, Zsh, or Fish to enable tab-completion.
## Usage
```bash
gemini-google-maps-tool completion {bash|zsh|fish}
```
## Arguments
- `SHELL`: Shell type - bash, zsh, or fish (required)
## Examples
```bash
# Generate Bash completion
eval "$(gemini-google-maps-tool completion bash)"
# Generate Zsh completion
eval "$(gemini-google-maps-tool completion zsh)"
# Install Fish completion
gemini-google-maps-tool completion fish > \
~/.config/fish/completions/gemini-google-maps-tool.fish
```
## Output
Shell-specific completion script that can be evaluated or saved to a file.