vibemon 1.9.3 → 1.10.0
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 +1 -1
- package/assets/characters/codex.png +0 -0
- package/modules/tray-manager.cjs +12 -0
- package/package.json +1 -1
- package/renderer.js +2 -2
- package/shared/data/constants.json +3 -3
- package/assets/characters/apto.png +0 -0
package/README.md
CHANGED
|
@@ -20,8 +20,8 @@ The app launches in the system tray and listens on `http://127.0.0.1:19280`.
|
|
|
20
20
|
|
|
21
21
|
## Supported Tools
|
|
22
22
|
|
|
23
|
-
- **Apto** - Personal AI coding assistant
|
|
24
23
|
- **[Claude Code](https://claude.ai/code)** - Anthropic's AI coding assistant
|
|
24
|
+
- **[Codex](https://openai.com/codex)** - OpenAI's AI coding agent
|
|
25
25
|
- **[Kiro](https://kiro.dev/)** - AWS's AI coding assistant
|
|
26
26
|
- **[OpenClaw](https://openclaw.ai/)** - Open-source computer use agent
|
|
27
27
|
|
|
Binary file
|
package/modules/tray-manager.cjs
CHANGED
|
@@ -72,6 +72,18 @@ function createTrayIcon(state, character = 'clawd') {
|
|
|
72
72
|
rect(13, 16, 3, 3, charColor); // Right leg
|
|
73
73
|
rect(7, 10, 2, 2, '#40E0D0'); // Left eye (cyan)
|
|
74
74
|
rect(13, 10, 2, 2, '#40E0D0'); // Right eye (cyan)
|
|
75
|
+
} else if (charName === 'codex') {
|
|
76
|
+
// Draw codex character (green terminal robot)
|
|
77
|
+
rect(8, 2, 6, 2, charColor); // Top cap
|
|
78
|
+
rect(6, 4, 10, 2, charColor); // Head taper
|
|
79
|
+
rect(5, 6, 12, 9, charColor); // Main body
|
|
80
|
+
rect(3, 9, 2, 5, charColor); // Left arm
|
|
81
|
+
rect(17, 9, 2, 5, charColor); // Right arm
|
|
82
|
+
rect(7, 15, 3, 4, charColor); // Left leg
|
|
83
|
+
rect(12, 15, 3, 4, charColor); // Right leg
|
|
84
|
+
rect(7, 9, 2, 2, COLOR_EYE); // Left eye
|
|
85
|
+
rect(12, 9, 2, 2, COLOR_EYE); // Right eye
|
|
86
|
+
rect(9, 12, 4, 1, COLOR_EYE); // Mouth
|
|
75
87
|
} else {
|
|
76
88
|
// Draw clawd character (default)
|
|
77
89
|
rect(4, 6, 14, 8, charColor); // Body
|
package/package.json
CHANGED
package/renderer.js
CHANGED
|
@@ -24,10 +24,10 @@ async function init() {
|
|
|
24
24
|
vibeMonEngine = createVibeMonEngine(container, {
|
|
25
25
|
useEmoji,
|
|
26
26
|
characterImageUrls: {
|
|
27
|
-
apto: `${STATIC_BASE}/characters/apto.png`,
|
|
28
27
|
clawd: `${STATIC_BASE}/characters/clawd.png`,
|
|
29
28
|
kiro: `${STATIC_BASE}/characters/kiro.png`,
|
|
30
|
-
claw: `${STATIC_BASE}/characters/claw.png
|
|
29
|
+
claw: `${STATIC_BASE}/characters/claw.png`,
|
|
30
|
+
codex: `${STATIC_BASE}/characters/codex.png`
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
33
|
await vibeMonEngine.init();
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
|
|
64
64
|
"VALID_STATES": ["start", "idle", "thinking", "planning", "working", "packing", "notification", "done", "sleep", "alert"],
|
|
65
65
|
|
|
66
|
-
"CHARACTER_NAMES": ["
|
|
66
|
+
"CHARACTER_NAMES": ["clawd", "kiro", "claw", "codex"],
|
|
67
67
|
|
|
68
68
|
"CHARACTER_COLORS": {
|
|
69
|
-
"apto": "#797C98",
|
|
70
69
|
"clawd": "#D97757",
|
|
71
70
|
"kiro": "#FFFFFF",
|
|
72
|
-
"claw": "#DD4444"
|
|
71
|
+
"claw": "#DD4444",
|
|
72
|
+
"codex": "#10A37F"
|
|
73
73
|
},
|
|
74
74
|
|
|
75
75
|
"STATE_COLORS": {
|
|
Binary file
|