@ycodium-ai/agent-opencode 0.2.2098
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 +25 -0
- package/assets/icon.svg +1 -0
- package/dist/index.js +7779 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ycodium-ai/agent-opencode",
|
|
3
|
+
"version": "0.2.2098",
|
|
4
|
+
"description": "OpenCode executor: OpenCode CLI via @opencode-ai/sdk/v2.",
|
|
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
|
+
"dependencies": {
|
|
20
|
+
"@opencode-ai/sdk": "^1.3.15"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/node": "24.12.4",
|
|
24
|
+
"esbuild": "0.28.1",
|
|
25
|
+
"vite-plus": "0.2.2",
|
|
26
|
+
"@ycodium-ai/plugin-api": "0.2.2098"
|
|
27
|
+
},
|
|
28
|
+
"ycodium": {
|
|
29
|
+
"plugin": "./dist/index.js",
|
|
30
|
+
"displayName": "OpenCode",
|
|
31
|
+
"description": "Run OpenCode with in-session model switching, native compaction, and turn steering.",
|
|
32
|
+
"icon": "./assets/icon.svg",
|
|
33
|
+
"permissions": [
|
|
34
|
+
{
|
|
35
|
+
"kind": "executor"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node build.mjs",
|
|
41
|
+
"typecheck": "tsgo --noEmit",
|
|
42
|
+
"test": "vp test run"
|
|
43
|
+
}
|
|
44
|
+
}
|