gemkit-cli 0.1.0 → 0.2.2
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 +109 -68
- package/dist/index.js +3552 -45
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -1,69 +1,110 @@
|
|
|
1
|
-
# GemKit CLI
|
|
2
|
-
|
|
3
|
-
A command-line interface for working with Gemini AI agents, plans, and sessions.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- `--
|
|
22
|
-
- `--
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
|
29
|
-
|
|
30
|
-
| `gk
|
|
31
|
-
| `gk
|
|
32
|
-
| `gk
|
|
33
|
-
| `gk
|
|
34
|
-
| `gk
|
|
35
|
-
| `gk
|
|
36
|
-
| `gk
|
|
37
|
-
| `gk
|
|
38
|
-
| `gk
|
|
39
|
-
| `gk
|
|
40
|
-
| `gk
|
|
41
|
-
| `gk
|
|
42
|
-
| `gk
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
gk agent
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
gk
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
1
|
+
# GemKit CLI
|
|
2
|
+
|
|
3
|
+
A command-line interface for working with Gemini AI agents, plans, and sessions.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g gemkit-cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
gk <command> [options]
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Global Options
|
|
20
|
+
|
|
21
|
+
- `--verbose` - Enable verbose output
|
|
22
|
+
- `--json` - Output as JSON
|
|
23
|
+
- `--help` - Show help
|
|
24
|
+
- `--version` - Show version
|
|
25
|
+
|
|
26
|
+
### Commands
|
|
27
|
+
|
|
28
|
+
| Command | Description |
|
|
29
|
+
|---------|-------------|
|
|
30
|
+
| `gk init` | Initialize GemKit in your project |
|
|
31
|
+
| `gk new` | Create new agents, plans, or skills |
|
|
32
|
+
| `gk agent` | Manage and spawn AI agents |
|
|
33
|
+
| `gk office` | Agent Office visualization dashboard |
|
|
34
|
+
| `gk session` | View and manage sessions |
|
|
35
|
+
| `gk plan` | Work with execution plans |
|
|
36
|
+
| `gk tokens` | Analyze token usage and costs |
|
|
37
|
+
| `gk config` | Manage configuration |
|
|
38
|
+
| `gk cache` | Manage local cache |
|
|
39
|
+
| `gk update` | Update GemKit components |
|
|
40
|
+
| `gk versions` | Show available versions |
|
|
41
|
+
| `gk doctor` | Diagnose issues |
|
|
42
|
+
| `gk extension` | Manage extensions |
|
|
43
|
+
| `gk catalog` | Browse available kits |
|
|
44
|
+
| `gk convert` | Convert between formats |
|
|
45
|
+
| `gk paste-image` | Handle image pasting |
|
|
46
|
+
|
|
47
|
+
### Agent Commands
|
|
48
|
+
|
|
49
|
+
| Command | Description |
|
|
50
|
+
|---------|-------------|
|
|
51
|
+
| `gk agent list` | List all available agent profiles |
|
|
52
|
+
| `gk agent info <name>` | Show agent profile details |
|
|
53
|
+
| `gk agent search "<task>"` | Find best agent+skills for a task |
|
|
54
|
+
| `gk agent spawn -p "<prompt>"` | Spawn a sub-agent |
|
|
55
|
+
|
|
56
|
+
**Spawn Options:**
|
|
57
|
+
- `-a, --agent <name>` - Agent profile name
|
|
58
|
+
- `-s, --skills <list>` - Comma-separated skills to inject
|
|
59
|
+
- `-c, --context <files>` - Context files (@file syntax)
|
|
60
|
+
- `-m, --model <model>` - Model override
|
|
61
|
+
- `--music` - Play elevator music while waiting
|
|
62
|
+
|
|
63
|
+
### Agent Office Commands
|
|
64
|
+
|
|
65
|
+
| Command | Description |
|
|
66
|
+
|---------|-------------|
|
|
67
|
+
| `gk office start` | Start the web visualization dashboard |
|
|
68
|
+
| `gk office status` | Show current office state |
|
|
69
|
+
| `gk office watch` | Watch office state changes in real-time |
|
|
70
|
+
|
|
71
|
+
**Options:**
|
|
72
|
+
- `-p, --port <n>` - Web server port (default: 3847)
|
|
73
|
+
- `--no-open` - Don't auto-open browser
|
|
74
|
+
- `--json` - Output as JSON
|
|
75
|
+
|
|
76
|
+
## Quick Start
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
# Initialize in your project
|
|
80
|
+
gk init
|
|
81
|
+
|
|
82
|
+
# Spawn an agent with a task
|
|
83
|
+
gk agent spawn -p "Help me write a function"
|
|
84
|
+
|
|
85
|
+
# Spawn with specific agent profile and skills
|
|
86
|
+
gk agent spawn -a researcher -s "frontend-design" -p "Build a dashboard"
|
|
87
|
+
|
|
88
|
+
# Search for the best agent for a task
|
|
89
|
+
gk agent search "implement user authentication"
|
|
90
|
+
|
|
91
|
+
# Start the Agent Office dashboard
|
|
92
|
+
gk office start
|
|
93
|
+
|
|
94
|
+
# View session history
|
|
95
|
+
gk session list
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Requirements
|
|
99
|
+
|
|
100
|
+
- Node.js >= 18
|
|
101
|
+
|
|
102
|
+
## Links
|
|
103
|
+
|
|
104
|
+
- [Website](https://gemkit.cc)
|
|
105
|
+
- [GitHub](https://github.com/therichardngai-code/gemkit-cli)
|
|
106
|
+
- [Issues](https://github.com/therichardngai-code/gemkit-cli/issues)
|
|
107
|
+
|
|
108
|
+
## License
|
|
109
|
+
|
|
69
110
|
MIT
|