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 +2 -2
- package/dist/publicDistribution.generated.d.ts +1 -1
- package/dist/publicDistribution.generated.js +1 -1
- package/dist/quickVerify/quickVerifyScope.d.ts +1 -1
- package/dist/quickVerify/quickVerifyScope.js +1 -1
- package/package.json +7 -7
- package/schemas/quick-verify-report.schema.json +1 -1
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
|
-
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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": "
|
|
31
|
-
"test:node:sqlite": "node scripts/
|
|
32
|
-
"test:postgres": "node scripts/
|
|
33
|
-
"test:workflow-truth-contract": "node
|
|
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": "
|
|
36
|
+
"test": "node scripts/verify.mjs --profile=default",
|
|
37
37
|
"test:debug-ui": "playwright test",
|
|
38
|
-
"test:ci": "
|
|
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.
|
|
33
|
+
"quickVerifyVersion": { "type": "string", "const": "1.2.1" },
|
|
34
34
|
"capabilities": {
|
|
35
35
|
"type": "array",
|
|
36
36
|
"const": ["inferred_row", "inferred_related_exists"]
|