opencode-ship 1.1.1-rc.9 → 1.1.2-rc.1
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/CHANGELOG.md +49 -0
- package/THIRD_PARTY_NOTICES.md +1 -1
- package/dist/cli.js +383 -169
- package/dist/core.js +1 -1
- package/dist/plugin.js +1136 -109
- package/package.json +1 -1
- package/schema/ship-lock.schema.json +7 -18
- package/tests/plugin/expected-tools.mjs +13 -5
- package/tests/plugin/plugin-load.test.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,55 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `opencode-ship` are recorded here.
|
|
4
4
|
|
|
5
|
+
## 1.1.2-rc.1 — Complete contract correction
|
|
6
|
+
|
|
7
|
+
> Active stabilization branch: `fix/1.1.2-self-hosting`.
|
|
8
|
+
> Parent tracker: https://github.com/Viktorxyz/opencode-ship/issues/56.
|
|
9
|
+
|
|
10
|
+
`1.1.1` shipped a partial contract: 24 of the 32 promised tools, an
|
|
11
|
+
executor that conflated "all three model fields populated" with
|
|
12
|
+
"setup workflow completed", a setup skill that left consumers
|
|
13
|
+
without `docs/agents/**` or an `AGENTS.md` Ship workflow block, and
|
|
14
|
+
root permissions that still used the legacy 11-pointer list with
|
|
15
|
+
no controller delegation.
|
|
16
|
+
|
|
17
|
+
This release corrects every one of those gaps:
|
|
18
|
+
|
|
19
|
+
- 32 typed tools are registered. The previously missing
|
|
20
|
+
`ship_task_start`, `ship_task_commit`, `ship_task_complete`,
|
|
21
|
+
`ship_final_review`, `ship_skill_discover`, `ship_skill_install`,
|
|
22
|
+
`ship_skill_audit`, and `ship_skill_uninstall` are now first-class.
|
|
23
|
+
- `ship_task_review` authorizes against the configured builder
|
|
24
|
+
model (the task reviewer is rendered with the builder model),
|
|
25
|
+
not the final reviewer. The factory now passes the config so
|
|
26
|
+
the tool can resolve model roles.
|
|
27
|
+
- New `opencode-ship setup-complete` command is the sole writer
|
|
28
|
+
of `lock.manager.setupComplete: true`. The lock flip requires
|
|
29
|
+
all three model roles populated AND the install-owned docs
|
|
30
|
+
(`docs/agents/{issue-tracker,domain,triage-labels}.md`) AND
|
|
31
|
+
the `AGENTS.md` "Ship workflow" block AND the setup-pending
|
|
32
|
+
marker absent. The five predicates are deterministic from
|
|
33
|
+
on-disk artifacts.
|
|
34
|
+
- `update` no longer auto-clears the setup-pending marker.
|
|
35
|
+
Marker removal is exclusively the setup-complete command's
|
|
36
|
+
responsibility.
|
|
37
|
+
- Executor refuses to set `setupComplete: true` on `init` or
|
|
38
|
+
`update`; the flag is only ever passed through
|
|
39
|
+
`commitInstall(..., { fullSetupComplete: true })`.
|
|
40
|
+
- Doctor reports setup-complete state as informational so
|
|
41
|
+
already-installed neutral consumers do not regress.
|
|
42
|
+
- Root permission matrix wires `subagent_depth: 2` and the
|
|
43
|
+
Build → ship-controller delegation. The legacy 11-pointer
|
|
44
|
+
list is augmented with the depth and delegation surfaces.
|
|
45
|
+
- Lock schema v4 (`schema/ship-lock.schema.json`) now accepts
|
|
46
|
+
`manager.setupComplete` and the `support` file kind, and
|
|
47
|
+
explicitly drops `cleanupPending` (it lives under the Git
|
|
48
|
+
common directory).
|
|
49
|
+
- New `src/skills/{policy,registry,inventory}.js` modules
|
|
50
|
+
back the four `ship_skill_*` tools. The inventory is
|
|
51
|
+
hash-chained and recorded in `.opencode/ship.skills.lock.json`
|
|
52
|
+
under the consumer repo.
|
|
53
|
+
|
|
5
54
|
## 1.1.1 — Stabilization + first self-hosting release (UNRELEASED)
|
|
6
55
|
|
|
7
56
|
> Active stabilization branch: `fix/1.1.1-stabilization`.
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Third-Party Notices
|
|
2
2
|
|
|
3
|
-
`opencode-ship@1.1.
|
|
3
|
+
`opencode-ship@1.1.2-rc.1` ships the complete Matt Pocock and Superpowers
|
|
4
4
|
methodology under the MIT license, plus the Ship-owned installer,
|
|
5
5
|
plugin, agents, and skills. The complete immutable pin list is in
|
|
6
6
|
`vendor/sources.json`; the upstream snapshots are under
|