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.
Files changed (42) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/AGENTS.md +65 -27
  3. package/dist/template/.opencode/README.md +14 -19
  4. package/dist/template/.opencode/agent/build.md +4 -6
  5. package/dist/template/.opencode/agent/explore.md +18 -18
  6. package/dist/template/.opencode/agent/planner.md +4 -7
  7. package/dist/template/.opencode/agent/review.md +1 -2
  8. package/dist/template/.opencode/agent/rush.md +4 -6
  9. package/dist/template/.opencode/agent/scout.md +45 -38
  10. package/dist/template/.opencode/agent/vision.md +16 -24
  11. package/dist/template/.opencode/command/analyze-project.md +9 -9
  12. package/dist/template/.opencode/command/create.md +9 -4
  13. package/dist/template/.opencode/command/finish.md +12 -17
  14. package/dist/template/.opencode/command/fix-ci.md +10 -9
  15. package/dist/template/.opencode/command/fix-types.md +4 -11
  16. package/dist/template/.opencode/command/handoff.md +14 -18
  17. package/dist/template/.opencode/command/implement.md +11 -11
  18. package/dist/template/.opencode/command/import-plan.md +25 -14
  19. package/dist/template/.opencode/command/integration-test.md +1 -1
  20. package/dist/template/.opencode/command/issue.md +10 -9
  21. package/dist/template/.opencode/command/new-feature.md +4 -6
  22. package/dist/template/.opencode/command/plan.md +3 -5
  23. package/dist/template/.opencode/command/pr.md +2 -4
  24. package/dist/template/.opencode/command/research-and-implement.md +1 -1
  25. package/dist/template/.opencode/command/research.md +13 -15
  26. package/dist/template/.opencode/command/resume.md +2 -2
  27. package/dist/template/.opencode/command/revert-feature.md +5 -7
  28. package/dist/template/.opencode/command/status.md +8 -10
  29. package/dist/template/.opencode/dcp.jsonc +20 -2
  30. package/dist/template/.opencode/opencode.json +20 -35
  31. package/dist/template/.opencode/package.json +1 -1
  32. package/dist/template/.opencode/plugin/beads.ts +667 -0
  33. package/dist/template/.opencode/plugin/compaction.ts +80 -0
  34. package/dist/template/.opencode/plugin/skill-mcp.ts +458 -0
  35. package/dist/template/.opencode/skill/beads/SKILL.md +419 -0
  36. package/dist/template/.opencode/skill/beads/references/BOUNDARIES.md +218 -0
  37. package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +130 -0
  38. package/dist/template/.opencode/skill/beads/references/RESUMABILITY.md +180 -0
  39. package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +222 -0
  40. package/dist/template/.opencode/skill/figma/SKILL.md +214 -0
  41. package/dist/template/.opencode/skill/playwright/SKILL.md +187 -0
  42. package/package.json +1 -1
@@ -6,12 +6,12 @@
6
6
  "model": "github-copilot/claude-opus-4.5"
7
7
  },
8
8
  "compaction": {
9
- "model": "proxypal/gemini-3-flash-preview",
10
- "prompt": "You are summarizing a coding session for context continuity.\n\n## Output Structure\n\nUse these sections:\n\n### COMPLETED\n- What was done (with file paths)\n- Bead IDs closed and why\n\n### IN PROGRESS\n- Current task and bead ID (if any)\n- Files being modified (exact paths)\n- Current todo state (preserve TodoWrite items)\n\n### NEXT\n- What needs to be done next\n- Blockers or pending decisions\n\n### CONSTRAINTS\n- User preferences that must persist\n- Rules or requirements stated by user\n- Technical decisions and rationale\n\n### PERSIST TO MEMORY\n- Gotchas discovered → suggest for project/gotchas.md\n- Commands learned → suggest for project/commands.md\n- Patterns observed → suggest for project/conventions.md\n\n## Rules\n\n- PRESERVE: Bead IDs, todo items, file paths, line numbers, user constraints\n- DROP: Failed attempts, superseded info, verbose tool outputs, exploration dead-ends\n- Be concise but complete - this summary replaces the full conversation\n- Include enough context that a new session can continue seamlessly"
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": "opencode/grok-code"
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*": true,
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",
@@ -11,7 +11,7 @@
11
11
  "author": "",
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
- "@opencode-ai/plugin": "^1.0.209"
14
+ "@opencode-ai/plugin": "1.0.222"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^25.0.3",