scene-capability-engine 3.0.0 → 3.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +1 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ### Added
11
11
  - **SCE naming consolidation + compatibility bridge**: Rebranded product naming to `Scene Capability Engine`, moved package to `scene-capability-engine`, promoted `sce` as the primary CLI command, and preserved `sco` / `kse` / `kiro-spec-engine` aliases for migration continuity.
12
+ - **Branding consistency release guard**: Added `test:brand-consistency` to block publish when legacy repository/package/product naming reappears in tracked source files.
12
13
  - **Rate-limit launch budget safety guard**: Hardened orchestration launch-budget bookkeeping to safely handle partially initialized engine instances in property/instrumentation scenarios.
13
14
  - **Property test CI stability (`orchestration-engine.property`)**: Disabled launch-budget waiting in parallel invariant property harness to avoid artificial 60s hold windows and intermittent Jest worker crashes under high-concurrency CI runs.
14
15
  - **Moqui runtime binding config overrides**: Added `--moqui-config <path>` to `kse scene run` and `kse scene doctor`, allowing runtime binding resolution to use an explicit `moqui-adapter.json` path per execution context.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scene-capability-engine",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "SCE (Scene Capability Engine) - A CLI tool and npm package for spec-driven development with AI coding assistants.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -34,11 +34,12 @@
34
34
  "test:properties": "npx jest tests/properties",
35
35
  "test:handles": "npx jest --config=jest.config.js --runInBand --detectOpenHandles",
36
36
  "test:skip-audit": "node scripts/check-skip-allowlist.js",
37
+ "test:brand-consistency": "node scripts/check-branding-consistency.js",
37
38
  "test:watch": "npx jest --watch",
38
39
  "coverage": "npx jest --coverage",
39
40
  "report:moqui-baseline": "node scripts/moqui-template-baseline-report.js --json",
40
41
  "report:moqui-core-regression": "node scripts/moqui-core-regression-suite.js --json",
41
- "prepublishOnly": "npm run test:full && npm run test:skip-audit",
42
+ "prepublishOnly": "npm run test:full && npm run test:skip-audit && npm run test:brand-consistency",
42
43
  "publish:manual": "npm publish --access public",
43
44
  "install-global": "npm install -g .",
44
45
  "uninstall-global": "npm uninstall -g scene-capability-engine"