@ycodium-ai/agent-grok 0.2.2014
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 +44 -0
- package/assets/icon.svg +8 -0
- package/dist/index.js +26909 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ycodium-ai/agent-grok",
|
|
3
|
+
"version": "0.2.2014",
|
|
4
|
+
"description": "Grok executor: grok CLI over Agent Client Protocol stdio.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ycodium",
|
|
7
|
+
"ycodium-plugin"
|
|
8
|
+
],
|
|
9
|
+
"license": "UNLICENSED",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"assets",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"type": "module",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/node": "24.12.4",
|
|
21
|
+
"esbuild": "0.28.1",
|
|
22
|
+
"vite-plus": "0.2.2",
|
|
23
|
+
"ycodium-acp-executor": "0.0.0",
|
|
24
|
+
"ycodium-acp-protocol": "0.0.0",
|
|
25
|
+
"@ycodium-ai/plugin-api": "0.2.2014"
|
|
26
|
+
},
|
|
27
|
+
"ycodium": {
|
|
28
|
+
"plugin": "./dist/index.js",
|
|
29
|
+
"displayName": "Grok",
|
|
30
|
+
"description": "Run Grok (grok agent stdio) with its session/resume continuation, reasoning-effort spawn tiers, and device-code sign-in.",
|
|
31
|
+
"icon": "./assets/icon.svg",
|
|
32
|
+
"permissions": [
|
|
33
|
+
{
|
|
34
|
+
"kind": "executor"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "node build.mjs",
|
|
40
|
+
"typecheck": "tsgo --noEmit",
|
|
41
|
+
"test": "vp test run"
|
|
42
|
+
}
|
|
43
|
+
}
|