@cleocode/cleo-os 2026.4.64 → 2026.4.66
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/cli.js +56 -0
- package/dist/cli.js.map +1 -1
- package/dist/policies/memory-policy.d.ts +134 -0
- package/dist/policies/memory-policy.d.ts.map +1 -0
- package/dist/policies/memory-policy.js +120 -0
- package/dist/policies/memory-policy.js.map +1 -0
- package/dist/registry/agent-registry.d.ts +106 -0
- package/dist/registry/agent-registry.d.ts.map +1 -0
- package/dist/registry/agent-registry.js +195 -0
- package/dist/registry/agent-registry.js.map +1 -0
- package/dist/registry/provider-matrix.d.ts +104 -0
- package/dist/registry/provider-matrix.d.ts.map +1 -0
- package/dist/registry/provider-matrix.js +219 -0
- package/dist/registry/provider-matrix.js.map +1 -0
- package/extensions/cleo-agent-monitor.d.ts +5 -5
- package/extensions/cleo-agent-monitor.js +10 -10
- package/extensions/cleo-agent-monitor.js.map +1 -1
- package/extensions/cleo-agent-monitor.ts +13 -13
- package/extensions/tui-theme.d.ts +3 -3
- package/extensions/tui-theme.js +3 -3
- package/extensions/tui-theme.ts +3 -3
- package/package.json +4 -4
package/extensions/tui-theme.js
CHANGED
|
@@ -95,7 +95,7 @@ export const CODE_BORDER_SUBTLE = 236;
|
|
|
95
95
|
export const CODE_BORDER_FOCUS = 240;
|
|
96
96
|
/**
|
|
97
97
|
* Blue accent for worker tier badges (not in the design palette but used
|
|
98
|
-
* consistently in the Circle of
|
|
98
|
+
* consistently in the Circle of Eleven worker display).
|
|
99
99
|
* ANSI 256-color 75 (#5fafff).
|
|
100
100
|
*/
|
|
101
101
|
export const CODE_TIER_WORKER = 75;
|
|
@@ -116,7 +116,7 @@ export function fg256(text, code) {
|
|
|
116
116
|
* Apply `accent-primary` (purple, #a855f7) foreground to text.
|
|
117
117
|
*
|
|
118
118
|
* Used for: Pi AI branding, active tab indicators, focus borders,
|
|
119
|
-
* Circle of
|
|
119
|
+
* Circle of Eleven header, banner chrome.
|
|
120
120
|
*
|
|
121
121
|
* @param text - The text to style.
|
|
122
122
|
* @returns Purple ANSI text.
|
|
@@ -196,7 +196,7 @@ export function textTertiary(text) {
|
|
|
196
196
|
/**
|
|
197
197
|
* Apply worker tier blue accent foreground to text.
|
|
198
198
|
*
|
|
199
|
-
* Used for: worker agent tier prefix `[W]` in the Circle of
|
|
199
|
+
* Used for: worker agent tier prefix `[W]` in the Circle of Eleven display.
|
|
200
200
|
*
|
|
201
201
|
* @param text - The text to style.
|
|
202
202
|
* @returns Blue ANSI text.
|
package/extensions/tui-theme.ts
CHANGED
|
@@ -113,7 +113,7 @@ export const CODE_BORDER_FOCUS = 240;
|
|
|
113
113
|
|
|
114
114
|
/**
|
|
115
115
|
* Blue accent for worker tier badges (not in the design palette but used
|
|
116
|
-
* consistently in the Circle of
|
|
116
|
+
* consistently in the Circle of Eleven worker display).
|
|
117
117
|
* ANSI 256-color 75 (#5fafff).
|
|
118
118
|
*/
|
|
119
119
|
export const CODE_TIER_WORKER = 75;
|
|
@@ -137,7 +137,7 @@ export function fg256(text: string, code: number): string {
|
|
|
137
137
|
* Apply `accent-primary` (purple, #a855f7) foreground to text.
|
|
138
138
|
*
|
|
139
139
|
* Used for: Pi AI branding, active tab indicators, focus borders,
|
|
140
|
-
* Circle of
|
|
140
|
+
* Circle of Eleven header, banner chrome.
|
|
141
141
|
*
|
|
142
142
|
* @param text - The text to style.
|
|
143
143
|
* @returns Purple ANSI text.
|
|
@@ -224,7 +224,7 @@ export function textTertiary(text: string): string {
|
|
|
224
224
|
/**
|
|
225
225
|
* Apply worker tier blue accent foreground to text.
|
|
226
226
|
*
|
|
227
|
-
* Used for: worker agent tier prefix `[W]` in the Circle of
|
|
227
|
+
* Used for: worker agent tier prefix `[W]` in the Circle of Eleven display.
|
|
228
228
|
*
|
|
229
229
|
* @param text - The text to style.
|
|
230
230
|
* @returns Blue ANSI text.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cleocode/cleo-os",
|
|
3
|
-
"version": "2026.4.
|
|
3
|
+
"version": "2026.4.66",
|
|
4
4
|
"description": "CleoOS — the batteries-included agentic development environment wrapping Pi",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@mariozechner/pi-coding-agent": ">=0.60.0",
|
|
14
14
|
"@sinclair/typebox": "^0.34.49",
|
|
15
|
-
"@cleocode/cant": "2026.4.
|
|
16
|
-
"@cleocode/core": "2026.4.
|
|
17
|
-
"@cleocode/cleo": "2026.4.
|
|
15
|
+
"@cleocode/cant": "2026.4.66",
|
|
16
|
+
"@cleocode/core": "2026.4.66",
|
|
17
|
+
"@cleocode/cleo": "2026.4.66"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"typescript": "^6.0.2",
|