-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
60 lines (55 loc) · 1.95 KB
/
Copy pathplugin.json
File metadata and controls
60 lines (55 loc) · 1.95 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
{
"spec": "ccbud-plugin/1",
"id": "grok-build",
"name": "Grok Build",
"version": "0.3.0",
"description": "Reuse your Grok (xAI) subscription login state to run Claude Code / Codex on Grok models — no API key, no per-token billing. Node.js; forwards to the official Grok cli-chat-proxy so the grok-build model works.",
"vendor": "loadchange",
"homepage": "https://github.com/ccbud/grok-build-plugin",
"license": "GPL-3.0-only",
"icon": "icon.svg",
"source": {
"git": "https://github.com/ccbud/grok-build-plugin",
"branch": "main",
"build": "make dist"
},
"runtime": {
"kind": "sidecar-process",
"exec": {
"darwin-arm64": "bin/darwin-arm64/cc-bud-grok-build-plugin",
"darwin-amd64": "bin/darwin-amd64/cc-bud-grok-build-plugin",
"linux-amd64": "bin/linux-amd64/cc-bud-grok-build-plugin",
"linux-arm64": "bin/linux-arm64/cc-bud-grok-build-plugin",
"windows-amd64": "bin/windows-amd64/cc-bud-grok-build-plugin.exe"
},
"args": ["serve", "--port", "{port}", "--home", "{home}"],
"port": "dynamic",
"readySignal": {
"channel": "stdout-json",
"event": "ready",
"portField": "port"
}
},
"endpoint": {
"protocol": "openai-responses",
"basePath": "/v1",
"healthPath": "/healthz",
"readyTimeoutMs": 8000
},
"auth": {
"kind": "oauth-reuse",
"reuses": "Grok CLI login state (~/.grok/auth.json)",
"statusPath": "/v1/plugin/auth"
},
"models": [
{ "alias": "grok-4.5", "upstream": "grok-4.5", "reasoning": ["low", "medium", "high"] },
{ "alias": "grok-4.3", "upstream": "grok-4.3", "reasoning": ["none", "low", "medium", "high"] },
{ "alias": "grok-3-mini", "upstream": "grok-3-mini", "reasoning": ["low", "medium", "high"] },
{ "alias": "grok-build", "upstream": "grok-build" },
{ "alias": "grok-composer-2.5-fast", "upstream": "grok-composer-2.5-fast" }
],
"modelMapping": {
"primary": "grok-4.5",
"light": "grok-build"
}
}