@oracle-agent/oracle 0.9.2 → 0.9.3
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 +1 -1
- package/src/cli/oracle-harness.py +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oracle-agent/oracle",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"description": "Oracle: prepare-only multichain agent control plane. Policy-bounded intents for a user-signed wallet. Self-custody by default — the public package never takes your key. Built for Hermes; no model key required.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -10,12 +10,12 @@ import sys
|
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
WORDMARK = (
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
13
|
+
" ██████ ███████ ██████ ██████ ██ ██████ ",
|
|
14
|
+
"██ ██ ██ ██ ██ ██ ██ ██ ██ ██",
|
|
15
|
+
"██ ██ ██ ███████ ██ ██ ████████",
|
|
16
|
+
"██ ██ ██ ██ ██ ██ ██ ██ ",
|
|
17
|
+
"██ ██ ██ ██ ██ ██ ██ ██ ██ ",
|
|
18
|
+
" ██████ ██ ███████ ██████ ████████ ███████",
|
|
19
19
|
)
|
|
20
20
|
|
|
21
21
|
SILENT_OUTPUT = {
|
|
@@ -212,9 +212,9 @@ def patch_cli(module):
|
|
|
212
212
|
("class:status-bar", " "),
|
|
213
213
|
("class:status-bar-context", f"ctx {short_bar} {percent}%"),
|
|
214
214
|
("class:status-bar-dim", " / "),
|
|
215
|
-
("class:status-bar-effort",
|
|
215
|
+
("class:status-bar-effort", effort),
|
|
216
216
|
("class:status-bar-dim", " / "),
|
|
217
|
-
("class:status-bar-time", f"
|
|
217
|
+
("class:status-bar-time", f"{thinking} "),
|
|
218
218
|
]
|
|
219
219
|
if width < 92:
|
|
220
220
|
return [
|
|
@@ -223,9 +223,9 @@ def patch_cli(module):
|
|
|
223
223
|
("class:status-bar-dim", " / "),
|
|
224
224
|
("class:status-bar-context", f"ctx {context_bar} {usage}{percent}%"),
|
|
225
225
|
("class:status-bar-dim", " / "),
|
|
226
|
-
("class:status-bar-effort",
|
|
226
|
+
("class:status-bar-effort", effort),
|
|
227
227
|
("class:status-bar-dim", " / "),
|
|
228
|
-
("class:status-bar-time", f"
|
|
228
|
+
("class:status-bar-time", f"{thinking} "),
|
|
229
229
|
]
|
|
230
230
|
return [
|
|
231
231
|
("class:status-bar", " "),
|
|
@@ -235,9 +235,9 @@ def patch_cli(module):
|
|
|
235
235
|
("class:status-bar-dim", " / "),
|
|
236
236
|
("class:status-bar-context", f"ctx {context_bar} {usage}{percent}%"),
|
|
237
237
|
("class:status-bar-dim", " / "),
|
|
238
|
-
("class:status-bar-effort",
|
|
238
|
+
("class:status-bar-effort", effort),
|
|
239
239
|
("class:status-bar-dim", " / "),
|
|
240
|
-
("class:status-bar-time", f"
|
|
240
|
+
("class:status-bar-time", f"{thinking} "),
|
|
241
241
|
]
|
|
242
242
|
except Exception:
|
|
243
243
|
return [("class:status-bar-brand", " oracle ")]
|