@ouro.bot/cli 0.1.0-alpha.649 → 0.1.0-alpha.650

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 CHANGED
@@ -1,6 +1,12 @@
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.650",
6
+ "changes": [
7
+ "Launchd boot persistence now writes daemon stdout to machine-scoped `~/.ouro-cli/daemon/logs` instead of resolving a no-agent `default.ouro` bundle path during `ouro up`."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.649",
6
12
  "changes": [
@@ -252,7 +252,7 @@ function writeDaemonBootPlist(socketPath) {
252
252
  nodePath: process.execPath,
253
253
  entryPath,
254
254
  socketPath,
255
- logDir: (0, identity_1.getAgentDaemonLogsDir)(),
255
+ logDir: path.join((0, ouro_version_manager_1.getOuroCliHome)(homeDir), "daemon", "logs"),
256
256
  envPath: process.env.PATH,
257
257
  });
258
258
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.649",
3
+ "version": "0.1.0-alpha.650",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",