@ouro.bot/cli 0.1.0-alpha.558 → 0.1.0-alpha.559

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,14 @@
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.559",
6
+ "changes": [
7
+ "Cached agent-name lookups no longer emit `identity.resolve` on every call, cutting the largest repeated daemon log event source while preserving the first argv resolution event.",
8
+ "Identity tests now lock the lower-volume logging contract so cached `getAgentName()` calls stay quiet.",
9
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the daemon log volume release."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.558",
6
14
  "changes": [
@@ -218,12 +218,6 @@ let _agentConfigOverride = null;
218
218
  */
219
219
  function getAgentName() {
220
220
  if (_cachedAgentName) {
221
- (0, runtime_1.emitNervesEvent)({
222
- event: "identity.resolve",
223
- component: "config/identity",
224
- message: "resolved agent name from cache",
225
- meta: { source: "cache" },
226
- });
227
221
  return _cachedAgentName;
228
222
  }
229
223
  const idx = process.argv.indexOf("--agent");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.558",
3
+ "version": "0.1.0-alpha.559",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",