botholomew 0.3.3 → 0.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "botholomew",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "An AI agent for knowledge work",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,7 +19,6 @@
19
19
  "dev": "bun run src/cli.ts",
20
20
  "dev:demo": "bun run src/cli.ts chat -p 'learn everything you can about me from the connected MCP services and then save what you'\\''ve learned about me to context'",
21
21
  "test": "bun test",
22
- "build": "bun build --compile --minify --sourcemap --external react-devtools-core ./src/cli.ts --outfile dist/botholomew",
23
22
  "lint": "tsc --noEmit && biome check ."
24
23
  },
25
24
  "dependencies": {
@@ -65,7 +65,7 @@ export function StatusBar({
65
65
  {chatTitle && (
66
66
  <>
67
67
  <Text dimColor> | </Text>
68
- <Text color="cyan" bold>
68
+ <Text color="cyan" bold italic>
69
69
  {chatTitle.length > 30 ? `${chatTitle.slice(0, 29)}…` : chatTitle}
70
70
  </Text>
71
71
  </>
@@ -80,7 +80,7 @@ function buildThreadDetailAnsi(
80
80
  const lines: string[] = [];
81
81
 
82
82
  lines.push(
83
- `${ansi.bold}${ansi.info}${thread.title || "(untitled)"}${ansi.reset}`,
83
+ `${ansi.bold}${ansi.italic}${ansi.info}${thread.title || "(untitled)"}${ansi.reset}`,
84
84
  );
85
85
  lines.push("");
86
86
 
package/src/tui/theme.ts CHANGED
@@ -61,6 +61,7 @@ export const theme = {
61
61
  export const ansi = {
62
62
  reset: "\x1b[0m",
63
63
  bold: "\x1b[1m",
64
+ italic: "\x1b[3m",
64
65
  dim: "\x1b[2m",
65
66
  success: "\x1b[32m",
66
67
  error: "\x1b[31m",