@voce-engine/cli 0.1.0-rc.1 → 0.1.0-rc.2

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/LICENSE CHANGED
@@ -1 +1 @@
1
- Apache License 2.0
1
+ Apache License 2.0
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # @voce-engine/cli
2
-
3
- The `voce` command is the offline-first, explicit-path CLI for VOCE v0.1. It does not load lifecycle scripts, discover global packages, inspect credentials, or call a Provider unless the command explicitly selects the built-in `mock` provider.
4
-
5
- > `0.1.0-rc.1` is a release candidate, not production-ready. CLI behavior may change before `0.1.0`.
6
-
7
- ```bash
8
- npm install --global @voce-engine/cli@0.1.0-rc.1
9
- ```
1
+ # @voce-engine/cli
2
+
3
+ The `voce` command is the offline-first, explicit-path CLI for VOCE v0.1. It does not load lifecycle scripts, discover global packages, inspect credentials, or call a Provider unless the command explicitly selects the built-in `mock` provider.
4
+
5
+ > `0.1.0-rc.2` is a release candidate, not production-ready. CLI behavior may change before `0.1.0`.
6
+
7
+ ```bash
8
+ npm install --global @voce-engine/cli@0.1.0-rc.2
9
+ ```
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const CLI_VERSION = "0.1.0-rc.1";
1
+ export declare const CLI_VERSION = "0.1.0-rc.2";
2
2
  export declare function runCli(argv?: string[]): Promise<number>;
package/dist/index.js CHANGED
@@ -5,10 +5,10 @@ import * as process from 'node:process';
5
5
  import { MOCK_IMAGE_PROFILE, MOCK_JPEG_PROFILE, MOCK_LIMITED_REFERENCE_PROFILE, compileEvaluationReport, computeExecutionRunHash, computeCompilationContextHash, computeOntologyInstanceHash, computeSemanticReviewRequestHash, createConstraintWaiver, createHumanAcceptanceDecision, compileConstraints, createScenarioPackRegistry, executeOffline, executeSemanticReview, FixtureReferenceInterpreter, FixtureSemanticReviewer, guardPromptCandidate, renderStaticTraceReport, sha256, traceModelFromExecution, validateStructuralImage, canonicalize, } from '@voce-engine/core';
6
6
  import { FIXTURE_M6_OPAQUE_PNG, fixtureChangeIntent, fixtureM4ConstraintInput, fixtureM5Candidate, fixtureM5ExecutionInput, fixtureM5GuardInput, fixtureM5PromptIR, fixtureM6Artifact, fixtureM6Authorization, fixtureScopePlan, } from '@voce-engine/testkit';
7
7
  import { BUNDLE_MANIFEST_SCHEMA_VERSION } from '@voce-engine/contracts';
8
- export const CLI_VERSION = '0.1.0-rc.1';
8
+ export const CLI_VERSION = '0.1.0-rc.2';
9
9
  const TOOL_ID = '@voce-engine/cli';
10
- const CONTRACTS_VERSION = '0.1.0-rc.1';
11
- const CORE_VERSION = '0.1.0-rc.1';
10
+ const CONTRACTS_VERSION = '0.1.0-rc.2';
11
+ const CORE_VERSION = '0.1.0-rc.2';
12
12
  const SOURCE_SCHEMA = 'voce.scenario-pack-source/v1alpha1';
13
13
  const PACK_SCHEMA = 'voce.scenario-pack/v1alpha1';
14
14
  const HASH = /^sha256:[0-9a-f]{64}$/;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voce-engine/cli",
3
- "version": "0.1.0-rc.1",
3
+ "version": "0.1.0-rc.2",
4
4
  "description": "Offline-first command line tools for the VOCE v0.1 release candidate.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -36,9 +36,9 @@
36
36
  "tag": "next"
37
37
  },
38
38
  "dependencies": {
39
- "@voce-engine/contracts": "0.1.0-rc.1",
40
- "@voce-engine/core": "0.1.0-rc.1",
41
- "@voce-engine/testkit": "0.1.0-rc.1"
39
+ "@voce-engine/contracts": "0.1.0-rc.2",
40
+ "@voce-engine/core": "0.1.0-rc.2",
41
+ "@voce-engine/testkit": "0.1.0-rc.2"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsc -b"