@blockrun/franklin 3.15.98 → 3.15.100
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 +7 -6
- package/dist/banner.js +2 -2
- package/dist/commands/doctor.js +1 -1
- package/dist/index.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
<br>
|
|
4
4
|
|
|
5
|
-
<img src="assets/terminal-banner.png" alt="Franklin terminal" width="680">
|
|
5
|
+
<img src="assets/terminal-banner.png" alt="Franklin Agent terminal" width="680">
|
|
6
6
|
|
|
7
7
|
<br><br>
|
|
8
8
|
|
|
9
|
+
<h1>Franklin Agent</h1>
|
|
9
10
|
<h3>The AI agent with a wallet.</h3>
|
|
10
11
|
|
|
11
12
|
<p>
|
|
12
|
-
Other agents write code. Franklin writes code <em>and spends money</em> to get things done.<br>
|
|
13
|
+
Other agents write code. Franklin Agent writes code <em>and spends money</em> to get things done.<br>
|
|
13
14
|
One wallet. Every model. Every paid API. Pay only for outcomes — not subscriptions.
|
|
14
15
|
</p>
|
|
15
16
|
|
|
@@ -41,14 +42,14 @@
|
|
|
41
42
|
|
|
42
43
|
## The pitch in one paragraph
|
|
43
44
|
|
|
44
|
-
Most coding agents write code. Franklin writes code **and spends money to get the job done**. It holds a USDC wallet, picks the best model per task from 55+ providers, purchases trading data, generates images, pays for web search — all autonomously. You state an outcome and set a budget. Franklin decides what to call, what to pay for, and when to stop. Every paid action routes through the [x402](https://x402.org) micropayment protocol and settles against your own wallet. No subscriptions. No API keys. No account. The wallet is the identity.
|
|
45
|
+
Most coding agents write code. Franklin Agent writes code **and spends money to get the job done**. It holds a USDC wallet, picks the best model per task from 55+ providers, purchases trading data, generates images, pays for web search — all autonomously. You state an outcome and set a budget. Franklin Agent decides what to call, what to pay for, and when to stop. Every paid action routes through the [x402](https://x402.org) micropayment protocol and settles against your own wallet. No subscriptions. No API keys. No account. The wallet is the identity.
|
|
45
46
|
|
|
46
47
|
Built by the [BlockRun](https://blockrun.ai) team. Apache-2.0. TypeScript. Ships as one npm package.
|
|
47
48
|
|
|
48
49
|
> **YOPO — You Only Pay Outcome**
|
|
49
50
|
>
|
|
50
51
|
> Not a subscription (pay for access). Not a generic pay-per-call (pay for trying).
|
|
51
|
-
> You pay only for the work Franklin delivers. Provider cost + 5%, settled per action
|
|
52
|
+
> You pay only for the work Franklin Agent delivers. Provider cost + 5%, settled per action
|
|
52
53
|
> in USDC. No monthly fees. No rate limits. No overdraft.
|
|
53
54
|
|
|
54
55
|
---
|
|
@@ -87,13 +88,13 @@ Free models work immediately. Paid models, image gen, and video gen activate the
|
|
|
87
88
|
|
|
88
89
|
## YOPO
|
|
89
90
|
|
|
90
|
-
**You Only Pay Outcome.** This is Franklin's pricing model, and it is the opposite of almost every other AI product you use.
|
|
91
|
+
**You Only Pay Outcome.** This is Franklin Agent's pricing model, and it is the opposite of almost every other AI product you use.
|
|
91
92
|
|
|
92
93
|
| | You pay for... | Result |
|
|
93
94
|
| ----------------------- | -------------------------------------------- | ------------------------------------ |
|
|
94
95
|
| AI subscription | Access. Paid whether you use it or not. | $20–200/month, rate-limited. |
|
|
95
96
|
| Pay-per-call (OpenAI API, etc.) | Every attempt — even failed ones. | Hidden cost from retries, dead ends. |
|
|
96
|
-
| **Franklin (YOPO)** | **The outcome.** Each signed micropayment. | **Provider cost + 5%. No more.** |
|
|
97
|
+
| **Franklin Agent (YOPO)** | **The outcome.** Each signed micropayment. | **Provider cost + 5%. No more.** |
|
|
97
98
|
|
|
98
99
|
Three consequences fall out of this:
|
|
99
100
|
|
package/dist/banner.js
CHANGED
|
@@ -102,7 +102,7 @@ export function printBanner(version) {
|
|
|
102
102
|
const update = getAvailableUpdate();
|
|
103
103
|
if (update) {
|
|
104
104
|
console.log(chalk.yellow('⟳ ') +
|
|
105
|
-
chalk.bold(`Franklin ${update.latest}`) +
|
|
105
|
+
chalk.bold(`Franklin Agent ${update.latest}`) +
|
|
106
106
|
chalk.dim(` available — you have ${update.current}`));
|
|
107
107
|
console.log(chalk.dim(' Run: ') +
|
|
108
108
|
chalk.bold('npm install -g @blockrun/franklin@latest'));
|
|
@@ -113,7 +113,7 @@ export function printBanner(version) {
|
|
|
113
113
|
}
|
|
114
114
|
function printCompactBanner(version) {
|
|
115
115
|
const title = chalk.bold.hex(GOLD_START)('FRANKLIN');
|
|
116
|
-
const meta = chalk.dim(` · blockrun.ai · v${version}`);
|
|
116
|
+
const meta = chalk.dim(` Agent · blockrun.ai · v${version}`);
|
|
117
117
|
console.log(`${title}${meta}`);
|
|
118
118
|
console.log(chalk.dim('The AI agent with a wallet'));
|
|
119
119
|
console.log('');
|
package/dist/commands/doctor.js
CHANGED
|
@@ -43,7 +43,7 @@ async function runChecks() {
|
|
|
43
43
|
kickoffVersionCheck();
|
|
44
44
|
const update = await freshUpdatePromise;
|
|
45
45
|
out.push({
|
|
46
|
-
name: 'Franklin',
|
|
46
|
+
name: 'Franklin Agent',
|
|
47
47
|
status: update ? 'warn' : 'ok',
|
|
48
48
|
detail: update
|
|
49
49
|
? `v${VERSION} — update available: v${update.latest}`
|
package/dist/index.js
CHANGED
|
@@ -29,8 +29,8 @@ import { VERSION as version } from './config.js';
|
|
|
29
29
|
const program = new Command();
|
|
30
30
|
program
|
|
31
31
|
.name('franklin')
|
|
32
|
-
.description('Franklin — The AI agent with a wallet.\n\n' +
|
|
33
|
-
'While others chat, Franklin spends — turning your USDC into real work.\n\n' +
|
|
32
|
+
.description('Franklin Agent — The AI agent with a wallet.\n\n' +
|
|
33
|
+
'While others chat, Franklin Agent spends — turning your USDC into real work.\n\n' +
|
|
34
34
|
'Pay per action in USDC on Base or Solana. No subscriptions. No accounts.')
|
|
35
35
|
.version(version);
|
|
36
36
|
program
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockrun/franklin",
|
|
3
|
-
"version": "3.15.
|
|
4
|
-
"description": "Franklin — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.",
|
|
3
|
+
"version": "3.15.100",
|
|
4
|
+
"description": "Franklin Agent — 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": {
|
|
7
7
|
".": {
|