botholomew 0.21.0 → 0.21.2

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.21.0",
3
+ "version": "0.21.2",
4
4
  "description": "An autonomous AI agent for knowledge work — works your task queue while you sleep.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,35 +28,35 @@
28
28
  "docs:preview": "vitepress preview docs"
29
29
  },
30
30
  "dependencies": {
31
- "@ai-sdk/anthropic": "^3.0.78",
32
- "@ai-sdk/openai-compatible": "^2.0.47",
33
- "@evantahler/mcpx": "0.21.9",
34
- "ai": "^6.0.188",
35
- "ansis": "^4.3.0",
36
- "commander": "^14.0.3",
31
+ "@ai-sdk/anthropic": "^3.0.81",
32
+ "@ai-sdk/openai-compatible": "^2.0.48",
33
+ "@evantahler/mcpx": "0.21.11",
34
+ "ai": "^6.0.197",
35
+ "ansis": "^4.3.1",
36
+ "commander": "^15.0.0",
37
37
  "gray-matter": "^4.0.3",
38
- "ink": "^7.0.3",
38
+ "ink": "^7.0.5",
39
39
  "ink-spinner": "^5.0.0",
40
40
  "ink-text-input": "^6.0.0",
41
41
  "istextorbinary": "^9.5.0",
42
- "jsonata": "^2.0.6",
43
- "membot": "^0.17.0",
42
+ "jsonata": "^2.2.1",
43
+ "membot": "^0.17.2",
44
44
  "nanospinner": "^1.2.2",
45
45
  "ollama-ai-provider-v2": "^3.5.1",
46
- "react": "^19.2.6",
46
+ "react": "^19.2.7",
47
47
  "uuid": "^14.0.0",
48
48
  "wrap-ansi": "^10.0.0",
49
49
  "zod": "^4.4.3"
50
50
  },
51
51
  "devDependencies": {
52
- "@biomejs/biome": "^2.4.15",
52
+ "@biomejs/biome": "^2.4.16",
53
53
  "@types/bun": "^1.3.14",
54
- "@types/react": "^19.2.14",
54
+ "@types/react": "^19.2.17",
55
55
  "@types/uuid": "^11.0.0",
56
56
  "typescript": "^6.0.3",
57
57
  "vitepress": "^1.6.4",
58
- "vitepress-plugin-llms": "^1.12.2",
59
- "vue": "^3.5.34"
58
+ "vitepress-plugin-llms": "^1.13.1",
59
+ "vue": "^3.5.35"
60
60
  },
61
61
  "trustedDependencies": [
62
62
  "protobufjs"
@@ -25,11 +25,11 @@ export function QueuePanel({ messages, selectedIndex }: QueuePanelProps) {
25
25
  <Box
26
26
  flexDirection="column"
27
27
  borderStyle="round"
28
- borderColor={theme.accent}
28
+ borderColor={theme.queue}
29
29
  paddingX={1}
30
30
  >
31
31
  <Box justifyContent="space-between">
32
- <Text color={theme.accent} bold>
32
+ <Text color={theme.queue} bold>
33
33
  {label}
34
34
  </Text>
35
35
  <Text dimColor>{hints}</Text>
@@ -42,7 +42,7 @@ export function QueuePanel({ messages, selectedIndex }: QueuePanelProps) {
42
42
  // biome-ignore lint/suspicious/noArrayIndexKey: queue items can be duplicates, index is the stable identity
43
43
  <Box key={i}>
44
44
  <Text
45
- color={isSelected ? theme.accent : undefined}
45
+ color={isSelected ? theme.queue : undefined}
46
46
  backgroundColor={isSelected ? theme.selectionBg : undefined}
47
47
  bold={isSelected}
48
48
  >
package/src/tui/theme.ts CHANGED
@@ -50,6 +50,7 @@ export const theme = {
50
50
  userBg: isDark ? "#2a5a8c" : "#d0e0f0",
51
51
  selectionBg: isDark ? "#333" : "#ddd",
52
52
  headerBg: isDark ? "#3a4655" : "#f5f7fa",
53
+ queue: isDark ? "#a78bfa" : "#7c3aed",
53
54
  success: "green",
54
55
  error: "red",
55
56
  info: "cyan",