@catladder/cli 3.22.1 → 3.22.3

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
@@ -53,7 +53,7 @@
53
53
  }
54
54
  ],
55
55
  "license": "MIT",
56
- "version": "3.22.1",
56
+ "version": "3.22.3",
57
57
  "scripts": {
58
58
  "lint": "eslint \"src/**/*.ts\"",
59
59
  "lint:fix": "eslint \"src/**/*.ts\" --fix",
@@ -312,10 +312,12 @@ export const setupAgents = async (instance: CommandInstance) => {
312
312
  instance.log("✅ All agents setup complete!");
313
313
  instance.log("");
314
314
  instance.log("🔧 Manual setup required:");
315
- instance.log("Please configure these environment variables in GitLab CI/CD:");
315
+ instance.log(
316
+ "Please configure these environment variables in GitLab CI/CD unless they are already set (by group or global):",
317
+ );
316
318
  instance.log(" Go to Settings > CI/CD > Variables and add:");
317
319
  instance.log(
318
- " - ANTHROPIC_API_KEY (your Anthropic API key, mark as Protected & Masked)",
320
+ " - CLAUDE_CODE_OAUTH_TOKEN or ANTHROPIC_API_KEY (your Anthropic API key, mark as Protected & Masked)",
319
321
  );
320
322
  instance.log(
321
323
  " - AGENT_GITLAB_PERSONAL_ACCESS_TOKEN (token from agent.claude user, mark as Protected & Masked)",