@blockrun/franklin 3.15.99 → 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/dist/banner.js +1 -1
- package/dist/commands/doctor.js +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
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'));
|
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