@ikieaneh/opencode-kit 0.6.9 → 0.6.11

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 CHANGED
@@ -49,7 +49,6 @@
49
49
  <li><a href="#usage">Usage</a></li>
50
50
  <li><a href="#structure">Structure</a></li>
51
51
  <li><a href="#the-6-pillars">The 6 Pillars</a></li>
52
- <li><a href="#roadmap">Roadmap</a></li>
53
52
  <li><a href="#contributing">Contributing</a></li>
54
53
  <li><a href="#license">License</a></li>
55
54
  <li><a href="#contact">Contact</a></li>
@@ -335,10 +334,9 @@ opencode-kit/
335
334
  ├── .opencode/plugins/ ← Plugin entry point
336
335
  ├── .claude-plugin/ ← Plugin metadata
337
336
  ├── package.json ← npm publish
338
- ├── CHANGELOG.md
339
- ├── CONTRIBUTING.md
340
- ├── RELEASE.md
341
- └── ROADMAP.md
337
+ ├── CHANGELOG.md
338
+ ├── CONTRIBUTING.md
339
+ └── RELEASE.md
342
340
  ```
343
341
 
344
342
  <p align="right">(<a href="#readme-top">back to top</a>)</p>
@@ -414,67 +412,6 @@ After every subagent delegation, scoring runs automatically:
414
412
 
415
413
  <p align="right">(<a href="#readme-top">back to top</a>)</p>
416
414
 
417
- <!-- ROADMAP -->
418
- ## Roadmap
419
-
420
- ### v0.1 (current POC)
421
- - [x] GitHub repo structure
422
- - [x] `contract.json` — shared state machine
423
- - [x] `rules.json` — 8 enforcement rules
424
- - [x] `preflight.sh` — load contract, validate branch, check state
425
- - [x] `postflight.sh` — persist contract, run scoring
426
- - [x] `init.sh` — scaffold into target project
427
- - [x] `verify.sh` — installation health check
428
- - [x] 6 agent .md templates with embedded pre-flight gates
429
- - [x] npm package.json for `npx opencode-kit init`
430
-
431
- ### v0.2 — Hardening ✅
432
- - [x] Auto-detect MCP availability (lean-ctx, gitnexus, graphify)
433
- - [x] `rules/validation.sh` — validate agent actions against rules
434
- - [ ] Test on clean macOS M-series machine (manual — see notes)
435
- - [x] Edge cases: re-init over existing `.opencode/` with --force + backup
436
- - [x] ADR auto-generate on decision (`src/adr.sh`)
437
-
438
- ### v0.3 — Production ✅
439
- - [x] Cross-platform (Linux via `src/platform.sh` + `$PYTHON_CMD`)
440
- - [x] GitHub Actions CI (ShellCheck + scaffold test + syntax check)
441
- - [x] `opencode-kit update` — `src/update.sh` (pull latest from GitHub, preserve state)
442
- - [x] Scoring Tier 2 — `templates/judge-prompt.md` + SCORE_002 rule
443
- - [x] Telemetry — `src/telemetry.sh` (phases.jsonl, elapsed time, summary)
444
-
445
- ### v0.4 — Plugin Architecture ✅
446
- - [x] Plugin entry point (`.opencode/plugins/opencode-kit.js`)
447
- - [x] 3 auto-registered skills (orchestration-template, scoring-pipeline, adr-generator)
448
- - [x] Global config resolution (local → ~/.config/opencode-kit/ → plugin defaults)
449
- - [x] Plugin schema (templates/opencode-kit.schema.json)
450
- - [x] Plugin-aware init.sh (detects plugin, skips redundant scaffolding)
451
- - [x] Plugin metadata (.claude-plugin/plugin.json)
452
-
453
- ### v0.5 — Gap Analysis ✅
454
- - [x] 5 new skills (qa-expert, system-analyst, token-optimize, verification-before-completion, learner)
455
- - [x] Auto-init contract on first run
456
- - [x] Contract uniqueness per project (hashed lean-ctx key)
457
- - [x] Proper plugin logging
458
- - [x] CLI version/help command
459
- - [x] Logo placeholder
460
- - [x] STATE.md auto-sync
461
- - [x] Integration tests (7/7 passing)
462
- - [x] CI integration test job
463
-
464
- ### v0.6 — Polish ✅
465
- - [x] README updated for @ikieaneh/opencode-kit plugin mode
466
- - [x] Updated agent config schema (fallback_models, explorer, librarian, architect)
467
- - [x] End-to-end tests (9 tests, plugin lifecycle + auto-init)
468
- - [x] Quickstart example (`docs/examples/QUICKSTART.md`)
469
- - [x] npm published as `@ikieaneh/opencode-kit`
470
- - [x] CI: integration + e2e test jobs
471
-
472
- ### Future
473
- - [ ] Web UI for contract overview (deferred — no current need)
474
- - [ ] Plugin hardening: `experimental.chat.messages.transform` API is marked experimental — monitor OpenCode updates
475
-
476
- See the [open issues](https://github.com/RizkiRachman/opencode-kit/issues) for full list.
477
-
478
415
  <p align="right">(<a href="#readme-top">back to top</a>)</p>
479
416
 
480
417
  <!-- CONTRIBUTING -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikieaneh/opencode-kit",
3
- "version": "0.6.9",
3
+ "version": "0.6.11",
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",
@@ -15,7 +15,6 @@ permission:
15
15
  "git log*": allow
16
16
  "npm test": allow
17
17
  "npm run build": allow
18
- "npm test": allow
19
18
  task:
20
19
  "*": deny
21
20
  ---
@@ -31,7 +31,7 @@ permission:
31
31
  - git log --oneline -10
32
32
  - git diff main...HEAD --stat
33
33
 
34
- 3. Read rules.json: Check LEARN_001 (must update ALL 11 memory systems)
34
+ 3. Read rules.json: Check LEARN_001 (must update ALL memory systems listed below)
35
35
  ```
36
36
 
37
37
  ## Permissions
@@ -13,7 +13,6 @@ permission:
13
13
  "*": ask
14
14
  "npm test": allow
15
15
  "npm run build": allow
16
- "npm test": allow
17
16
  "npm run format": allow
18
17
  "git diff*": allow
19
18
  "git log*": allow
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "state": "INIT",
3
- "contract_version": "0.6.9",
3
+ "contract_version": "0.6.11",
4
4
  "session": {
5
5
  "task_id": "",
6
6
  "branch": "",