@oracle-agent/oracle 0.9.4 → 0.9.5
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 +8 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oracle-agent/oracle",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5",
|
|
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 = {
|
|
@@ -131,10 +131,7 @@ def patch_cli(module):
|
|
|
131
131
|
else:
|
|
132
132
|
body.append("oracle", style="bold #B8F0FF")
|
|
133
133
|
|
|
134
|
-
body.append("\n\nTHE FUTURE IS AGENTIC", style="bold #EAF2F8")
|
|
135
|
-
body.append(" / ", style="#52606D")
|
|
136
|
-
model = str(getattr(self, "model", "") or "choose model")
|
|
137
|
-
body.append(model, style="#91A2B1")
|
|
134
|
+
body.append("\n\nTHE FUTURE IS AGENTIC / by DEMI", style="bold #EAF2F8")
|
|
138
135
|
|
|
139
136
|
panel_width = max(36, min(width - 4, 76))
|
|
140
137
|
panel = Panel(
|
|
@@ -143,8 +140,6 @@ def patch_cli(module):
|
|
|
143
140
|
padding=(1, 2),
|
|
144
141
|
border_style="#3B4A56",
|
|
145
142
|
box=box.ROUNDED,
|
|
146
|
-
subtitle="[dim #6F7F8D]/model /chain /setup[/]",
|
|
147
|
-
subtitle_align="center",
|
|
148
143
|
)
|
|
149
144
|
self.console.print(Align.center(panel))
|
|
150
145
|
self.console.print()
|
|
@@ -166,7 +161,7 @@ def patch_cli(module):
|
|
|
166
161
|
return [("class:prompt-working", "working ")]
|
|
167
162
|
if getattr(self, "_agent_running", False):
|
|
168
163
|
return [("class:prompt-working", "thinking ")]
|
|
169
|
-
return [("class:prompt", "
|
|
164
|
+
return [("class:prompt", " oracle › ")]
|
|
170
165
|
|
|
171
166
|
def status_fragments(self):
|
|
172
167
|
if not getattr(self, "_status_bar_visible", True) or getattr(self, "_model_picker_state", None):
|