agentskeptic 6.3.0 → 6.3.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.
|
@@ -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.
|
|
7
|
+
"npmPackageVersion": "6.3.1",
|
|
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.
|
|
3
|
+
export declare const AGENTSKEPTIC_CLI_SEMVER = "6.3.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 = "6.3.
|
|
4
|
+
export const AGENTSKEPTIC_CLI_SEMVER = "6.3.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"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentskeptic",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.1",
|
|
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",
|
|
@@ -105,6 +106,7 @@
|
|
|
105
106
|
"@types/pg": "^8.20.0",
|
|
106
107
|
"@types/picomatch": "^4.0.3",
|
|
107
108
|
"conventional-changelog-conventionalcommits": "^9.3.1",
|
|
109
|
+
"dotenv-cli": "^8.0.0",
|
|
108
110
|
"husky": "^9.1.7",
|
|
109
111
|
"openapi-typescript": "^7.10.1",
|
|
110
112
|
"semantic-release": "^25.0.0",
|
|
@@ -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
|