@ikieaneh/opencode-kit 0.6.3 → 0.6.5
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 +1 -3
- package/package.json +3 -2
- package/rules/validation.sh +1 -0
- package/src/cli.js +1 -1
- package/templates/contract.json +1 -1
package/README.md
CHANGED
|
@@ -97,7 +97,7 @@ As an OpenCode **plugin**, `opencode-kit` injects enforcement into every session
|
|
|
97
97
|
5. **ADR logging** — every architectural decision recorded in `decisions.adr_log[]`
|
|
98
98
|
6. **Extension model** — project-specific skills in `.opencode/skills/` override plugin defaults
|
|
99
99
|
|
|
100
|
-
### The
|
|
100
|
+
### The 8 Built-in Skills
|
|
101
101
|
|
|
102
102
|
| Skill | Purpose |
|
|
103
103
|
|-------|---------|
|
|
@@ -200,8 +200,6 @@ The plugin auto-loads on next session. All 8 skills become available. The orches
|
|
|
200
200
|
|
|
201
201
|
> **Plugin ordering**: opencode-kit MUST be first in the plugin array. Its system prompt transform is foundational — other plugins may add behavior, but opencode-kit enforces the workflow.
|
|
202
202
|
|
|
203
|
-
> **Plugin ordering**: opencode-kit MUST be first in the plugin array. Its system prompt transform is foundational — other plugins may add behavior, but opencode-kit enforces the workflow.
|
|
204
|
-
|
|
205
203
|
#### Option 2: Quick scaffold (pre-v0.4 style)
|
|
206
204
|
|
|
207
205
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ikieaneh/opencode-kit",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
4
4
|
"description": "Standardized OpenCode orchestration framework — contract-based, rules-enforced, zero-touch agent workflow. Install as plugin.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "RizkiRachman",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"postinstall": "git config core.hooksPath .githooks 2>/dev/null || true",
|
|
47
|
-
"lint": "shellcheck src/*.sh rules/*.sh
|
|
47
|
+
"lint": "shellcheck -S error src/*.sh rules/*.sh test/shell/*.sh",
|
|
48
|
+
"lint-all": "shellcheck src/*.sh rules/*.sh test/shell/*.sh",
|
|
48
49
|
"format": "echo 'Formatting: not configured yet'"
|
|
49
50
|
},
|
|
50
51
|
"bugs": {
|
package/rules/validation.sh
CHANGED
package/src/cli.js
CHANGED