agentskeptic 6.3.0 → 6.4.0

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.
@@ -82,6 +82,7 @@
82
82
  },
83
83
  "integratePage": {
84
84
  "truthCheckCommand": "npx agentskeptic check --workflow-id YOUR_WORKFLOW_ID \\\n --project ./your-app \\\n --db ./path/to/readable.sqlite\n\n# Or explicit registry/events paths:\n# npx agentskeptic check --workflow-id YOUR_WORKFLOW_ID \\\n# --events ./agentskeptic/events.ndjson \\\n# --registry ./agentskeptic/tools.json \\\n# --db ./path/to/readable.sqlite",
85
+ "quickVerifyCommand": "npx agentskeptic quick \\\n --input path/to/quick-input.ndjson \\\n --export-registry path/to/tools.json \\\n --db path/to/readable.sqlite \\\n --no-human-report",
85
86
  "packLedCommand": "npx agentskeptic activate --input ./path/to/workflow-bootstrap-input.json \\\n --db ./path/to/readable.sqlite \\\n --out ./path/to/agent-pack\n\n# Replay only (advanced): NDJSON pack you already authored\nnpx agentskeptic crossing \\\n --workflow-id YOUR_WORKFLOW_ID \\\n --events ./path/to/events.ndjson \\\n --registry ./path/to/tools.json \\\n --db ./path/to/readable.sqlite",
86
87
  "githubDeepLink": "https://github.com/jwekavanagh/agentskeptic/blob/main/docs/integrate.md",
87
88
  "githubFirstRunLink": "https://github.com/jwekavanagh/agentskeptic/blob/main/docs/integrate.md"
@@ -4,7 +4,7 @@
4
4
  "identityVersion": "1.0.0",
5
5
  "mergeGateFingerprintSha256": "64b5ae2ed5025c08c7c9d7b601958cc90edc32c0d80ea207fdaa373de5b9c2fc",
6
6
  "nodeEnginesDeclared": "22.x || 24.x",
7
- "npmPackageVersion": "6.3.0",
7
+ "npmPackageVersion": "6.4.0",
8
8
  "pythonPipExtrasFragment": "dev,postgres",
9
9
  "verificationContractManifest": {
10
10
  "manifestSha256": "c5f23ec43576716c4b9a13e752cd2962a78bb4b4da1f9e521f911e15dfd80268",
@@ -1,5 +1,5 @@
1
1
  export declare const PUBLIC_DISTRIBUTION_SSOT_BLOB_URL = "https://github.com/jwekavanagh/agentskeptic/blob/main/docs/public-distribution.md";
2
2
  export declare const PUBLIC_CANONICAL_SITE_ORIGIN = "https://agentskeptic.com";
3
- export declare const AGENTSKEPTIC_CLI_SEMVER = "6.3.0";
3
+ export declare const AGENTSKEPTIC_CLI_SEMVER = "6.4.0";
4
4
  export declare function formatDistributionFooter(): string;
5
5
  //# sourceMappingURL=publicDistribution.generated.d.ts.map
@@ -1,7 +1,7 @@
1
1
  // Generated by npm run emit-primary-marketing — do not hand edit.
2
2
  export const PUBLIC_DISTRIBUTION_SSOT_BLOB_URL = "https://github.com/jwekavanagh/agentskeptic/blob/main/docs/public-distribution.md";
3
3
  export const PUBLIC_CANONICAL_SITE_ORIGIN = "https://agentskeptic.com";
4
- export const AGENTSKEPTIC_CLI_SEMVER = "6.3.0";
4
+ export const AGENTSKEPTIC_CLI_SEMVER = "6.4.0";
5
5
  export function formatDistributionFooter() {
6
6
  return "Context: https://agentskeptic.com/database-truth-vs-traces\n"
7
7
  + "https://agentskeptic.com/integrate\n"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentskeptic",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "description": "Structured tool activity vs downstream state at verify time: SQL (SQLite, Postgres, MySQL), HTTP witnesses, supported vector indexes, MongoDB documents, and S3-compatible objects when configured—deterministic verdict artifacts (see verification-state-stores.md).",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,6 +31,7 @@
31
31
  "start": "npm run build && node scripts/demo.mjs",
32
32
  "dev": "npm run dev -w agentskeptic-web",
33
33
  "verification:truth": "node scripts/verification-truth.mjs",
34
+ "verification:truth:local": "node scripts/verification-truth-local-preflight.mjs && dotenv -e website/.env -- npm run verification:truth",
34
35
  "test:vitest": "vitest run",
35
36
  "test:node:sqlite": "npm run build && node scripts/run-sqlite-node-test-batch.mjs",
36
37
  "test:postgres": "node scripts/run-postgres-node-test-batch.mjs",
@@ -58,6 +59,7 @@
58
59
  "check:integrate-activation-shell": "node scripts/generate-integrate-activation-shell.mjs --check",
59
60
  "validate:activation-spine": "node scripts/validate-activation-spine.mjs",
60
61
  "validate:integrator-onboarding-shape": "node scripts/validate-integrator-onboarding-shape.mjs",
62
+ "check:activation-journey-copy": "node scripts/validate-activation-journey-copy.mjs",
61
63
  "test:commercial-layer": "node scripts/validate-commercial-funnel.mjs",
62
64
  "build:website": "npm run build && npm run build --prefix website",
63
65
  "check:web-demo-prereqs": "node scripts/check-web-demo-prereqs.mjs",
@@ -105,6 +107,7 @@
105
107
  "@types/pg": "^8.20.0",
106
108
  "@types/picomatch": "^4.0.3",
107
109
  "conventional-changelog-conventionalcommits": "^9.3.1",
110
+ "dotenv-cli": "^8.0.0",
108
111
  "husky": "^9.1.7",
109
112
  "openapi-typescript": "^7.10.1",
110
113
  "semantic-release": "^25.0.0",
@@ -1,7 +1,7 @@
1
1
  openapi: "3.0.3"
2
2
  info:
3
3
  title: AgentSkeptic commercial license API
4
- version: "6.3.0"
4
+ version: "6.4.0"
5
5
  contact:
6
6
  url: https://agentskeptic.com
7
7
  x-agentskeptic-distribution:
@@ -204,7 +204,8 @@ This is an npm workspace monorepo with two packages:
204
204
  | Core vitest | \`npx vitest run\` (repo root) | Runs \`src/**/*.test.ts\` and \`test/**/*.test.ts\` |
205
205
  | SQLite tests | \`npm run test:node:sqlite\` | Builds first, then runs node:test suite (fast, no Postgres) |
206
206
  | Website vitest | \`npm run test:vitest -w agentskeptic-web\` | Needs \`DATABASE_URL\` + \`TELEMETRY_DATABASE_URL\` |
207
- | Full CI gate | \`npm test\` (or \`npm run verification:truth\`) | Requires Postgres; see \`docs/testing.md\` |
207
+ | Full CI gate | \`npm test\` (or \`npm run verification:truth\`) | Requires Postgres env vars; see \`docs/testing.md\` |
208
+ | Full CI gate (local env file) | \`npm run verification:truth:local\` | Loads **\`website/.env\`** then runs the same \`verification:truth\` as CI; do not copy \`website/.env\` to repo root |
208
209
  | DB migrate | \`npm run db:migrate\` / \`npm run db:migrate:telemetry\` (from \`website/\`) | Requires \`DATABASE_URL\`/\`TELEMETRY_DATABASE_URL\` in env or \`website/.env\` |
209
210
 
210
211
  ### Gotchas
@@ -120,6 +120,13 @@ function validateMarketingValue(m) {
120
120
  if (!cmd.includes("tools.json")) {
121
121
  throw new Error("marketing: packLedCommand must reference tools.json");
122
122
  }
123
+ const qv = String(m.integratePage.quickVerifyCommand);
124
+ if (!qv.includes("agentskeptic quick")) {
125
+ throw new Error("marketing: integratePage.quickVerifyCommand must include agentskeptic quick");
126
+ }
127
+ if (!qv.includes("--export-registry")) {
128
+ throw new Error("marketing: integratePage.quickVerifyCommand must include --export-registry");
129
+ }
123
130
  if ("requirements" in m.integratePage) {
124
131
  throw new Error(
125
132
  "marketing: integratePage.requirements removed — use Buyer Truth integrateRequirements (/integrate page)",