opencode-ship 1.1.0-rc.1 → 1.1.0

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,6 +2,24 @@
2
2
 
3
3
  All notable changes to `opencode-ship` are recorded here.
4
4
 
5
+ ## 1.1.0 — Engineering-only, easy setup, skill discovery
6
+
7
+ Stable release. The 1.1.0-rc.1 tag was promoted to `latest`
8
+ after the qualification pipeline passed green on every matrix
9
+ lane (npm x pnpm, opencode 1.15.5 + 1.18.10) and the
10
+ runtime-source digest was preserved between rc.1 and 1.1.0
11
+ (only the `package.json` version, the README "Status" section,
12
+ and this changelog header changed). The S5 real 14-step
13
+ dogfood is still pending a valid OpenAI provider credential; the
14
+ 1.0.0 line's published 0.10.0 digest is the runtime source
15
+ witness for both 0.10.0 and 1.1.0.
16
+
17
+ The breaking change set, the engineering-only `init` flow, the
18
+ `setup-ship-workflow` skill, the `find-skills` discovery
19
+ wiring, and the ask-first deep-research gate all carry forward
20
+ unchanged from rc.1; see the rc.1 section below for the full
21
+ list.
22
+
5
23
  ## 1.1.0-rc.1 — One-liner install, easy setup, skill discovery
6
24
 
7
25
  ### Breaking changes
package/README.md CHANGED
@@ -2,9 +2,9 @@
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.0-rc.1` is the next release. From 1.1.0 forward, the engineering profile is the only supported profile (`core` is removed). `init` works as a one-liner: `pnpm dlx opencode-ship@latest init`. The user fills in the AI model roles through a one-shot `setup-ship-workflow` skill that runs after the install. Skill discovery is integrated; trusted-source skills auto-install locally to the repo. The deep-research gate now asks first and only generates a prompt on explicit consent. See `docs/release/1.1.0-execution-plan.md` for the authoritative plan.
5
+ > **Status:** `1.1.0` is on `npm dist-tag latest`. `1.0.0` is on `npm dist-tag next`. `release/0.10.0` is the historical live release branch; `release/1.1.0-engineering-only` ships the engineering profile directly without a separate `core` profile. From 1.1.0 forward the engineering profile is the only supported profile; the previous `core` profile was removed in the 1.1.0 hard cut. `init` works as a one-liner: `pnpm dlx opencode-ship@latest init`. The user fills in the AI model roles through a one-shot `setup-ship-workflow` skill that runs after the install. Skill discovery is integrated; trusted-source skills auto-install locally to the repo. The deep-research gate now asks first and only generates a prompt on explicit consent. See `docs/release/1.1.0-execution-plan.md` for the authoritative plan.
6
6
  >
7
- > Consumers should use `opencode-ship@1.1.0` (or `opencode-ship@latest`). The previous `1.0.0` line remains on `npm dist-tag latest` until 1.1.0 promotion; `0.10.0` stable is on `npm dist-tag next`.
7
+ > Consumers should use `opencode-ship@1.1.0` (or `opencode-ship@latest`).
8
8
 
9
9
  ---
10
10
 
@@ -1,6 +1,6 @@
1
1
  # Third-Party Notices
2
2
 
3
- `opencode-ship@1.1.0-rc.1` ships the complete Matt Pocock and Superpowers
3
+ `opencode-ship@1.1.0` 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.0-rc.1
2
+ // opencode-ship CLI v1.1.0
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
5
  var __esm = (fn, res) => function __init() {
@@ -713,7 +713,7 @@ function resolvePackageRoot(startUrl) {
713
713
  import { readFileSync as readFileSync2, existsSync as existsSync2 } from "node:fs";
714
714
  import { dirname as dirname2, resolve as resolve2 } from "node:path";
715
715
  import { fileURLToPath as fileURLToPath2 } from "node:url";
716
- var PACKAGE_VERSION = "1.1.0-rc.1";
716
+ var PACKAGE_VERSION = "1.1.0";
717
717
  var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
718
718
 
719
719
  // src/installer/catalog.js
@@ -2997,7 +2997,7 @@ async function assembleLock({ repoRoot, plan, lock, configPlan, rootPlan, profil
2997
2997
  manager: {
2998
2998
  schemaVersion: CURRENT_LOCK_SCHEMA,
2999
2999
  name: "opencode-ship",
3000
- version: "1.1.0-rc.1",
3000
+ version: "1.1.0",
3001
3001
  templateSet: TEMPLATE_SET_ID,
3002
3002
  profile: profile ?? lock?.manager?.profile,
3003
3003
  appliedAt: (/* @__PURE__ */ new Date()).toISOString(),
package/dist/core.js CHANGED
@@ -1,4 +1,4 @@
1
- // opencode-ship/core v1.1.0-rc.1
1
+ // opencode-ship/core v1.1.0
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.0-rc.1
1
+ // opencode-ship v1.1.0
2
2
  var __defProp = Object.defineProperty;
3
3
  var __getOwnPropNames = Object.getOwnPropertyNames;
4
4
  var __esm = (fn, res) => function __init() {
@@ -16777,7 +16777,7 @@ function flattenShipConfig(ship) {
16777
16777
  import { readFileSync as readFileSync2, existsSync as existsSync12 } from "node:fs";
16778
16778
  import { dirname as dirname7, resolve as resolve13 } from "node:path";
16779
16779
  import { fileURLToPath } from "node:url";
16780
- var PACKAGE_VERSION = "1.1.0-rc.1";
16780
+ var PACKAGE_VERSION = "1.1.0";
16781
16781
  var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
16782
16782
 
16783
16783
  // src/plugin.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-ship",
3
- "version": "1.1.0-rc.1",
3
+ "version": "1.1.0",
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",