tersign 0.1.10 → 0.1.12
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 +4 -5
- package/dist/mcp/server.d.ts +1 -1
- package/dist/mcp/server.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ npm i tersign
|
|
|
63
63
|
| Receipts | Seller-signed EIP-712 (x402 offer-receipt extension), keccak256 canonical digests |
|
|
64
64
|
| `withAssure()` | x402 fetch-handler adapter — a receipt per paid call |
|
|
65
65
|
| Compliance records | EU Art-226b minimal tier · EN 16931 full tier · HK IRO s.51C retention |
|
|
66
|
-
| Action records | `ActionRecordV1` — GDPR-minimized
|
|
66
|
+
| Action records | `ActionRecordV1` — GDPR-minimized; captures the content of an Art-50 disclosure so the disclosure itself is independently attested, not self-reported |
|
|
67
67
|
| Refunds | Chained to the original receipt via `refundOf` |
|
|
68
68
|
| Disputes v0 | Objective reason codes, evidence submission, adjudication |
|
|
69
69
|
| Venue envelopes | Internet Court (5,000-char slot) · Kleros ERC-1497 · UMA · generic |
|
|
@@ -104,9 +104,9 @@ The agent skill `tersign-evidence` ships at [tersignhq/skills](https://github.co
|
|
|
104
104
|
## The Live Record
|
|
105
105
|
|
|
106
106
|
- **Ledger + dashboard** — public verify page: https://tersign.ai/verify
|
|
107
|
-
- **Census** —
|
|
108
|
-
- **Conformance** — RFC 8785 (JCS) canonical serialization, keccak256 digests,
|
|
109
|
-
- **Standards** — the `compliance-fields` extension (
|
|
107
|
+
- **Census** — hash-chained observations across the live x402 seller catalog, probed autonomously; the numbers are served live, never quoted stale: https://prober.tersign.ai/v1/prober/stats
|
|
108
|
+
- **Conformance** — RFC 8785 (JCS) canonical serialization, keccak256 digests, and the public two-sided vector suite (independence, completeness, existence, phase): [tersignhq/evidence-record-conformance](https://github.com/tersignhq/evidence-record-conformance). Reproduce the bytes and your implementation is conformant — in any language.
|
|
109
|
+
- **Standards** — the `compliance-fields` extension — a typed compliance-record schema plus three evaluator-side disqualifications (independence, completeness/existence, economic-phase separation), each executable as a two-sided conformance vector — is under review upstream ([x402-foundation/x402#2853](https://github.com/x402-foundation/x402/pull/2853)) and referenced in the x402 TSC's evidence-record charter agenda ([tsc#4](https://github.com/x402-foundation/tsc/issues/4)). The merged offer-receipt spec already carries the completeness criterion at SHOULD strength (§4.5.1, [#2811](https://github.com/x402-foundation/x402/pull/2811)).
|
|
110
110
|
|
|
111
111
|
## Machine Surfaces
|
|
112
112
|
|
|
@@ -136,4 +136,3 @@ Full URLs, readable without auth. If you are an agent, start here.
|
|
|
136
136
|
|
|
137
137
|
<p align="center"><sub><b>Venues rotate. The transcript endures.</b></sub></p>
|
|
138
138
|
|
|
139
|
-
- Evidence-record conformance suite (two-sided vectors: independence, completeness, existence, phase): https://github.com/tersignhq/evidence-record-conformance
|
package/dist/mcp/server.d.ts
CHANGED
|
@@ -8,6 +8,6 @@ export declare function envDeps(env?: Record<string, string | undefined>): McpDe
|
|
|
8
8
|
* every client; mcp.test.ts pins it against package.json so a release bump can't drift it. */
|
|
9
9
|
export declare const MCP_SERVER_IDENTITY: {
|
|
10
10
|
readonly name: "tersign";
|
|
11
|
-
readonly version: "0.1.
|
|
11
|
+
readonly version: "0.1.12";
|
|
12
12
|
};
|
|
13
13
|
export declare function buildServer(deps: McpDeps): McpServer;
|
package/dist/mcp/server.js
CHANGED
|
@@ -45,7 +45,7 @@ function json(value) {
|
|
|
45
45
|
}
|
|
46
46
|
/** MUST match package.json name/version — the MCP handshake self-reports this identity to
|
|
47
47
|
* every client; mcp.test.ts pins it against package.json so a release bump can't drift it. */
|
|
48
|
-
export const MCP_SERVER_IDENTITY = { name: 'tersign', version: '0.1.
|
|
48
|
+
export const MCP_SERVER_IDENTITY = { name: 'tersign', version: '0.1.12' };
|
|
49
49
|
export function buildServer(deps) {
|
|
50
50
|
const server = new McpServer(MCP_SERVER_IDENTITY);
|
|
51
51
|
server.registerTool('issue_receipt', {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tersign",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Tersign \u2014 the evidence layer for the agent economy. Counter-signed receipts, agent action records, idempotency enforcement, refunds, disputes, and jury-ready evidence envelopes for x402/agent-commerce sellers.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"rfc-8785",
|
|
57
57
|
"hash-chain",
|
|
58
58
|
"compliance",
|
|
59
|
-
"
|
|
59
|
+
"compliance-records",
|
|
60
60
|
"audit-trail",
|
|
61
61
|
"disputes",
|
|
62
62
|
"refunds",
|