gemkit-cli 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -2
- package/dist/index.js +134 -45
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GemKit CLI
|
|
2
2
|
|
|
3
|
-
A command-line interface for working with Gemini AI agents, plans, and sessions.
|
|
3
|
+
A command-line interface for working with Gemini and Claude AI agents, plans, and sessions.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
@@ -42,7 +42,7 @@ gk <command> [options]
|
|
|
42
42
|
| `gk extension` | Manage extensions |
|
|
43
43
|
| `gk catalog` | Browse available kits |
|
|
44
44
|
| `gk convert` | Convert between formats |
|
|
45
|
-
| `gk paste
|
|
45
|
+
| `gk paste` | Handle image and video pasting |
|
|
46
46
|
|
|
47
47
|
### Agent Commands
|
|
48
48
|
|
|
@@ -58,8 +58,15 @@ gk <command> [options]
|
|
|
58
58
|
- `-s, --skills <list>` - Comma-separated skills to inject
|
|
59
59
|
- `-c, --context <files>` - Context files (@file syntax)
|
|
60
60
|
- `-m, --model <model>` - Model override
|
|
61
|
+
- `-t, --tools <list>` - Comma-separated tools to auto-approve
|
|
62
|
+
- `--cli <provider>` - CLI provider: `gemini` (default) or `claude`
|
|
61
63
|
- `--music` - Play elevator music while waiting
|
|
62
64
|
|
|
65
|
+
**CLI Providers:**
|
|
66
|
+
- `gemini` - Uses Gemini CLI (default). Loads from `.gemini/agents/`
|
|
67
|
+
- `claude` - Uses Claude CLI. Loads from `.claude/agents/`
|
|
68
|
+
- Models and tools are automatically mapped between providers when using fallback
|
|
69
|
+
|
|
63
70
|
### Agent Office Commands
|
|
64
71
|
|
|
65
72
|
| Command | Description |
|
|
@@ -85,6 +92,12 @@ gk agent spawn -p "Help me write a function"
|
|
|
85
92
|
# Spawn with specific agent profile and skills
|
|
86
93
|
gk agent spawn -a researcher -s "frontend-design" -p "Build a dashboard"
|
|
87
94
|
|
|
95
|
+
# Spawn with Claude CLI instead of Gemini
|
|
96
|
+
gk agent spawn --cli claude -a researcher -p "Analyze the codebase"
|
|
97
|
+
|
|
98
|
+
# Spawn with auto-approved tools
|
|
99
|
+
gk agent spawn -a code-executor -t "Read,Write,Bash" -p "Fix the bug"
|
|
100
|
+
|
|
88
101
|
# Search for the best agent for a task
|
|
89
102
|
gk agent search "implement user authentication"
|
|
90
103
|
|