claude-autopm 1.11.2 → 1.11.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.
|
@@ -77,8 +77,8 @@ Total Estimated Effort: 9 weeks
|
|
|
77
77
|
## Next Steps After Split
|
|
78
78
|
|
|
79
79
|
1. Review the epic breakdown
|
|
80
|
-
2. Decompose each epic into tasks:
|
|
81
|
-
3. Sync to GitHub:
|
|
80
|
+
2. Decompose each epic into tasks: `/pm:epic-decompose <feature>/<epic_number>`
|
|
81
|
+
3. Sync to GitHub: `/pm:epic-sync <feature>`
|
|
82
82
|
4. Start implementation on parallel epics
|
|
83
83
|
|
|
84
84
|
## When to Use
|
package/autopm/PLAYBOOK.md
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
### Daily Development Workflow
|
|
6
6
|
1. **Morning Setup**
|
|
7
7
|
```bash
|
|
8
|
-
pm
|
|
9
|
-
pm
|
|
8
|
+
/pm:validate
|
|
9
|
+
/pm:standup
|
|
10
10
|
```
|
|
11
11
|
|
|
12
12
|
2. **Before Coding**
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
3. **After Changes**
|
|
19
19
|
```bash
|
|
20
20
|
npm run test:affected
|
|
21
|
-
pm
|
|
21
|
+
/pm:validate
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
4. **Before Commit**
|
|
@@ -52,10 +52,10 @@ git checkout feature/team-branch # Auto-switch via git hook
|
|
|
52
52
|
|
|
53
53
|
#### PM Commands
|
|
54
54
|
```bash
|
|
55
|
-
pm
|
|
56
|
-
pm
|
|
57
|
-
pm
|
|
58
|
-
pm
|
|
55
|
+
/pm:validate # Validate configuration
|
|
56
|
+
/pm:optimize # Find optimization opportunities
|
|
57
|
+
/pm:standup # Daily standup
|
|
58
|
+
/pm:help # Get help
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
### Troubleshooting
|
|
@@ -125,7 +125,7 @@ autopm install
|
|
|
125
125
|
#### Debug Mode
|
|
126
126
|
```bash
|
|
127
127
|
DEBUG=* npm test # Verbose test output
|
|
128
|
-
AUTOPM_DEBUG=1 pm
|
|
128
|
+
AUTOPM_DEBUG=1 /pm:validate # Debug PM commands
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
### Contact & Support
|