@ouro.bot/cli 0.1.0-alpha.661 → 0.1.0-alpha.662
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 +7 -0
- package/dist/heart/daemon/cli-parse.js +10 -0
- package/package.json +3 -2
package/changelog.json
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
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.662",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Parse `--github-token` and `--base-url` in `ouro hatch` so the GitHub Copilot provider can be connected headlessly at cold-start. The credential type, per-provider validation, and storage split already supported github-copilot (githubToken -> vault credential, baseUrl -> config); only the argv parsing was missing, which left the provider selectable but unconnectable from a non-interactive hatch — the exact path Ouro Workbench's provider-config form uses for the work agent.",
|
|
8
|
+
"Override the transitive `shell-quote` dependency to `^1.8.4` (pulled in via `ink` -> `react-devtools-core`) to clear the newly-disclosed GHSA-w7jw-789q-3m8p critical advisory that was failing the release-preflight `npm audit` gate on every PR."
|
|
9
|
+
]
|
|
10
|
+
},
|
|
4
11
|
{
|
|
5
12
|
"version": "0.1.0-alpha.661",
|
|
6
13
|
"changes": [
|
|
@@ -316,6 +316,16 @@ function parseHatchCommand(args) {
|
|
|
316
316
|
i += 1;
|
|
317
317
|
continue;
|
|
318
318
|
}
|
|
319
|
+
if (token === "--github-token") {
|
|
320
|
+
credentials.githubToken = args[i + 1];
|
|
321
|
+
i += 1;
|
|
322
|
+
continue;
|
|
323
|
+
}
|
|
324
|
+
if (token === "--base-url") {
|
|
325
|
+
credentials.baseUrl = args[i + 1];
|
|
326
|
+
i += 1;
|
|
327
|
+
continue;
|
|
328
|
+
}
|
|
319
329
|
if (token === "--migration-path") {
|
|
320
330
|
migrationPath = args[i + 1];
|
|
321
331
|
i += 1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ouro.bot/cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.662",
|
|
4
4
|
"main": "dist/heart/daemon/ouro-entry.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cli": "dist/heart/daemon/ouro-bot-entry.js",
|
|
@@ -93,6 +93,7 @@
|
|
|
93
93
|
"@testing-library/react": {
|
|
94
94
|
"react": "$react",
|
|
95
95
|
"@types/react": "$@types/react"
|
|
96
|
-
}
|
|
96
|
+
},
|
|
97
|
+
"shell-quote": "^1.8.4"
|
|
97
98
|
}
|
|
98
99
|
}
|