kiro-spec-engine 1.47.28 → 1.47.29

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.
@@ -836,10 +836,11 @@ kse scene template-render --package scene-erp --values '{"entity_name":"Order"}'
836
836
  ### Scene Package Batch Publish
837
837
 
838
838
  ```bash
839
- # Publish scene package templates from a handoff manifest (default: completed specs only + ontology validation required)
839
+ # Publish scene package templates from a handoff manifest
840
+ # Defaults: completed specs only + ontology validation required + ontology batch gate (avg>=70, valid-rate>=100%)
840
841
  kse scene package-publish-batch --manifest docs/handoffs/handoff-manifest.json --json
841
842
 
842
- # Use 331-poc preset defaults (manifest/docs paths + completed filter + ontology batch gate: avg>=70, valid-rate>=100%)
843
+ # Optional convenience preset for 331-style path conventions (manifest/docs fallback paths)
843
844
  kse scene package-publish-batch --from-331 --json
844
845
 
845
846
  # Preview batch publish plan without writing template files
@@ -424,8 +424,8 @@ function registerSceneCommands(program) {
424
424
  .option('--require-ontology-validation', 'Require ontology graph validation before publish (default: enabled)')
425
425
  .option('--no-require-ontology-validation', 'Allow publish when ontology graph validation fails (not recommended)')
426
426
  .option('--ontology-min-score <number>', 'Minimum ontology semantic quality score (0-100)')
427
- .option('--ontology-min-average-score <number>', `Minimum ontology average score for selected batch (0-100, default with --from-331: ${SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_AVERAGE_SCORE})`)
428
- .option('--ontology-min-valid-rate <number>', `Minimum ontology graph-valid rate for selected batch (0-100, default with --from-331: ${SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_VALID_RATE})`)
427
+ .option('--ontology-min-average-score <number>', `Minimum ontology average score for selected batch (0-100, default: ${SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_AVERAGE_SCORE})`)
428
+ .option('--ontology-min-valid-rate <number>', `Minimum ontology graph-valid rate for selected batch (0-100, default: ${SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_VALID_RATE})`)
429
429
  .option('--ontology-report-out <path>', 'Write ontology/publish batch report JSON to file')
430
430
  .option('--ontology-task-out <path>', 'Write ontology remediation task draft markdown to file')
431
431
  .option('--ontology-task-queue-out <path>', 'Write ontology remediation queue lines for close-loop-batch')
@@ -1227,10 +1227,10 @@ function normalizeScenePackagePublishBatchOptions(options = {}) {
1227
1227
  ? null
1228
1228
  : Number(options.ontologyMinScore),
1229
1229
  ontologyMinAverageScore: options.ontologyMinAverageScore === undefined || options.ontologyMinAverageScore === null || options.ontologyMinAverageScore === ''
1230
- ? (from331 ? SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_AVERAGE_SCORE : null)
1230
+ ? SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_AVERAGE_SCORE
1231
1231
  : Number(options.ontologyMinAverageScore),
1232
1232
  ontologyMinValidRate: options.ontologyMinValidRate === undefined || options.ontologyMinValidRate === null || options.ontologyMinValidRate === ''
1233
- ? (from331 ? SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_VALID_RATE : null)
1233
+ ? SCENE_PACKAGE_BATCH_DEFAULT_ONTOLOGY_MIN_VALID_RATE
1234
1234
  : Number(options.ontologyMinValidRate),
1235
1235
  ontologyReportOut: options.ontologyReportOut ? String(options.ontologyReportOut).trim() : undefined,
1236
1236
  ontologyTaskOut: options.ontologyTaskOut ? String(options.ontologyTaskOut).trim() : undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiro-spec-engine",
3
- "version": "1.47.28",
3
+ "version": "1.47.29",
4
4
  "description": "kiro-spec-engine (kse) - A CLI tool and npm package for spec-driven development with AI coding assistants. NOT the Kiro IDE desktop application.",
5
5
  "main": "index.js",
6
6
  "bin": {