@blockrun/franklin 3.8.44 → 3.9.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 +3 -2
- package/dist/agent/commands.d.ts +5 -0
- package/dist/agent/commands.js +28 -0
- package/dist/agent/compact.js +1 -1
- package/dist/agent/context.js +1 -0
- package/dist/agent/llm.js +4 -4
- package/dist/agent/loop.js +28 -3
- package/dist/agent/verification.js +2 -2
- package/dist/commands/balance-retry.d.ts +15 -0
- package/dist/commands/balance-retry.js +20 -0
- package/dist/commands/skills.d.ts +8 -0
- package/dist/commands/skills.js +93 -0
- package/dist/commands/social.js +1 -1
- package/dist/commands/start.js +17 -13
- package/dist/commands/telegram.js +1 -1
- package/dist/index.js +9 -0
- package/dist/learnings/extractor.js +3 -3
- package/dist/plugin-sdk/workflow.js +2 -2
- package/dist/pricing.js +1 -1
- package/dist/proxy/fallback.js +1 -1
- package/dist/proxy/server.js +10 -10
- package/dist/router/index.js +8 -8
- package/dist/skills/bootstrap.d.ts +27 -0
- package/dist/skills/bootstrap.js +40 -0
- package/dist/skills/invoke.d.ts +23 -0
- package/dist/skills/invoke.js +38 -0
- package/dist/skills/loader.d.ts +21 -0
- package/dist/skills/loader.js +149 -0
- package/dist/skills/registry.d.ts +26 -0
- package/dist/skills/registry.js +54 -0
- package/dist/skills/types.d.ts +47 -0
- package/dist/skills/types.js +8 -0
- package/dist/skills-bundled/budget-grill/SKILL.md +24 -0
- package/dist/tools/index.js +2 -0
- package/dist/tools/moa.js +4 -4
- package/dist/tools/subagent.js +3 -3
- package/dist/tools/tool-categories.js +3 -0
- package/dist/tools/wallet.d.ts +23 -0
- package/dist/tools/wallet.js +63 -0
- package/dist/ui/model-picker.js +13 -17
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockrun/franklin",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Franklin — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -31,10 +31,11 @@
|
|
|
31
31
|
"build": "tsc && node scripts/copy-plugin-assets.mjs",
|
|
32
32
|
"dev": "tsc --watch",
|
|
33
33
|
"start": "node dist/index.js",
|
|
34
|
-
"test": "npm run build && node --test --test-reporter=spec test/local.mjs",
|
|
34
|
+
"test": "npm run build && node --test --test-reporter=spec test/local.mjs test/skills.local.mjs",
|
|
35
35
|
"test:e2e": "npm run build && node --test --test-reporter=spec test/e2e.mjs",
|
|
36
|
+
"test:free-models": "npm run build && node --test --test-reporter=spec test/free-model-matrix.mjs",
|
|
36
37
|
"test:all": "npm run test && npm run test:e2e",
|
|
37
|
-
"test:watch": "node --test --watch test/local.mjs",
|
|
38
|
+
"test:watch": "node --test --watch test/local.mjs test/skills.local.mjs",
|
|
38
39
|
"test:e2e:watch": "node --test --watch test/e2e.mjs"
|
|
39
40
|
},
|
|
40
41
|
"keywords": [
|