opencodekit 0.21.1 → 0.21.3
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 +4 -4
- package/dist/template/.opencode/.template-manifest.json +721 -0
- package/dist/template/.opencode/.version +1 -1
- package/dist/template/.opencode/AGENTS.md +39 -29
- package/dist/template/.opencode/agent/vision.md +0 -1
- package/dist/template/.opencode/memory.db +0 -0
- package/dist/template/.opencode/memory.db-shm +0 -0
- package/dist/template/.opencode/memory.db-wal +0 -0
- package/dist/template/.opencode/opencode.json +1311 -1134
- package/dist/template/.opencode/plugin/README.md +10 -6
- package/dist/template/.opencode/plugin/rtk.ts +43 -0
- package/dist/template/.opencode/pnpm-lock.yaml +140 -706
- package/dist/template/.opencode/skill/agent-evals/SKILL.md +208 -0
- package/dist/template/.opencode/skill/anti-ai-slop/SKILL.md +76 -0
- package/dist/template/.opencode/skill/brand-asset-protocol/SKILL.md +222 -0
- package/dist/template/.opencode/skill/context-condensation/SKILL.md +149 -0
- package/dist/template/.opencode/skill/design-direction-advisor/SKILL.md +139 -0
- package/dist/template/.opencode/skill/hi-fi-prototype-html/SKILL.md +253 -0
- package/dist/template/.opencode/skill/html-deck-export/SKILL.md +189 -0
- package/dist/template/.opencode/skill/rtk-command-compression/SKILL.md +134 -0
- package/dist/template/.opencode/skill/test-driven-development/SKILL.md +15 -0
- package/package.json +1 -1
- package/dist/template/.opencode/package.json +0 -22
- package/dist/template/.opencode/plugin/package.json +0 -7
- package/dist/template/.opencode/plugin/stitch.ts +0 -307
- package/dist/template/.opencode/skill/stitch/SKILL.md +0 -164
- package/dist/template/.opencode/skill/stitch-design-taste/DESIGN.md +0 -121
- package/dist/template/.opencode/skill/stitch-design-taste/SKILL.md +0 -197
package/dist/index.js
CHANGED
|
@@ -20,7 +20,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
20
20
|
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region package.json
|
|
23
|
-
var version = "0.21.
|
|
23
|
+
var version = "0.21.3";
|
|
24
24
|
|
|
25
25
|
//#endregion
|
|
26
26
|
//#region src/utils/license.ts
|
|
@@ -3125,9 +3125,9 @@ const MODEL_PRESETS = {
|
|
|
3125
3125
|
recommend: {
|
|
3126
3126
|
model: "github-copilot/gpt-5.4",
|
|
3127
3127
|
agents: {
|
|
3128
|
-
build: "github-copilot/
|
|
3128
|
+
build: "github-copilot/gpt-5.4",
|
|
3129
3129
|
plan: "github-copilot/gpt-5.4",
|
|
3130
|
-
review: "github-copilot/
|
|
3130
|
+
review: "github-copilot/gpt-5.3-codex",
|
|
3131
3131
|
explore: "github-copilot/claude-haiku-4.5",
|
|
3132
3132
|
general: "github-copilot/gpt-5.3-codex",
|
|
3133
3133
|
vision: "github-copilot/gemini-3.1-pro-preview",
|
|
@@ -3453,7 +3453,7 @@ async function initCommand(rawOptions = {}) {
|
|
|
3453
3453
|
{
|
|
3454
3454
|
value: "recommend",
|
|
3455
3455
|
label: "Recommended models",
|
|
3456
|
-
hint: "gpt-5.4,
|
|
3456
|
+
hint: "gpt-5.4, gpt-5.3-codex, sonnet-4.6, gemini-3.1"
|
|
3457
3457
|
},
|
|
3458
3458
|
{
|
|
3459
3459
|
value: "custom",
|