impel-cli 0.18.6 → 0.18.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impel-cli",
3
- "version": "0.18.6",
3
+ "version": "0.18.7",
4
4
  "description": "Prepare isolated Claude and Codex workspaces for every accessible Impel tenant",
5
5
  "type": "module",
6
6
  "bin": {
@@ -106,7 +106,9 @@ export async function cmdStatus(overrides = {}) {
106
106
  } catch (error) {
107
107
  console.log(`Authentication check: unavailable (${error?.message || error})`);
108
108
  console.log(`Current CLI tenant: ${config.tenantId || "not selected"}`);
109
- console.log("Run `impel setup` to refresh authentication, then `impel update` to repair local tenants.");
109
+ console.log(RUNTIME_BRAND.tenant.defaultId
110
+ ? `Run \`${RUNTIME_BRAND.cli.command} setup\` to refresh authentication and repair the local tenant.`
111
+ : "Run `impel setup` to refresh authentication, then `impel update` to repair local tenants.");
110
112
  if (RUNTIME_BRAND.cli.packageName === "impel-cli") io.maybePrintUpdateNotice();
111
113
  return;
112
114
  }
@@ -142,6 +144,10 @@ export async function cmdStatus(overrides = {}) {
142
144
  + `Claude app ${desktop.claude.app}, ChatGPT app ${desktop.codex.app}`,
143
145
  );
144
146
  }
145
- if (incomplete) console.log("Repair or finish missing tenant surfaces with: impel update");
147
+ if (incomplete) {
148
+ console.log(RUNTIME_BRAND.tenant.defaultId
149
+ ? `Repair or finish missing tenant surfaces with: ${RUNTIME_BRAND.cli.command} setup`
150
+ : "Repair or finish missing tenant surfaces with: impel update");
151
+ }
146
152
  if (RUNTIME_BRAND.cli.packageName === "impel-cli") io.maybePrintUpdateNotice();
147
153
  }