@blockrun/franklin 3.6.23 → 3.6.24

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/dist/ui/app.js +3 -1
  2. package/package.json +1 -1
package/dist/ui/app.js CHANGED
@@ -363,7 +363,9 @@ function RunCodeApp({ initialModel, workDir, walletAddress, walletBalance, chain
363
363
  // Show user message in scrollback so the conversation is readable
364
364
  setCommittedResponses(rs => [...rs, {
365
365
  key: `user-${Date.now()}`,
366
- text: chalk.bold.cyan('❯ ') + chalk.bold(trimmed),
366
+ // Gold matches the top of the Franklin banner gradient (#FFD700).
367
+ // Brand-consistent, readable on dark terminals, evokes $100-bill identity.
368
+ text: chalk.hex('#FFD700').bold('❯ ') + chalk.hex('#FFD700').bold(trimmed),
367
369
  tokens: { input: 0, output: 0, calls: 0 },
368
370
  cost: 0,
369
371
  }]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockrun/franklin",
3
- "version": "3.6.23",
3
+ "version": "3.6.24",
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": {