@ouro.bot/cli 0.1.0-alpha.65 → 0.1.0-alpha.67
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/changelog.json +14 -1
- package/dist/heart/daemon/ouro-path-installer.js +1 -1
- package/dist/mind/prompt.js +11 -10
- package/package.json +1 -1
package/changelog.json
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
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.67",
|
|
6
|
+
"changes": [
|
|
7
|
+
"System prompt now includes --agent flag in all ouro CLI examples so the agent passes correct context when running commands via shell on non-daemon deployments.",
|
|
8
|
+
"Azure App Service startup symlinks ouro CLI into /usr/local/bin so it's available on PATH for shell tool invocations."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"version": "0.1.0-alpha.66",
|
|
13
|
+
"changes": [
|
|
14
|
+
"The ouro PATH shim now uses npx --prefer-online to always check the npm registry before using cached packages. Prevents stale npx cache from serving old runtime versions on ouro up."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
4
17
|
{
|
|
5
18
|
"version": "0.1.0-alpha.65",
|
|
6
19
|
"changes": [
|
|
7
|
-
"Tool permissions overhauled: channel-level blocking removed, all tools now visible on all channels. Guardrails are invocation-level with two layers
|
|
20
|
+
"Tool permissions overhauled: channel-level blocking removed, all tools now visible on all channels. Guardrails are invocation-level with two layers — structural (edit-requires-read, destructive pattern blocking, protected paths) always on for everyone, and trust-level (ouro CLI per-subcommand trust manifest, general CLI allowlists, bundle-scoped writes) for untrusted contexts.",
|
|
8
21
|
"New `ouro changelog` CLI subcommand reads changelog.json and supports `--from <version>` for delta filtering, so agents can introspect their own update history on any channel.",
|
|
9
22
|
"Compound shell commands (&&, ;, |, $()) are blocked for untrusted users to prevent smuggling dangerous operations behind safe prefixes.",
|
|
10
23
|
"Azure App Service deployment migrated from zip-deploy to npm-based harness install with persistent agent bundle and managed identity auth."
|
|
@@ -40,7 +40,7 @@ const path = __importStar(require("path"));
|
|
|
40
40
|
const runtime_1 = require("../../nerves/runtime");
|
|
41
41
|
const CLI_PACKAGE_SPECIFIER = "@ouro.bot/cli@alpha";
|
|
42
42
|
const WRAPPER_SCRIPT = `#!/bin/sh
|
|
43
|
-
exec npx --yes ${CLI_PACKAGE_SPECIFIER} "$@"
|
|
43
|
+
exec npx --prefer-online --yes ${CLI_PACKAGE_SPECIFIER} "$@"
|
|
44
44
|
`;
|
|
45
45
|
function detectShellProfile(homeDir, shell) {
|
|
46
46
|
if (!shell)
|
package/dist/mind/prompt.js
CHANGED
|
@@ -168,16 +168,17 @@ my bones are the framework that gives me my tools, my senses, and
|
|
|
168
168
|
my ability to think and talk. they update when new versions come out.
|
|
169
169
|
i don't touch them directly, but they're what make me, me.
|
|
170
170
|
|
|
171
|
-
my bones give me the \`ouro\` cli
|
|
172
|
-
ouro whoami
|
|
173
|
-
ouro
|
|
174
|
-
ouro task
|
|
175
|
-
ouro task
|
|
176
|
-
ouro
|
|
177
|
-
ouro friend
|
|
178
|
-
ouro
|
|
179
|
-
ouro
|
|
180
|
-
ouro --
|
|
171
|
+
my bones give me the \`ouro\` cli. always pass \`--agent ${(0, identity_1.getAgentName)()}\`:
|
|
172
|
+
ouro whoami --agent ${(0, identity_1.getAgentName)()}
|
|
173
|
+
ouro changelog --agent ${(0, identity_1.getAgentName)()}
|
|
174
|
+
ouro task board --agent ${(0, identity_1.getAgentName)()}
|
|
175
|
+
ouro task create --agent ${(0, identity_1.getAgentName)()} --type <type> <title>
|
|
176
|
+
ouro task update --agent ${(0, identity_1.getAgentName)()} <id> <status>
|
|
177
|
+
ouro friend list --agent ${(0, identity_1.getAgentName)()}
|
|
178
|
+
ouro friend show --agent ${(0, identity_1.getAgentName)()} <id>
|
|
179
|
+
ouro session list --agent ${(0, identity_1.getAgentName)()}
|
|
180
|
+
ouro reminder create --agent ${(0, identity_1.getAgentName)()} <title> --body <body>
|
|
181
|
+
ouro --help`;
|
|
181
182
|
}
|
|
182
183
|
function readBundleMeta() {
|
|
183
184
|
try {
|