opencode-ship 1.1.2-rc.4 → 1.1.2
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 +9 -2
- package/README.md +1 -1
- package/THIRD_PARTY_NOTICES.md +1 -1
- package/dist/cli.js +3 -3
- package/dist/core.js +1 -1
- package/dist/plugin.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `opencode-ship` are recorded here.
|
|
4
4
|
|
|
5
|
-
## 1.1.2
|
|
5
|
+
## 1.1.2 — Stable: Plan Mode write access
|
|
6
6
|
|
|
7
|
-
> Branch: `release/1.1.2-rc.4
|
|
7
|
+
> Branch: `release/1.1.2`. Promoted from `1.1.2-rc.4` after dogfood.
|
|
8
8
|
|
|
9
9
|
- **Plan Mode write access for brainstorming / writing-plans products.**
|
|
10
10
|
The installer now owns two leaf pointers under
|
|
@@ -23,6 +23,13 @@ All notable changes to `opencode-ship` are recorded here.
|
|
|
23
23
|
that explicitly sets `docs/superpowers/**: "deny"` is a
|
|
24
24
|
fail-closed conflict.
|
|
25
25
|
|
|
26
|
+
- **Full self-hosting contract corrections** carried over from
|
|
27
|
+
`1.1.2-rc.3`: durable plan store, Plan Mode permission
|
|
28
|
+
consumer-ownership, workflow state machine coverage, parallel
|
|
29
|
+
Standards/Spec Ready gate, trusted-auto skill discovery, and the
|
|
30
|
+
`/setup-ship-workflow` single-skill contract. See the
|
|
31
|
+
`1.1.2-rc.*` entries below for the bounded evidence ledger.
|
|
32
|
+
|
|
26
33
|
## 1.1.2-rc.3 — Complete contract correction (round 2)
|
|
27
34
|
|
|
28
35
|
> Branch: `fix/1.1.2-rc.3-contract`.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> npm-distributed OpenCode installer and delivery plugin: a single command materialises the lifecycle plugin, reviewer/verifier agents, and skills into any consumer repository, with a recoverable lock and never silently overwrites managed files.
|
|
4
4
|
>
|
|
5
|
-
> **Status:** `1.1.
|
|
5
|
+
> **Status:** `1.1.2` is on `npm dist-tag latest` and is the first fully self-hosting release. It is the accepted successor of `1.1.1` (now deprecated). The `1.1.2 stabilization` line carried three rejected RCs (`1.1.2-rc.1`, `1.1.2-rc.2`, `1.1.2-rc.3`) before the stable candidate `1.1.2-rc.4` was promoted; see `docs/release/1.1.2-correction-plan.md` for the authoritative plan and issue #56 for the bounded evidence ledger. The `1.1.0` tag is immutable. Consumers of `opencode-delivery@0.1.x` should run `pnpm dlx opencode-ship@latest init` from the same checkout; migration recognises the legacy artifacts and adopts them when their bytes match.
|
|
6
6
|
>
|
|
7
7
|
> Consumers should use `opencode-ship@1.1.0` (or `@latest`) until `1.1.1` ships. The previous `1.0.0` is on `next`; consumers who pinned to `1.0.x` will continue to receive updates on that channel.
|
|
8
8
|
|
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Third-Party Notices
|
|
2
2
|
|
|
3
|
-
`opencode-ship@1.1.2
|
|
3
|
+
`opencode-ship@1.1.2` 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
|
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// opencode-ship CLI v1.1.2
|
|
2
|
+
// opencode-ship CLI v1.1.2
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __esm = (fn, res) => function __init() {
|
|
@@ -110,7 +110,7 @@ import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
|
110
110
|
var PACKAGE_VERSION, TEMPLATE_SET;
|
|
111
111
|
var init_version = __esm({
|
|
112
112
|
"src/version.js"() {
|
|
113
|
-
PACKAGE_VERSION = "1.1.2
|
|
113
|
+
PACKAGE_VERSION = "1.1.2";
|
|
114
114
|
TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
115
115
|
}
|
|
116
116
|
});
|
|
@@ -5210,7 +5210,7 @@ async function assembleLock({ repoRoot, plan, lock, configPlan, rootPlan, profil
|
|
|
5210
5210
|
manager: {
|
|
5211
5211
|
schemaVersion: CURRENT_LOCK_SCHEMA,
|
|
5212
5212
|
name: "opencode-ship",
|
|
5213
|
-
version: "1.1.2
|
|
5213
|
+
version: "1.1.2",
|
|
5214
5214
|
templateSet: TEMPLATE_SET_ID,
|
|
5215
5215
|
profile: resolvedProfile,
|
|
5216
5216
|
appliedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
package/dist/core.js
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// opencode-ship v1.1.2
|
|
1
|
+
// opencode-ship v1.1.2
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __esm = (fn, res) => function __init() {
|
|
@@ -19328,7 +19328,7 @@ function selectRuntimeAdapter({ config: config2, shipAdapter, legacyAdapter }) {
|
|
|
19328
19328
|
import { readFileSync as readFileSync4, existsSync as existsSync27 } from "node:fs";
|
|
19329
19329
|
import { dirname as dirname12, resolve as resolve21 } from "node:path";
|
|
19330
19330
|
import { fileURLToPath } from "node:url";
|
|
19331
|
-
var PACKAGE_VERSION = "1.1.2
|
|
19331
|
+
var PACKAGE_VERSION = "1.1.2";
|
|
19332
19332
|
var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
19333
19333
|
|
|
19334
19334
|
// src/plugin.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ship",
|
|
3
|
-
"version": "1.1.2
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "npm-distributed OpenCode installer that materializes the delivery plugin, reviewer/verifier agents, skills, ship config and lock into any consumer repository.",
|
|
6
6
|
"license": "MIT",
|