agentskeptic 1.2.0 → 1.2.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.
package/README.md CHANGED
@@ -332,9 +332,9 @@ Everything beyond core contract verification lives in **[`docs/agentskeptic.md`]
332
332
 
333
333
  **Why SQLite:** same note as under [Contract path](#contract-path-registry--events) (file-backed demo DB; read-only verification SQL).
334
334
 
335
- Runs build, Vitest, SQLite Node tests, first-run demo, `assurance run`, the commercial enforce test harness (minimal CI enforcement + enforce integration tests), and TTFV validation. No Postgres required.
335
+ **`npm test`** runs `node scripts/verify.mjs --profile=default` (build, tests, first-run, adoption, assurance, commercial harness, TTFV, etc. no Postgres). Stage order: **[`docs/testing.md`](docs/testing.md)**.
336
336
 
337
- **Full CI parity** (Postgres + Debug Console UI tests): set **`POSTGRES_ADMIN_URL`** and **`POSTGRES_VERIFICATION_URL`**, then **`npm run test:ci`**—see [`.github/workflows/ci.yml`](.github/workflows/ci.yml). Example Postgres: `docker run -d --name etl-pg -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:16`.
337
+ **Full CI parity** (Postgres + Playwright for Debug Console): set **`POSTGRES_ADMIN_URL`** and **`POSTGRES_VERIFICATION_URL`**, then **`npm run test:ci`**. See **[`docs/testing.md`](docs/testing.md)**, [`.github/workflows/ci.yml`](.github/workflows/ci.yml), and: `docker run -d --name etl-pg -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:16`.
338
338
 
339
339
  ## Commercial CLI (npm) vs OSS (this repo)
340
340
 
@@ -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 = "1.2.0";
3
+ export declare const AGENTSKEPTIC_CLI_SEMVER = "1.2.1";
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 = "1.2.0";
4
+ export const AGENTSKEPTIC_CLI_SEMVER = "1.2.1";
5
5
  export function formatDistributionFooter() {
6
6
  return "Context: https://agentskeptic.com/database-truth-vs-traces\n"
7
7
  + "https://agentskeptic.com/integrate\n"
@@ -1,5 +1,5 @@
1
1
  /** Machine-readable Quick Verify ICP; must match schemas/quick-verify-report.schema.json and runQuickVerify.ts. */
2
- export declare const QUICK_VERIFY_VERSION: "1.2.0";
2
+ export declare const QUICK_VERIFY_VERSION: "1.2.1";
3
3
  export declare const QUICK_SCOPE_LIMITATIONS: readonly ["quick_verify_inferred_row_and_related_exists_only", "no_multi_effect_contract", "no_destructive_or_forbidden_row_contract", "contract_replay_export_row_and_eligible_related_exists_tools"];
4
4
  export type QuickVerifyScope = {
5
5
  quickVerifyVersion: typeof QUICK_VERIFY_VERSION;
@@ -1,5 +1,5 @@
1
1
  /** Machine-readable Quick Verify ICP; must match schemas/quick-verify-report.schema.json and runQuickVerify.ts. */
2
- export const QUICK_VERIFY_VERSION = "1.2.0";
2
+ export const QUICK_VERIFY_VERSION = "1.2.1";
3
3
  export const QUICK_SCOPE_LIMITATIONS = [
4
4
  "quick_verify_inferred_row_and_related_exists_only",
5
5
  "no_multi_effect_contract",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentskeptic",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Read-only verification: what agents claim versus what your databases, warehouses, and APIs show.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -27,15 +27,15 @@
27
27
  "start": "npm run build && node scripts/demo.mjs",
28
28
  "dev": "npm run dev -w agentskeptic-web",
29
29
  "test:vitest": "vitest run",
30
- "verify:decision-readiness": "npm run test:vitest -w agentskeptic-web -- __tests__/githubHeadingSlug.contract.test.ts __tests__/integrate-page-completion-semantics.contract.test.tsx __tests__/growth-metrics.contract.test.ts __tests__/repo-reference-integrity.growth-observability.test.ts",
31
- "test:node:sqlite": "node scripts/assert-dependency-security-pins.mjs && node scripts/assert-no-legacy-verify-surface.mjs && node scripts/assert-no-withWorkflowVerification-surface.mjs && node --test --test-force-exit test/reconciler.sqlite.test.mjs test/pipeline.sqlite.test.mjs test/pipeline-state-stores-sqlite.test.mjs test/decisionGate.test.mjs test/workflowTruthReport.test.mjs test/cli.test.mjs test/post-product-activation-install-id.test.mjs test/workflow-lineage-classify.test.mjs test/resolve-telemetry-source.test.mjs test/github-workflows-agentskeptic-telemetry-env.test.mjs test/maybe-emit-oss-claim-telemetry-off.test.mjs test/first-run-verify-output.integration.test.mjs test/stable-failure-consistency.test.mjs test/workflow-result-consumer-contract.test.mjs test/workflow-result-stdout-version.test.mjs test/docs-relational.test.mjs test/tools-registry-relational-surface.test.mjs test/tools-registry-state-stores.contract.test.mjs test/docs-contract.test.mjs test/docs-commercial-enforce-gate-normative.test.mjs test/docs-remediation-doctrine.test.mjs test/bundle-signature-fixture.test.mjs test/bundle-signature-codes-doc.test.mjs test/bundle-signature-cli-write.test.mjs test/quick-verify.sqlite.test.mjs test/bootstrap-pack.test.mjs test/crossing-cli.test.mjs test/quickVerifyPostbuildGate.test.mjs test/npm-scripts-contract.test.mjs test/langgraph-reference-emitter-before-cli-spawn.test.mjs test/langgraph-checkpoint-trust-terminal.contract.test.mjs test/langgraph-ineligible-certificate.import-guard.test.mjs test/removed-script-names-ban.test.mjs test/docs-workflow-result-normative-prose.test.mjs test/enforce-oss-forbidden.test.mjs test/oss-output-lock-batch.test.mjs test/lock-success-monetized-footer.integration.test.mjs test/docs-enforce-stream-contract.test.mjs test/docs-quick-enforce-link.test.mjs test/discovery-payload.test.mjs test/redaction-rules.test.mjs test/indexable-guide-paths-fs.contract.test.mjs test/npm-pack-discovery-scripts.test.mjs test/registry-metadata-parity.test.mjs test/docs-related-exists-export-negative.mjs test/quick-param-pointer.gates.test.mjs test/dependency-security-pins.schema.contract.test.mjs test/drizzle-identifier-safety.contract.test.mjs test/assert-destructive-postgres-urls.test.mjs test/readme-wedge-inevitability.test.mjs test/adoption-complete-surface-parity.test.mjs test/adoption-epistemics-contract.test.mjs test/integrate-spine-contract.test.mjs test/integrate-spine-fixtures.test.mjs test/integrate-route-copy-absence.test.mjs test/adoption-validation-registry.test.mjs test/decision-ready-surfaces-manifest.test.mjs test/oss-legacy-handoff-ban.test.mjs test/sync-adoption-canonical-to-llms.test.mjs test/verify-agentskeptic-consumer.e2e.test.mjs test/docs-first-five-minutes-ssot.guard.mjs",
32
- "test:postgres": "node scripts/pg-ci-init.mjs && node --test --test-force-exit test/postgres-session-readonly.test.mjs test/postgres-privilege.test.mjs test/pipeline.postgres.test.mjs test/decisionGate.postgres.test.mjs test/ci-workflow-truth-postgres-contract.test.mjs test/quick-verify.postgres.test.mjs",
33
- "test:workflow-truth-contract": "node --test --test-force-exit test/ci-workflow-truth-postgres-contract.test.mjs",
30
+ "verify:decision-readiness": "node scripts/verify.mjs --profile=decision-readiness",
31
+ "test:node:sqlite": "node scripts/verify.mjs --stages=nodeGuards,nodeTestSqlite",
32
+ "test:postgres": "node scripts/verify.mjs --stages=nodeTestPostgres",
33
+ "test:workflow-truth-contract": "node scripts/verify.mjs --stages=ciWorkflowTruthSingle",
34
34
  "validate-ttfv": "node scripts/validate-ttfv.mjs",
35
35
  "test:python": "node scripts/check-python-no-subprocess.mjs && node scripts/assert-python-langgraph-primacy.mjs && cd python && python -m pip install -e \".[dev]\" -q && python -m pytest tests/ -q",
36
- "test": "npm run build && npm run check:epistemic-contract-structure && npm run test:vitest && npm run test:vitest -w agentskeptic-web -- __tests__/langgraph-reference-primacy.dom.test.tsx __tests__/oss-claim-client-flow.dom.test.tsx __tests__/integrate-page-completion-semantics.contract.test.tsx __tests__/funnel-surface-beacon-keepalive.contract.test.tsx && npm run test:node:sqlite && node scripts/first-run.mjs && node scripts/validate-adoption-complete.mjs && node --test test/validate-adoption-complete-failure.test.mjs && node scripts/validate-adoption-complete.mjs && npm run partner-quickstart && node scripts/validate-integrate-spine.mjs && node scripts/validate-integrator-onboarding-shape.mjs && node scripts/langgraph-reference-verify.mjs && node scripts/assert-no-langgraph-v1-product-path.mjs && npm run test:python && node test/partner-quickstart.adversarial.mjs && npm run check:partner-quickstart && node dist/cli.js assurance run --manifest examples/assurance/manifest.json && node scripts/commercial-enforce-test-harness.mjs && npm run build && npm run validate-ttfv && node scripts/related-exists-export-user-outcome.mjs",
36
+ "test": "node scripts/verify.mjs --profile=default",
37
37
  "test:debug-ui": "playwright test",
38
- "test:ci": "npm run build && npm run check:epistemic-contract-structure && npm run test:vitest && npm run test:vitest -w agentskeptic-web -- __tests__/langgraph-reference-primacy.dom.test.tsx __tests__/oss-claim-client-flow.dom.test.tsx __tests__/integrate-page-completion-semantics.contract.test.tsx __tests__/funnel-surface-beacon-keepalive.contract.test.tsx && npm run test:node:sqlite && node scripts/first-run.mjs && node scripts/validate-adoption-complete.mjs && node --test test/validate-adoption-complete-failure.test.mjs && node scripts/validate-adoption-complete.mjs && npm run partner-quickstart && node scripts/validate-integrate-spine.mjs && node scripts/validate-integrator-onboarding-shape.mjs && node scripts/langgraph-reference-verify.mjs && node scripts/assert-no-langgraph-v1-product-path.mjs && npm run test:python && node test/partner-quickstart.adversarial.mjs && npm run check:partner-quickstart && node dist/cli.js assurance run --manifest examples/assurance/manifest.json && npm run test:postgres && node scripts/run-partner-quickstart-postgres-ci.mjs && node scripts/commercial-enforce-test-harness.mjs --require-postgres && npx playwright install chromium && npm run test:debug-ui && npm run build && npm run validate-ttfv && node scripts/related-exists-export-user-outcome.mjs",
38
+ "test:ci": "node scripts/verify.mjs --profile=ci",
39
39
  "example:workflow-hook": "npm run build && node examples/workflow-runner.mjs",
40
40
  "agentskeptic": "node dist/cli.js",
41
41
  "migrate:workflow-result-v11": "npm run build && node scripts/migrate-workflow-result-v11.mjs",
@@ -30,7 +30,7 @@
30
30
  "groundTruth"
31
31
  ],
32
32
  "properties": {
33
- "quickVerifyVersion": { "type": "string", "const": "1.2.0" },
33
+ "quickVerifyVersion": { "type": "string", "const": "1.2.1" },
34
34
  "capabilities": {
35
35
  "type": "array",
36
36
  "const": ["inferred_row", "inferred_related_exists"]