@actuarial-ts/agents 0.10.0 → 0.11.0
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 +9 -7
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -8,10 +8,12 @@ npm install @actuarial-ts/agents@0.10.0 @actuarial-ts/core@0.10.0 @actuarial-ts/
|
|
|
8
8
|
|
|
9
9
|
Requires Node 22.13+. Peer ranges are `@mastra/core >=1.51.0 <2`, `@mastra/mcp >=1.14.0 <2`, and Zod `^3.25.76`.
|
|
10
10
|
|
|
11
|
+
The source repository is private, so the guide and reference links below open only with repository access. The published package is unaffected and remains Apache-2.0.
|
|
12
|
+
|
|
11
13
|
SDK 0.8 adds a closed customization selection tool: the model selects only a
|
|
12
14
|
host-approved preset and allowlisted scenario IDs, while tenant identity stays
|
|
13
|
-
in trusted request context. See the
|
|
14
|
-
and
|
|
15
|
+
in trusted request context. See the 0.8 adoption guide (`docs/migrations/0.8-reusable-customization.md`)
|
|
16
|
+
and customization reference (`docs/reference/reusable-customization.md`).
|
|
15
17
|
|
|
16
18
|
## Trusted diagnostic selection
|
|
17
19
|
|
|
@@ -50,8 +52,8 @@ returned in place of eager verified provenance. Keep this tool's approved
|
|
|
50
52
|
executor on the eager validated-run/provenance path. Compact analysis and
|
|
51
53
|
paged evidence can be hosted separately through the public core/data/compliance
|
|
52
54
|
APIs; casting or display-filtering a compact result does not authorize a tool
|
|
53
|
-
response. See the
|
|
54
|
-
for the distinct workflows and
|
|
55
|
+
response. See the compact adoption guide (`docs/migrations/0.7-compact-diagnostics.md`)
|
|
56
|
+
for the distinct workflows and replay reference (`docs/reference/diagnostic-replay-stream.md`)
|
|
55
57
|
for evidence verification and its SDK-version requirements.
|
|
56
58
|
|
|
57
59
|
Success returns `{ success: true, data: { ... } }`. The `data` object contains formula/calculation/definition identities, run/result/binding fingerprints, the full review receipt (including triggered and not-evaluated rules), and one explicitly display-only projection. `data.display.points` holds emergence or latest-diagonal points; `data.display.triangles` holds the triangle view. Display points retain reviewed metric evaluations and findings while omitting the raw aggregate `components` field. Failures remain `{ success: false, error: { code, message } }`.
|
|
@@ -70,18 +72,18 @@ In 0.6 the public `DefinedActuarialTool<TInput, TOutput>` execute accepts raw `z
|
|
|
70
72
|
|
|
71
73
|
The package’s offline test suite covers trusted catalog selection, direct/Mastra-shaped execution, tenant failure, once-only transforms, provenance coherence, judgment gates, remote sidecar behavior, promotion, and golden-prompt tool selection.
|
|
72
74
|
|
|
73
|
-
See the
|
|
75
|
+
See the formula catalog (`docs/reference/diagnostic-formulas.md`) and migration guide (`docs/migrations/0.6-generalized-diagnostics.md`).
|
|
74
76
|
|
|
75
77
|
## License
|
|
76
78
|
|
|
77
79
|
Apache-2.0. See LICENSE and NOTICE.
|
|
78
80
|
|
|
79
81
|
SDK 0.9 adds native post-aggregation formulas and correct financial currency units.
|
|
80
|
-
See the
|
|
82
|
+
See the 0.9 migration guide (`docs/migrations/0.9-analysis-expressions.md`).
|
|
81
83
|
|
|
82
84
|
## Composite history sources
|
|
83
85
|
|
|
84
86
|
SDK 0.10 adds multiple original artifacts within one claim namespace, explicit
|
|
85
87
|
composite identity selectors and complete input-artifact membership checks.
|
|
86
88
|
Upgrade the five SDK packages together and preserve the producing runtime
|
|
87
|
-
with archived evidence. See the
|
|
89
|
+
with archived evidence. See the 0.10 migration guide (`docs/migrations/0.10-composite-history.md`).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actuarial-ts/agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Mastra agent toolkit for actuarial-ts: exact validated tools with a hard tenant seam, human-gated judgment, trusted-catalog diagnostic selection, reserving advice, and evals.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../tools/release/verify-release-attestation.mjs @actuarial-ts/agents"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@actuarial-ts/compliance": "^0.
|
|
51
|
-
"@actuarial-ts/core": "^0.
|
|
52
|
-
"@actuarial-ts/data": "^0.
|
|
53
|
-
"@actuarial-ts/interchange": "^0.
|
|
50
|
+
"@actuarial-ts/compliance": "^0.11.0",
|
|
51
|
+
"@actuarial-ts/core": "^0.11.0",
|
|
52
|
+
"@actuarial-ts/data": "^0.11.0",
|
|
53
|
+
"@actuarial-ts/interchange": "^0.11.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@mastra/core": "^1.51.0",
|