opencode-ship 1.1.0 → 1.1.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 +86 -11
- package/README.md +14 -13
- package/THIRD_PARTY_NOTICES.md +1 -1
- package/assets/agents/ship-controller.md +1 -1
- package/assets/agents/ship-final-spec-reviewer.md +1 -1
- package/assets/agents/ship-final-standards-reviewer.md +1 -1
- package/assets/agents/ship-planner.md +1 -1
- package/assets/agents/ship-task-builder.md +1 -1
- package/assets/agents/ship-task-reviewer.md +1 -1
- package/dist/cli.js +1411 -1202
- package/dist/core.js +57 -4
- package/dist/plugin.js +203 -233
- package/docs/release/1.1.1-stabilization-plan.md +655 -0
- package/package.json +1 -1
- package/schema/ship-config.schema.json +24 -2
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/SKILL.md +0 -0
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/domain.md +0 -0
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-github.md +0 -0
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-gitlab.md +0 -0
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-local.md +0 -0
- /package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/triage-labels.md +0 -0
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"schemaVersion": { "enum": [1, 2] },
|
|
10
10
|
"profile": {
|
|
11
11
|
"type": "string",
|
|
12
|
-
"enum": ["engineering"],
|
|
13
|
-
"description": "Active profile. Engineering is the only supported profile in 1.1.0."
|
|
12
|
+
"enum": ["engineering", "core"],
|
|
13
|
+
"description": "Active profile. Engineering is the only supported profile in 1.1.0; core is accepted on read for legacy consumer migration."
|
|
14
14
|
},
|
|
15
15
|
"owner": {
|
|
16
16
|
"type": "string",
|
|
@@ -173,6 +173,28 @@
|
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
}
|
|
176
|
+
},
|
|
177
|
+
"skillDiscovery": {
|
|
178
|
+
"type": "object",
|
|
179
|
+
"additionalProperties": false,
|
|
180
|
+
"description": "Trusted-auto skill discovery policy. Default mode is trusted-auto with the canonical owner allowlist and install-count threshold.",
|
|
181
|
+
"properties": {
|
|
182
|
+
"mode": {
|
|
183
|
+
"type": "string",
|
|
184
|
+
"enum": ["suggest-only", "trusted-auto", "disabled"]
|
|
185
|
+
},
|
|
186
|
+
"trustedOwners": {
|
|
187
|
+
"type": "array",
|
|
188
|
+
"items": { "type": "string", "pattern": "^[A-Za-z0-9_.-]+$" }
|
|
189
|
+
},
|
|
190
|
+
"minInstalls": { "type": "integer", "minimum": 0 },
|
|
191
|
+
"maxAutoInstall": { "type": "integer", "minimum": 0, "maximum": 20 },
|
|
192
|
+
"blocklist": {
|
|
193
|
+
"type": "array",
|
|
194
|
+
"items": { "type": "string", "pattern": "^[A-Za-z0-9_./-]+$" }
|
|
195
|
+
},
|
|
196
|
+
"requireImmutableRef": { "type": "boolean" }
|
|
197
|
+
}
|
|
176
198
|
}
|
|
177
199
|
}
|
|
178
200
|
}
|
|
File without changes
|
|
File without changes
|
/package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-github.md
RENAMED
|
File without changes
|
/package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-gitlab.md
RENAMED
|
File without changes
|
/package/assets/skills/{setup-engineering-workflow → setup-ship-workflow}/issue-tracker-local.md
RENAMED
|
File without changes
|
|
File without changes
|