proagents 1.6.0 → 1.6.1
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/README.md +19 -4
- package/package.json +1 -1
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
|
-
|
|
22
|
+
```bash
|
|
19
23
|
npx proagents init --template nextjs-saas
|
|
24
|
+
```
|
|
20
25
|
|
|
21
|
-
|
|
22
|
-
|
|
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
|