@actuarial-ts/agents 0.1.0 → 0.2.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/dist/divergence.d.ts +267 -0
- package/dist/divergence.d.ts.map +1 -0
- package/dist/divergence.js +409 -0
- package/dist/divergence.js.map +1 -0
- package/dist/errors.d.ts +1 -1
- package/dist/errors.d.ts.map +1 -1
- package/dist/errors.js +20 -0
- package/dist/errors.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/mcp.d.ts +130 -0
- package/dist/mcp.d.ts.map +1 -0
- package/dist/mcp.js +138 -0
- package/dist/mcp.js.map +1 -0
- package/dist/promotion.d.ts +269 -0
- package/dist/promotion.d.ts.map +1 -0
- package/dist/promotion.js +776 -0
- package/dist/promotion.js.map +1 -0
- package/dist/remote.d.ts +221 -0
- package/dist/remote.d.ts.map +1 -0
- package/dist/remote.js +285 -0
- package/dist/remote.js.map +1 -0
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +7 -0
- package/dist/tools.js.map +1 -1
- package/package.json +9 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actuarial-ts/agents",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Mastra agent toolkit for the actuarial-ts SDK: typed actuarial tools with a hard tenant seam, human-gated judgment workflows that write the compliance assumption ledger, a reserving advisor factory, and a golden-prompt eval harness.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -45,17 +45,22 @@
|
|
|
45
45
|
"prepack": "tsc -p tsconfig.build.json"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@actuarial-ts/compliance": "^0.
|
|
48
|
+
"@actuarial-ts/compliance": "^0.2.0",
|
|
49
|
+
"@actuarial-ts/core": "^0.2.0",
|
|
50
|
+
"@actuarial-ts/data": "^0.2.0",
|
|
51
|
+
"@actuarial-ts/interchange": "^0.2.0"
|
|
49
52
|
},
|
|
50
53
|
"devDependencies": {
|
|
54
|
+
"@mastra/core": "^1.49.0",
|
|
55
|
+
"@mastra/mcp": "^1.14.0",
|
|
51
56
|
"typescript": "^5.7.3",
|
|
52
57
|
"vitest": "^3.0.5",
|
|
53
|
-
"@mastra/core": "^1.49.0",
|
|
54
58
|
"zod": "^3.25.76"
|
|
55
59
|
},
|
|
56
60
|
"peerDependencies": {
|
|
57
61
|
"@mastra/core": ">=1.49.0 <2",
|
|
58
|
-
"zod": "^3.25.0"
|
|
62
|
+
"zod": "^3.25.0",
|
|
63
|
+
"@mastra/mcp": ">=1.14.0 <2"
|
|
59
64
|
},
|
|
60
65
|
"publishConfig": {
|
|
61
66
|
"access": "public"
|