proagents 1.6.0 → 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.
@@ -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 available platforms to user:
2423
- | Platform | File Created |
2424
- |----------|--------------|
2425
- | Claude Code | CLAUDE.md |
2426
- | Cursor | .cursorrules |
2427
- | Windsurf | .windsurfrules |
2428
- | GitHub Copilot | .github/copilot-instructions.md |
2429
- | ChatGPT | CHATGPT.md |
2430
- | Gemini | GEMINI.md |
2431
- | Bolt | BOLT.md |
2432
- | Lovable | LOVABLE.md |
2433
- | Replit | REPLIT.md |
2434
- | Kiro | KIRO.md |
2435
- | Groq | GROQ.md |
2436
- | AntiGravity | ANTIGRAVITY.md |
2437
-
2438
- 2. Ask user which platforms to add
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/README.md CHANGED
@@ -11,17 +11,32 @@ A portable, universal development workflow framework that works with **any AI pl
11
11
 
12
12
  ## Installation
13
13
 
14
+ No install required. Just run:
15
+
14
16
  ```bash
15
- # Initialize in your project
16
17
  npx proagents init
18
+ ```
19
+
20
+ Or with a template:
17
21
 
18
- # Or with a template
22
+ ```bash
19
23
  npx proagents init --template nextjs-saas
24
+ ```
20
25
 
21
- # Install globally (optional)
22
- npm install -g proagents
26
+ ### Upgrading from v1.5.x
27
+
28
+ Version 1.6.0 renamed `proagents/` to `.proagents/` (following `.github`, `.vscode` convention).
29
+
30
+ ```bash
31
+ cd your-project
32
+ npx proagents migrate
23
33
  ```
24
34
 
35
+ **What migration does:**
36
+ - Renames `proagents/` → `.proagents/`
37
+ - Updates paths in `README.md`, `CLAUDE.md`, `.cursorrules`
38
+ - Preserves all your existing configurations
39
+
25
40
  ---
26
41
 
27
42
  ## Quick Start
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proagents",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "AI-agnostic development workflow framework that automates the full software development lifecycle",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",