opencodekit 0.7.0 → 0.9.0
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/dist/index.js +1 -1
- package/dist/template/.opencode/AGENTS.md +65 -27
- package/dist/template/.opencode/README.md +14 -19
- package/dist/template/.opencode/agent/build.md +4 -6
- package/dist/template/.opencode/agent/explore.md +18 -18
- package/dist/template/.opencode/agent/planner.md +4 -7
- package/dist/template/.opencode/agent/review.md +1 -2
- package/dist/template/.opencode/agent/rush.md +4 -6
- package/dist/template/.opencode/agent/scout.md +45 -38
- package/dist/template/.opencode/agent/vision.md +16 -24
- package/dist/template/.opencode/command/analyze-project.md +9 -9
- package/dist/template/.opencode/command/create.md +9 -4
- package/dist/template/.opencode/command/finish.md +12 -17
- package/dist/template/.opencode/command/fix-ci.md +10 -9
- package/dist/template/.opencode/command/fix-types.md +4 -11
- package/dist/template/.opencode/command/handoff.md +14 -18
- package/dist/template/.opencode/command/implement.md +11 -11
- package/dist/template/.opencode/command/import-plan.md +25 -14
- package/dist/template/.opencode/command/integration-test.md +1 -1
- package/dist/template/.opencode/command/issue.md +10 -9
- package/dist/template/.opencode/command/new-feature.md +4 -6
- package/dist/template/.opencode/command/plan.md +3 -5
- package/dist/template/.opencode/command/pr.md +2 -4
- package/dist/template/.opencode/command/research-and-implement.md +1 -1
- package/dist/template/.opencode/command/research.md +13 -15
- package/dist/template/.opencode/command/resume.md +2 -2
- package/dist/template/.opencode/command/revert-feature.md +5 -7
- package/dist/template/.opencode/command/status.md +8 -10
- package/dist/template/.opencode/dcp.jsonc +20 -2
- package/dist/template/.opencode/opencode.json +20 -35
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugin/beads.ts +667 -0
- package/dist/template/.opencode/plugin/compaction.ts +80 -0
- package/dist/template/.opencode/plugin/skill-mcp.ts +458 -0
- package/dist/template/.opencode/skill/beads/SKILL.md +419 -0
- package/dist/template/.opencode/skill/beads/references/BOUNDARIES.md +218 -0
- package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +130 -0
- package/dist/template/.opencode/skill/beads/references/RESUMABILITY.md +180 -0
- package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +222 -0
- package/dist/template/.opencode/skill/figma/SKILL.md +214 -0
- package/dist/template/.opencode/skill/playwright/SKILL.md +187 -0
- package/package.json +1 -1
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"model": "github-copilot/claude-opus-4.5"
|
|
7
7
|
},
|
|
8
8
|
"compaction": {
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"description": "Session summarizer for context continuity across compactions",
|
|
10
|
+
"model": "proxypal/gemini-3-flash-preview"
|
|
11
11
|
},
|
|
12
12
|
"explore": {
|
|
13
13
|
"description": "Fast codebase search specialist",
|
|
14
|
-
"model": "
|
|
14
|
+
"model": "proxypal/gemini-3-flash-preview"
|
|
15
15
|
},
|
|
16
16
|
"general": {
|
|
17
17
|
"disable": true
|
|
@@ -72,17 +72,6 @@
|
|
|
72
72
|
"session_compact": "ctrl+k"
|
|
73
73
|
},
|
|
74
74
|
"mcp": {
|
|
75
|
-
"Framelink MCP for Figma": {
|
|
76
|
-
"command": [
|
|
77
|
-
"npx",
|
|
78
|
-
"-y",
|
|
79
|
-
"figma-developer-mcp",
|
|
80
|
-
"--figma-api-key={env:FIGMA_API_KEY}",
|
|
81
|
-
"--stdio"
|
|
82
|
-
],
|
|
83
|
-
"enabled": false,
|
|
84
|
-
"type": "local"
|
|
85
|
-
},
|
|
86
75
|
"context7": {
|
|
87
76
|
"command": [
|
|
88
77
|
"npx",
|
|
@@ -98,21 +87,6 @@
|
|
|
98
87
|
"enabled": true,
|
|
99
88
|
"type": "remote",
|
|
100
89
|
"url": "https://mcp.grep.app"
|
|
101
|
-
},
|
|
102
|
-
"gkg": {
|
|
103
|
-
"enabled": true,
|
|
104
|
-
"type": "remote",
|
|
105
|
-
"url": "http://localhost:27495/mcp"
|
|
106
|
-
},
|
|
107
|
-
"beads-village": {
|
|
108
|
-
"command": ["npx", "beads-village"],
|
|
109
|
-
"enabled": true,
|
|
110
|
-
"type": "local"
|
|
111
|
-
},
|
|
112
|
-
"playwright": {
|
|
113
|
-
"command": ["npx", "@playwright/mcp@latest"],
|
|
114
|
-
"enabled": false,
|
|
115
|
-
"type": "local"
|
|
116
90
|
}
|
|
117
91
|
},
|
|
118
92
|
"model": "github-copilot/claude-haiku-4.5",
|
|
@@ -128,10 +102,8 @@
|
|
|
128
102
|
"external_directory": "allow"
|
|
129
103
|
},
|
|
130
104
|
"plugin": [
|
|
131
|
-
"opencode-gemini-auth",
|
|
132
105
|
"@tarquinen/opencode-dcp@latest",
|
|
133
|
-
"@franlol/opencode-md-table-formatter@0.0.3"
|
|
134
|
-
"./plugin/handoff.ts"
|
|
106
|
+
"@franlol/opencode-md-table-formatter@0.0.3"
|
|
135
107
|
],
|
|
136
108
|
"provider": {
|
|
137
109
|
"github-copilot": {
|
|
@@ -296,6 +268,20 @@
|
|
|
296
268
|
},
|
|
297
269
|
"reasoning": true
|
|
298
270
|
},
|
|
271
|
+
"glm-4.5": {
|
|
272
|
+
"limit": {
|
|
273
|
+
"context": 107520,
|
|
274
|
+
"output": 16384
|
|
275
|
+
},
|
|
276
|
+
"name": "Glm 4 5"
|
|
277
|
+
},
|
|
278
|
+
"glm-4.5-air": {
|
|
279
|
+
"limit": {
|
|
280
|
+
"context": 107520,
|
|
281
|
+
"output": 16384
|
|
282
|
+
},
|
|
283
|
+
"name": "Glm 4 5 Air"
|
|
284
|
+
},
|
|
299
285
|
"glm-4.6": {
|
|
300
286
|
"limit": {
|
|
301
287
|
"context": 107520,
|
|
@@ -466,10 +452,9 @@
|
|
|
466
452
|
"small_model": "opencode/gpt-5-nano",
|
|
467
453
|
"theme": "system",
|
|
468
454
|
"tools": {
|
|
469
|
-
"beads-village*":
|
|
455
|
+
"beads-village*": false,
|
|
470
456
|
"context7*": true,
|
|
471
|
-
"gh_grep*": true
|
|
472
|
-
"gkg*": true
|
|
457
|
+
"gh_grep*": true
|
|
473
458
|
},
|
|
474
459
|
"tui": {
|
|
475
460
|
"diff_style": "auto",
|