@lexq/cli 0.1.41 → 0.1.42

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/index.js CHANGED
@@ -2597,7 +2597,7 @@ function registerReplayCommands(program) {
2597
2597
  get Poll a job's status, summary, and changed samples
2598
2598
  cancel Cancel a PENDING/RUNNING job
2599
2599
 
2600
- External effects (webhooks, notifications) are always mocked during replay.
2600
+ A replay sends no webhook, notification, or event: rule actions produce no outward effects.
2601
2601
  `
2602
2602
  );
2603
2603
  replay.command("decision").description("Replay a single execution against a candidate version").requiredOption("--trace-id <traceId>", "Trace ID of the past execution").requiredOption("--version-id <versionId>", "Candidate version to re-evaluate against").addHelpText(
@@ -4208,7 +4208,7 @@ function registerReplayTools(server, callApi) {
4208
4208
  "lexq_replay_decision",
4209
4209
  {
4210
4210
  title: "Replay a Decision",
4211
- description: "Re-evaluate a past execution (traceId) against a candidate version and return the decision diff (decisionChanged, effect changes, fired rules) plus a determinism verdict. Synchronous and free of charge (TPS throttle only). External effects (webhooks, notifications) are always mocked \u2014 nothing fires.",
4211
+ description: "Re-evaluate a past execution (traceId) against a candidate version and return the decision diff (decisionChanged, effect changes, fired rules) plus a determinism verdict. Synchronous and free of charge (TPS throttle only). A replay sends no webhook, notification, or event: rule actions produce no outward effects.",
4212
4212
  inputSchema: {
4213
4213
  traceId: z8.string().describe("Trace ID of the past execution to replay"),
4214
4214
  candidateVersionId: z8.string().uuid().describe("Version to re-evaluate against")
@@ -1019,7 +1019,7 @@ function registerReplayTools(server, callApi) {
1019
1019
  "lexq_replay_decision",
1020
1020
  {
1021
1021
  title: "Replay a Decision",
1022
- description: "Re-evaluate a past execution (traceId) against a candidate version and return the decision diff (decisionChanged, effect changes, fired rules) plus a determinism verdict. Synchronous and free of charge (TPS throttle only). External effects (webhooks, notifications) are always mocked \u2014 nothing fires.",
1022
+ description: "Re-evaluate a past execution (traceId) against a candidate version and return the decision diff (decisionChanged, effect changes, fired rules) plus a determinism verdict. Synchronous and free of charge (TPS throttle only). A replay sends no webhook, notification, or event: rule actions produce no outward effects.",
1023
1023
  inputSchema: {
1024
1024
  traceId: z8.string().describe("Trace ID of the past execution to replay"),
1025
1025
  candidateVersionId: z8.string().uuid().describe("Version to re-evaluate against")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lexq/cli",
3
- "version": "0.1.41",
3
+ "version": "0.1.42",
4
4
  "description": "LexQ CLI — manage policies, simulate rules, and deploy from the terminal. Built for humans and AI agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,6 +28,8 @@
28
28
  "build": "tsup",
29
29
  "lint": "eslint src/",
30
30
  "typecheck": "tsc --noEmit",
31
+ "enums": "node scripts/gen-enums.mjs",
32
+ "enums:check": "node scripts/gen-enums.mjs --check",
31
33
  "start": "node dist/index.js",
32
34
  "prepublishOnly": "pnpm build",
33
35
  "knip": "knip",