@t2000/engine 1.24.1 → 1.24.3

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.
Files changed (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @t2000/engine
2
2
 
3
- Agent engine for conversational finance — implements **Audric Intelligence** (the moat behind the Audric consumer product). Five systems work together: Agent Harness (35 tools — 24 read, 11 write), Reasoning Engine (14 guards across 3 priority tiers + 6 YAML skill recipes), Silent Profile, Chain Memory, and AdviceLog. Every action it triggers waits on Audric Passport's tap-to-confirm.
3
+ Agent engine for conversational finance — implements **Audric Intelligence** (the moat behind the Audric consumer product). Five systems work together: Agent Harness (37 tools — 25 read, 12 write), Reasoning Engine (14 guards across 3 priority tiers + 6 YAML skill recipes), Silent Profile, Chain Memory, and AdviceLog. Every action it triggers waits on Audric Passport's tap-to-confirm.
4
4
 
5
5
  QueryEngine orchestrates LLM conversations, financial tools, user confirmations, and MCP integrations into a single async-generator loop.
6
6
 
@@ -164,7 +164,13 @@ QueryEngine.submitMessage()
164
164
  > equivalent on BlockVision). Net post-v1.4: 23 reads + 11 writes = 34 tools.
165
165
  >
166
166
  > **SPEC 10 SuiNS reverse-lookup (May 2026):** Added 1 read tool — `resolve_suins`.
167
- > Net post-SPEC-10: **24 reads + 11 writes = 35 tools** (current).
167
+ > Net post-SPEC-10: 24 reads + 11 writes = 35 tools.
168
+ >
169
+ > **S.119 NAVI rewards (May 2026):** Added 1 read tool — `pending_rewards` (preview claimable
170
+ > rewards without triggering a claim) — and 1 write tool — `harvest_rewards` (compound: claim
171
+ > NAVI rewards → swap each non-USDC reward to USDC → deposit merged USDC into NAVI savings,
172
+ > single PTB). Per-leg fees (10 bps Cetus overlay × N + 10 bps NAVI save fee) wired in S.120.
173
+ > Net post-S.119: **25 reads + 12 writes = 37 tools** (current).
168
174
 
169
175
  ## Recent Upgrades — Spec 1 (Correctness) + Spec 2 (Intelligence)
170
176
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@t2000/engine",
3
- "version": "1.24.1",
3
+ "version": "1.24.3",
4
4
  "description": "Agent engine for conversational finance — QueryEngine with 35 tools (24 read, 11 write), 14-guard runner across 3 priority tiers, 6 skill recipes, silent intelligence layer, streaming, canvas, BlockVision-backed pricing. Chat-first by design — every write requires user confirmation.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "@modelcontextprotocol/sdk": "^1.28.0",
38
38
  "js-yaml": "^4.1.1",
39
39
  "zod": "^3.25.0",
40
- "@t2000/sdk": "1.24.1"
40
+ "@t2000/sdk": "1.24.3"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/js-yaml": "^4.0.9",