agentskeptic 7.9.2 → 7.9.3

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.
@@ -4,7 +4,7 @@
4
4
  "identityVersion": "1.0.0",
5
5
  "mergeGateFingerprintSha256": "64b5ae2ed5025c08c7c9d7b601958cc90edc32c0d80ea207fdaa373de5b9c2fc",
6
6
  "nodeEnginesDeclared": "22.x || 24.x",
7
- "npmPackageVersion": "7.9.2",
7
+ "npmPackageVersion": "7.9.3",
8
8
  "pythonPipExtrasFragment": "dev,postgres",
9
9
  "verificationContractManifest": {
10
10
  "manifestSha256": "5a4513967abe3a20ff0f5c875fb6481a704c79c54a1f7c7acb5aa364a3527fca",
@@ -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 = "7.9.2";
3
+ export declare const AGENTSKEPTIC_CLI_SEMVER = "7.9.3";
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 = "7.9.2";
4
+ export const AGENTSKEPTIC_CLI_SEMVER = "7.9.3";
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": "7.9.2",
3
+ "version": "7.9.3",
4
4
  "description": "Tool activity vs downstream state at verify: SQL, HTTP, vectors, documents, S3 objects—deterministic verdict artifacts (verification-state-stores.md).",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -61,7 +61,6 @@
61
61
  "validate:activation-spine": "node scripts/validate-activation-spine.mjs",
62
62
  "validate:integrator-onboarding-shape": "node scripts/validate-integrator-onboarding-shape.mjs",
63
63
  "check:activation-journey-copy": "node scripts/validate-activation-journey-copy.mjs",
64
- "test:commercial-layer": "node scripts/validate-commercial-funnel.mjs",
65
64
  "build:website": "npm run build && npm run build --prefix website",
66
65
  "check:web-demo-prereqs": "node scripts/check-web-demo-prereqs.mjs",
67
66
  "generate:partner-quickstart-commands": "node scripts/generate-partner-quickstart-commands.mjs",
@@ -23,7 +23,6 @@
23
23
  "website/src/generated/",
24
24
  "src/publicDistribution.generated.ts",
25
25
  "src/sdk/_generated/",
26
- "src/agentskeptic-error-codes.json",
27
26
  "website/content/surfaces/guides/",
28
27
  "website/src/content/embeddedReports/",
29
28
  "python/tests/parity_vectors/"
@@ -1,7 +1,7 @@
1
1
  openapi: "3.0.3"
2
2
  info:
3
3
  title: AgentSkeptic commercial license API
4
- version: "7.9.2"
4
+ version: "7.9.3"
5
5
  contact:
6
6
  url: https://agentskeptic.com
7
7
  x-agentskeptic-distribution:
@@ -214,6 +214,7 @@ This is an npm workspace monorepo with two packages:
214
214
  - The website migration scripts (\`db-migrate.mjs\`) load \`website/.env\` but only for keys not already in \`process.env\`. If env vars are not exported in the shell, the \`.env\` file must exist.
215
215
  - The commit hook (\`.husky/commit-msg\`) runs \`commitlint\` for Conventional Commits. Use \`--no-verify\` to skip if needed, but CI enforces the same rules on PRs.
216
216
  - PostgreSQL must be running before migrations or website dev. Start with: \`pg_ctlcluster 16 main start\`.
217
+ - Next.js build output under \`website/.next/\` (and repo-root \`.next/\` if present) is gitignored disposable state—delete those folders when they clutter \`git status\`; they must not appear in commits or reviewable diffs.
217
218
  - \`src/planTransition.test.ts\` has a known timeout-sensitive integration test that may flake in resource-constrained environments. This is pre-existing, not a setup issue.
218
219
  `;
219
220
  writeFileSync(join(ROOT, "AGENTS.md"), body, "utf8");