@catladder/cli 3.22.1 → 3.22.2
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/bundles/cli/index.js +1 -1
- package/dist/cli/src/apps/cli/commands/project/setup/setupAgents.js +2 -2
- package/dist/cli/src/apps/cli/commands/project/setup/setupAgents.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/apps/cli/commands/project/setup/setupAgents.ts +4 -2
package/package.json
CHANGED
|
@@ -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(
|
|
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)",
|