proagents 1.6.1 → 1.6.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/.proagents/AI_INSTRUCTIONS.md +23 -17
- package/lib/commands/ai.js +1 -1
- package/package.json +1 -1
|
@@ -2419,23 +2419,29 @@ For `pa:ai-list`:
|
|
|
2419
2419
|
- Show which AI instruction files exist in project root
|
|
2420
2420
|
|
|
2421
2421
|
For `pa:ai-add`:
|
|
2422
|
-
1. Show
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
|
2426
|
-
|
|
2427
|
-
|
|
|
2428
|
-
|
|
|
2429
|
-
|
|
|
2430
|
-
|
|
|
2431
|
-
|
|
|
2432
|
-
|
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2422
|
+
1. Show ALL platforms to user (always show complete list):
|
|
2423
|
+
|
|
2424
|
+
**IDE-based AI Assistants:**
|
|
2425
|
+
| Platform | File Created | Description |
|
|
2426
|
+
|----------|--------------|-------------|
|
|
2427
|
+
| Claude Code | CLAUDE.md | Anthropic Claude in terminal/IDE |
|
|
2428
|
+
| Cursor | .cursorrules | Cursor AI IDE |
|
|
2429
|
+
| Windsurf | .windsurfrules | Codeium Windsurf IDE |
|
|
2430
|
+
| GitHub Copilot | .github/copilot-instructions.md | GitHub Copilot |
|
|
2431
|
+
| AWS Kiro | KIRO.md | AWS Kiro IDE |
|
|
2432
|
+
| Antigravity | ANTIGRAVITY.md | Antigravity IDE (Gemini/Claude) |
|
|
2433
|
+
|
|
2434
|
+
**Web-based AI Platforms:**
|
|
2435
|
+
| Platform | File Created | Description |
|
|
2436
|
+
|----------|--------------|-------------|
|
|
2437
|
+
| ChatGPT | CHATGPT.md | OpenAI ChatGPT |
|
|
2438
|
+
| Gemini | GEMINI.md | Google Gemini |
|
|
2439
|
+
| Replit AI | REPLIT.md | Replit Ghostwriter |
|
|
2440
|
+
| Bolt.new | BOLT.md | StackBlitz Bolt |
|
|
2441
|
+
| Lovable | LOVABLE.md | Lovable (GPT Engineer) |
|
|
2442
|
+
| Groq | GROQ.md | Groq fast inference |
|
|
2443
|
+
|
|
2444
|
+
2. Ask user which platforms to add (show all 12 options)
|
|
2439
2445
|
3. For each selected platform:
|
|
2440
2446
|
- Copy content from `./.proagents/{PLATFORM}.md` (e.g., `./.proagents/CLAUDE.md`)
|
|
2441
2447
|
- If target file exists, wrap new content with markers and append:
|
package/lib/commands/ai.js
CHANGED
|
@@ -361,7 +361,7 @@ export async function aiAddCommand() {
|
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
console.log(chalk.gray('\nAI instruction files added to project root.'));
|
|
364
|
-
console.log(chalk.gray('Config updated in proagents/proagents.config.yaml\n'));
|
|
364
|
+
console.log(chalk.gray('Config updated in .proagents/proagents.config.yaml\n'));
|
|
365
365
|
}
|
|
366
366
|
|
|
367
367
|
/**
|