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 CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  All notable changes to `opencode-ship` are recorded here.
4
4
 
5
- ## 1.1.2-rc.4 — Plan Mode write access
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.1` is on `npm dist-tag latest`. The `1.1.2` stabilization line is in progress on the `release/1.1.2-rc.4` branch of the `1.1.2 stabilization`. `1.1.2-rc.1`, `1.1.2-rc.2`, and `1.1.2-rc.3` are published on `next` but are rejected, incomplete candidates; the next candidate is `1.1.2-rc.4`, adding the Plan Mode write access required by the brainstorming / writing-plans / wayfinder skills. Once `1.1.2` ships it becomes the first fully self-hosting release and `1.1.1` is deprecated. The `1.1.0` tag is immutable. See `docs/release/1.1.2-correction-plan.md` for the authoritative plan and issue #56 for the bounded evidence ledger.
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
 
@@ -1,6 +1,6 @@
1
1
  # Third-Party Notices
2
2
 
3
- `opencode-ship@1.1.2-rc.4` ships the complete Matt Pocock and Superpowers
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-rc.4
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-rc.4";
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-rc.4",
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
@@ -1,4 +1,4 @@
1
- // opencode-ship/core v1.1.2-rc.4
1
+ // opencode-ship/core v1.1.2
2
2
 
3
3
  // src/adapter.js
4
4
  import { readFile, writeFile, mkdir, rename } from "node:fs/promises";
package/dist/plugin.js CHANGED
@@ -1,4 +1,4 @@
1
- // opencode-ship v1.1.2-rc.4
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-rc.4";
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-rc.4",
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",