-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtool-definitions.json
More file actions
207 lines (207 loc) · 6.55 KB
/
tool-definitions.json
File metadata and controls
207 lines (207 loc) · 6.55 KB
1
2
3
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Single source of truth for AI tool definitions. Used by both extension and runtime scripts.",
"tools": [
{
"id": "opencode",
"name": "OpenCode",
"command": "opencode",
"authCommand": "opencode providers login",
"description": "AI coding agent from SST",
"docsUrl": "https://opencode.ai/docs",
"envVars": ["ANTHROPIC_API_KEY", "OPENAI_API_KEY", "GEMINI_API_KEY", "GOOGLE_API_KEY"],
"authFiles": [".local/share/opencode/auth.json"],
"skillsAgent": "opencode",
"setupSteps": []
},
{
"id": "claude",
"name": "Claude Code",
"command": "claude",
"authCommand": "claude-auth-helper",
"description": "Anthropic's official CLI",
"docsUrl": "https://docs.anthropic.com/en/docs/claude-code",
"envVars": ["ANTHROPIC_API_KEY", "CLAUDE_CODE_OAUTH_TOKEN"],
"authFiles": [".claude/.credentials.json"],
"skillsAgent": "claude-code",
"setupSteps": []
},
{
"id": "gemini",
"name": "Gemini CLI",
"command": "gemini",
"authCommand": "gemini",
"description": "Google's AI in your terminal",
"docsUrl": "https://github.com/google-gemini/gemini-cli",
"envVars": ["GEMINI_API_KEY", "GOOGLE_API_KEY"],
"authFiles": [".gemini/oauth_creds.json", ".gemini/settings.json"],
"skillsAgent": "gemini-cli",
"setupSteps": []
},
{
"id": "codex",
"name": "Codex",
"command": "codex",
"authCommand": "codex login --device-auth",
"description": "OpenAI's coding agent",
"docsUrl": "https://github.com/openai/codex",
"envVars": ["OPENAI_API_KEY"],
"authFiles": [".codex/auth.json"],
"skillsAgent": "codex",
"setupSteps": []
},
{
"id": "aider",
"name": "Aider",
"command": "aider",
"authCommand": null,
"description": "AI pair programming",
"docsUrl": "https://aider.chat",
"envVars": ["ANTHROPIC_API_KEY", "OPENAI_API_KEY", "GEMINI_API_KEY", "OPENROUTER_API_KEY"],
"authFiles": [],
"setupSteps": []
},
{
"id": "goose",
"name": "Goose",
"command": "goose",
"authCommand": "goose configure",
"description": "Block's AI developer agent",
"docsUrl": "https://block.github.io/goose",
"envVars": ["ANTHROPIC_API_KEY", "OPENAI_API_KEY"],
"authFiles": [],
"authCheck": "goose",
"skillsAgent": "goose",
"setupSteps": []
},
{
"id": "vibe",
"name": "Mistral Vibe",
"command": "vibe",
"authCommand": null,
"description": "Powered by Devstral",
"docsUrl": "https://github.com/mistralai/mistral-vibe",
"envVars": ["MISTRAL_API_KEY"],
"authFiles": [],
"skillsAgent": "mistral-vibe",
"setupSteps": []
},
{
"id": "amp",
"name": "Amp",
"command": "amp",
"authCommand": "amp login",
"description": "Frontier coding agent",
"docsUrl": "https://ampcode.com/manual",
"envVars": ["AMP_API_KEY"],
"authFiles": [".config/amp/auth.json", ".amp/credentials"],
"skillsAgent": "amp",
"setupSteps": []
},
{
"id": "auggie",
"name": "Augment",
"command": "auggie",
"authCommand": "auggie login",
"description": "Context-aware coding agent",
"docsUrl": "https://docs.augmentcode.com/cli/overview",
"envVars": ["AUGMENT_SESSION_AUTH"],
"authFiles": [],
"skillsAgent": "augment",
"setupSteps": []
},
{
"id": "factory",
"name": "Factory",
"command": "droid",
"authCommand": null,
"description": "AI for CI/CD automation",
"docsUrl": "https://docs.factory.ai",
"envVars": ["FACTORY_API_KEY"],
"authFiles": [],
"skillsAgent": "droid",
"setupSteps": []
},
{
"id": "kiro",
"name": "Kiro",
"command": "kiro-cli",
"authCommand": "kiro-cli login",
"description": "AWS-powered AI CLI",
"docsUrl": "https://kiro.dev/docs/cli",
"envVars": [],
"authFiles": [".kiro/settings/cli.json"],
"skillsAgent": "kiro-cli",
"setupSteps": []
},
{
"id": "qwen",
"name": "Qwen Code",
"command": "qwen",
"authCommand": "qwen",
"description": "Alibaba's coding assistant",
"docsUrl": "https://qwenlm.github.io/qwen-code-docs",
"envVars": ["QWEN_API_KEY", "OPENAI_API_KEY"],
"authFiles": [".qwen/config.json", ".config/qwen/config.json"],
"skillsAgent": "qwen-code",
"setupSteps": []
}
],
"envVarMeta": {
"ANTHROPIC_API_KEY": {
"placeholder": "sk-ant-...",
"hint": "Pay-per-use. Get key at console.anthropic.com",
"url": "https://console.anthropic.com/settings/keys"
},
"CLAUDE_CODE_OAUTH_TOKEN": {
"placeholder": "sk-ant-oat01-...",
"hint": "Uses your Claude subscription. Run `claude setup-token` locally to generate.",
"url": null
},
"OPENAI_API_KEY": {
"placeholder": "sk-...",
"hint": "Pay-per-use. Get key at platform.openai.com",
"url": "https://platform.openai.com/api-keys"
},
"GEMINI_API_KEY": {
"placeholder": "AIza...",
"hint": "Free tier available. Get key at aistudio.google.com",
"url": "https://aistudio.google.com/apikey"
},
"GOOGLE_API_KEY": {
"placeholder": "AIza...",
"hint": "Same format as GEMINI_API_KEY. Get key at aistudio.google.com",
"url": "https://aistudio.google.com/apikey"
},
"OPENROUTER_API_KEY": {
"placeholder": "sk-or-...",
"hint": "Unified API for hundreds of models. Get key at openrouter.ai",
"url": "https://openrouter.ai/keys"
},
"MISTRAL_API_KEY": {
"placeholder": "Paste key...",
"hint": "Pay-per-use. Get key at console.mistral.ai",
"url": "https://console.mistral.ai/api-keys"
},
"AMP_API_KEY": {
"placeholder": "Paste token...",
"hint": "Access token from ampcode.com settings",
"url": "https://ampcode.com/settings"
},
"AUGMENT_SESSION_AUTH": {
"placeholder": "Paste session JSON...",
"hint": "Run `auggie login` then `auggie token print` to generate.",
"url": null
},
"FACTORY_API_KEY": {
"placeholder": "Paste key...",
"hint": "Get key from your Factory account at app.factory.ai",
"url": "https://app.factory.ai"
},
"QWEN_API_KEY": {
"placeholder": "Paste key...",
"hint": "Get key from Alibaba Cloud DashScope console",
"url": "https://dashscope.console.aliyun.com"
}
}
}