@ouro.bot/cli 0.1.0-alpha.422 → 0.1.0-alpha.425
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 +3 -0
- package/changelog.json +31 -0
- package/dist/heart/daemon/cli-defaults.js +1 -2
- package/dist/heart/daemon/cli-exec.js +510 -88
- package/dist/heart/daemon/cli-help.js +56 -41
- package/dist/heart/daemon/cli-parse.js +82 -77
- package/dist/heart/daemon/up-progress.js +43 -2
- package/dist/mind/prompt.js +2 -2
- package/dist/repertoire/tasks/index.js +12 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -179,7 +179,10 @@ ouro vault status --agent <name>
|
|
|
179
179
|
ouro vault config set --agent <name> --key teams.clientSecret
|
|
180
180
|
ouro vault config status --agent <name> --scope all
|
|
181
181
|
ouro connect --agent <name>
|
|
182
|
+
ouro connect providers --agent <name>
|
|
182
183
|
ouro connect perplexity --agent <name>
|
|
184
|
+
ouro connect embeddings --agent <name>
|
|
185
|
+
ouro connect teams --agent <name>
|
|
183
186
|
ouro connect bluebubbles --agent <name>
|
|
184
187
|
ouro auth --agent <name>
|
|
185
188
|
ouro auth --agent <name> --provider <provider>
|
package/changelog.json
CHANGED
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.425",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Human-facing single-agent CLI commands now resolve an omitted `--agent` through one shared path: use the explicit flag when present, otherwise use runtime identity when it can name the current agent, otherwise use the only discovered local agent, otherwise ask which agent to use, and otherwise explain how to hatch or clone one.",
|
|
8
|
+
"`ouro auth`, `ouro auth verify`, `ouro auth switch`, `ouro use`, `ouro provider` commands, `ouro vault` commands, `ouro connect`, `ouro config model`, `ouro config models`, `ouro setup`, `ouro bluebubbles replay`, `ouro thoughts`, `ouro attention`, `ouro inner`, `ouro task`, `ouro reminder create`, `ouro friend` management commands, `ouro habit`, and `ouro session list` now share that missing-agent contract instead of quietly depending on argv or ambient context.",
|
|
9
|
+
"Task/reminder execution now builds agent-scoped task modules directly from the selected bundle, session scanning now accepts an explicit agent name, and local friend/habit flows now read the selected agent bundle instead of falling back to hidden global defaults.",
|
|
10
|
+
"`ouro whoami` keeps its richer runtime identity output but now shares the same no-agent fallback behavior when runtime identity is unavailable, and the runtime seam no longer grabs unrelated ambient repo identity behind the human's back.",
|
|
11
|
+
"CLI help and execution coverage now protect single-agent auto-selection, multi-agent prompting, no-agent guidance, noninteractive ambiguity handling, and the newly covered local task/reminder/friend/habit/session flows.",
|
|
12
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the complete missing-agent resolution release."
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"version": "0.1.0-alpha.424",
|
|
17
|
+
"changes": [
|
|
18
|
+
"Human-facing single-agent CLI commands now resolve an omitted `--agent` through one shared path: use the explicit flag when present, otherwise use the only installed agent, otherwise ask which agent to use, and otherwise explain how to hatch or clone one.",
|
|
19
|
+
"`ouro auth`, `ouro auth verify`, `ouro auth switch`, `ouro use`, `ouro provider refresh`, `ouro provider check`, `ouro provider status`, `ouro vault` commands, `ouro connect`, `ouro config model`, `ouro config models`, `ouro setup`, and `ouro bluebubbles replay` now accept `[--agent <name>]` instead of failing during parse before Ouro has a chance to help.",
|
|
20
|
+
"`ouro whoami` keeps its richer runtime identity output but now shares the same no-agent fallback behavior when runtime identity is unavailable, and the runtime seam no longer grabs unrelated ambient repo identity behind the human's back.",
|
|
21
|
+
"CLI help text now tells the truth about optional-agent behavior, and focused parser/execution/help coverage protects single-agent auto-selection, multi-agent prompting, no-agent guidance, and noninteractive ambiguity handling.",
|
|
22
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the missing-agent resolution release."
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"version": "0.1.0-alpha.423",
|
|
27
|
+
"changes": [
|
|
28
|
+
"`ouro connect` now opens a real connect bay with one guided surface for provider auth, Perplexity, OpenAI embeddings, Teams, and BlueBubbles instead of a tiny menu that still required humans to memorize follow-up commands.",
|
|
29
|
+
"Added guided `ouro connect providers`, `ouro connect embeddings`, and `ouro connect teams` flows, plus richer connect-bay routing that distinguishes portable runtime config from machine-local attachments without printing secrets.",
|
|
30
|
+
"Credential/runtime changes now reuse one shared runtime-apply helper that checks daemon socket access, requests restart, polls daemon status, times out cleanly, and falls back clearly when daemon status is unavailable.",
|
|
31
|
+
"Command progress rendering now marks failed phases honestly with a failure state instead of a success checkmark plus `failed`, and the auth/provider docs, README, testing guide, OAUTH setup guide, and prompt truth text all point at the new connect-bay workflow.",
|
|
32
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the connect-bay and runtime-apply progress release."
|
|
33
|
+
]
|
|
34
|
+
},
|
|
4
35
|
{
|
|
5
36
|
"version": "0.1.0-alpha.422",
|
|
6
37
|
"changes": [
|
|
@@ -587,8 +587,7 @@ function createDefaultOuroCliDeps(socketPath = socket_client_1.DEFAULT_DAEMON_SO
|
|
|
587
587
|
const { main } = await Promise.resolve().then(() => __importStar(require("../../senses/cli")));
|
|
588
588
|
await main(agentName);
|
|
589
589
|
},
|
|
590
|
-
scanSessions: async () => {
|
|
591
|
-
const agentName = (0, identity_1.getAgentName)();
|
|
590
|
+
scanSessions: async (agentName) => {
|
|
592
591
|
const agentRoot = (0, identity_1.getAgentRoot)(agentName);
|
|
593
592
|
return (0, session_activity_1.listSessionActivity)({
|
|
594
593
|
sessionsDir: path.join(agentRoot, "state", "sessions"),
|