claude-autopm 3.4.0 → 3.4.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.
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
#### Epic Management
|
|
36
36
|
|
|
37
37
|
- `/pm:epic-decompose` - Break epic into tasks
|
|
38
|
+
- `/pm:epic-sync` - Sync epic/tasks to GitHub as issues
|
|
38
39
|
- `/pm:epic-start` - Launch parallel agents for epic
|
|
39
40
|
- `/pm:epic-status` - Show execution status
|
|
40
41
|
- `/pm:epic-merge` - Merge epic branch
|
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
#### Epic Management
|
|
36
36
|
|
|
37
37
|
- `/pm:epic-decompose` - Break epic into tasks
|
|
38
|
+
- `/pm:epic-sync` - Sync epic/tasks to GitHub as issues
|
|
38
39
|
- `/pm:epic-start` - Launch parallel agents for epic
|
|
39
40
|
- `/pm:epic-status` - Show execution status
|
|
40
41
|
- `/pm:epic-merge` - Merge epic branch
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
allowed-tools: Read, Bash, Glob
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# /pm:prd-show - Display PRD Content
|
|
6
|
+
|
|
7
|
+
Display the full content of a Product Requirements Document (PRD).
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
/pm:prd-show <feature_name>
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Arguments
|
|
16
|
+
|
|
17
|
+
- `<feature_name>` - Name of the PRD to display (without .md extension)
|
|
18
|
+
|
|
19
|
+
## Instructions
|
|
20
|
+
|
|
21
|
+
1. **Locate the PRD file:**
|
|
22
|
+
```bash
|
|
23
|
+
ls .claude/prds/{feature_name}.md 2>/dev/null || ls .pm/prds/{feature_name}.md 2>/dev/null
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
2. **If not found by exact name, search:**
|
|
27
|
+
```bash
|
|
28
|
+
find .claude/prds .pm/prds -name "*{feature_name}*.md" 2>/dev/null | head -1
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
3. **Read and display the PRD:**
|
|
32
|
+
- Use the Read tool to display the full PRD content
|
|
33
|
+
- Show the complete file including frontmatter
|
|
34
|
+
- DO NOT truncate or abbreviate
|
|
35
|
+
|
|
36
|
+
## Output Format
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
PRD: {feature_name}
|
|
40
|
+
File: {file_path}
|
|
41
|
+
─────────────────────────────────────
|
|
42
|
+
|
|
43
|
+
{full PRD content}
|
|
44
|
+
|
|
45
|
+
─────────────────────────────────────
|
|
46
|
+
📋 Next steps:
|
|
47
|
+
• Edit: /pm:prd-edit {feature_name}
|
|
48
|
+
• Parse: /pm:prd-parse {feature_name}
|
|
49
|
+
• Status: /pm:prd-status
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Error Handling
|
|
53
|
+
|
|
54
|
+
If PRD not found:
|
|
55
|
+
```
|
|
56
|
+
❌ PRD not found: {feature_name}
|
|
57
|
+
|
|
58
|
+
Available PRDs:
|
|
59
|
+
{list of .md files in .claude/prds/ or .pm/prds/}
|
|
60
|
+
|
|
61
|
+
Create new: /pm:prd-new {feature_name}
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Required Documentation Access
|
|
65
|
+
|
|
66
|
+
**MANDATORY:** Before displaying PRD, query Context7 for best practices:
|
|
67
|
+
|
|
68
|
+
**Documentation Queries:**
|
|
69
|
+
- `mcp://context7/agile/product-requirements` - PRD best practices
|
|
70
|
+
- `mcp://context7/project-management/documentation` - documentation standards
|
|
71
|
+
|
|
72
|
+
**Why This is Required:**
|
|
73
|
+
- Ensures PRD format follows industry standards
|
|
74
|
+
- Validates PRD completeness against best practices
|
|
@@ -811,10 +811,10 @@
|
|
|
811
811
|
"commands": [
|
|
812
812
|
{
|
|
813
813
|
"subdirectory": "commands/",
|
|
814
|
-
"description": "Core PM workflow commands (
|
|
814
|
+
"description": "Core PM workflow commands (29 total)",
|
|
815
815
|
"type": "collection",
|
|
816
816
|
"categories": {
|
|
817
|
-
"pm": "Provider-agnostic PM commands (
|
|
817
|
+
"pm": "Provider-agnostic PM commands (29)"
|
|
818
818
|
},
|
|
819
819
|
"discovery": "auto",
|
|
820
820
|
"tags": [
|