opencode-ship 0.2.0 → 0.2.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/dist/cli.js +3 -3
- package/dist/core.js +1 -1
- package/dist/plugin.js +2 -2
- package/package.json +10 -2
- package/schema/project-adapter.example.json +1 -1
- package/schema/project-opencode-shim.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// opencode-ship CLI v0.2.
|
|
2
|
+
// opencode-ship CLI v0.2.1
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __esm = (fn, res) => function __init() {
|
|
@@ -1803,7 +1803,7 @@ async function assembleLock({ repoRoot, plan, lock, configPlan, rootPlan }) {
|
|
|
1803
1803
|
manager: {
|
|
1804
1804
|
schemaVersion: 1,
|
|
1805
1805
|
name: "opencode-ship",
|
|
1806
|
-
version: "0.2.
|
|
1806
|
+
version: "0.2.1",
|
|
1807
1807
|
templateSet: getTemplateSet(),
|
|
1808
1808
|
appliedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
1809
1809
|
config: {
|
|
@@ -2432,7 +2432,7 @@ function emitReport(plan, conflicts, summary, json, exitCode, diagnostics) {
|
|
|
2432
2432
|
}
|
|
2433
2433
|
|
|
2434
2434
|
// src/cli.js
|
|
2435
|
-
var VERSION = "0.2.
|
|
2435
|
+
var VERSION = "0.2.1";
|
|
2436
2436
|
async function main() {
|
|
2437
2437
|
const parsed = parseCommand(process.argv.slice(2));
|
|
2438
2438
|
if (parsed.command === "help") {
|
package/dist/core.js
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// opencode-ship v0.2.
|
|
1
|
+
// opencode-ship v0.2.1
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __esm = (fn, res) => function __init() {
|
|
@@ -14806,7 +14806,7 @@ function flattenShipConfig(ship) {
|
|
|
14806
14806
|
}
|
|
14807
14807
|
|
|
14808
14808
|
// src/plugin.js
|
|
14809
|
-
var VERSION = "0.2.
|
|
14809
|
+
var VERSION = "0.2.1";
|
|
14810
14810
|
var toolDefs = [
|
|
14811
14811
|
["delivery_inspect", "Inspect a manifest and a project-local doctor report.", "inspect"],
|
|
14812
14812
|
["delivery_issue", "Find or create the issue for a delivery task.", "issue"],
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ship",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
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",
|
|
7
|
+
"homepage": "https://github.com/Viktorxyz/opencode-ship#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Viktorxyz/opencode-ship.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/Viktorxyz/opencode-ship/issues"
|
|
14
|
+
},
|
|
7
15
|
"type": "module",
|
|
8
16
|
"engines": {
|
|
9
17
|
"node": ">=22.6.0",
|
|
@@ -59,4 +67,4 @@
|
|
|
59
67
|
"tsx": "^4.23.1",
|
|
60
68
|
"typescript": "^5.9.3"
|
|
61
69
|
}
|
|
62
|
-
}
|
|
70
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://opencode.ai/config.json",
|
|
3
|
-
"description": "Project plugin shim that loads the reusable opencode-
|
|
4
|
-
"plugin": ["https://github.com/Viktorxyz/opencode-
|
|
3
|
+
"description": "Project plugin shim that loads the reusable opencode-ship package. Pin the version by replacing <commit-sha> with a real commit SHA before adopting.",
|
|
4
|
+
"plugin": ["https://github.com/Viktorxyz/opencode-ship#<commit-sha>"],
|
|
5
5
|
"agent": {
|
|
6
6
|
"build": {
|
|
7
7
|
"permission": {
|