@agentconnect.md/cli 1.14.0-rc.6 → 1.14.0-rc.7

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/dist/index.js CHANGED
@@ -3060,7 +3060,7 @@ function resolveDaemonEntry(root) {
3060
3060
  const entry = currentEntry(root);
3061
3061
  if (!existsSync(entry)) {
3062
3062
  if (process.env.AGENTCONNECT_DAEMON_ENTRY) throw new Error(`AGENTCONNECT_DAEMON_ENTRY points at a missing file: ${entry}`);
3063
- throw new Error(`no active daemon at ${currentLink(root)} — install one with \`agentconnect version install --channel stable\``);
3063
+ throw new Error(`no active daemon at ${currentLink(root)} — install one with \`agentconnect install --channel stable\``);
3064
3064
  }
3065
3065
  return entry;
3066
3066
  }
@@ -8221,7 +8221,7 @@ const AgentSpec = object({
8221
8221
  name: string(),
8222
8222
  displayName: string().nullable().optional(),
8223
8223
  iconUrl: string().url().nullable().optional(),
8224
- description: string().optional(),
8224
+ description: string().nullable().optional(),
8225
8225
  runtime: string().optional(),
8226
8226
  model: string().nullable().optional(),
8227
8227
  reasoningEffort: string().nullable().optional(),
@@ -14580,7 +14580,7 @@ function versionList(root) {
14580
14580
  const cur = currentVersion(root);
14581
14581
  console.log(`channel: ${meta.channel}`);
14582
14582
  if (installed.length === 0) {
14583
- console.log("installed: none — run `agentconnect version install --channel stable`");
14583
+ console.log("installed: none — run `agentconnect install --channel stable`");
14584
14584
  return;
14585
14585
  }
14586
14586
  console.log("installed:");