Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:23:15 +08:00
commit 962cc0c926
9 changed files with 1076 additions and 0 deletions

34
commands/create-store.md Normal file
View File

@@ -0,0 +1,34 @@
---
description: Create a new Gemini File Search store
argument-hint: store-name
---
Create a new Gemini File Search store for document storage and RAG queries.
## Usage
```bash
gemini-file-search-tool create-store "STORE_NAME" [--display-name NAME]
```
## Arguments
- `STORE_NAME`: Store identifier (required)
- `--display-name NAME`: Human-readable display name (optional)
## Examples
```bash
# Create store with auto-generated display name
gemini-file-search-tool create-store "research-papers"
# Create store with custom display name
gemini-file-search-tool create-store "docs" --display-name "Project Documentation"
# Capture output as JSON
gemini-file-search-tool create-store "code" | jq '.name'
```
## Output
Returns JSON with store name, display_name, create_time, and update_time.