@arbidocs/sdk 0.3.39 → 0.3.40

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
@@ -3646,7 +3646,8 @@ var FileConfigStore = class {
3646
3646
  requireCredentials() {
3647
3647
  const creds = this.getCredentials();
3648
3648
  if (!creds) {
3649
- throw new ArbiError("Not logged in. Run: arbi login");
3649
+ const hint = process.env.SUPPORT_API_KEY ? "Not logged in. Run: arbi agent-create --email agent-...@<domain> (or: arbi login)" : "Not logged in. Run: arbi login (or arbi quickstart)";
3650
+ throw new ArbiError(hint);
3650
3651
  }
3651
3652
  return creds;
3652
3653
  }