-
Notifications
You must be signed in to change notification settings - Fork 964
feat: Add business-prd and mir-to-prd skills #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: Add business-prd and mir-to-prd skills #43
Conversation
- business-prd: Generate Business PRDs for marketing, launch, and operational initiatives that require human execution (not software development) - mir-to-prd: Convert Master Intelligence Reports (MIRs) from FORGE-MIR framework into actionable Technical PRDs and Business PRDs Both skills include optional Asana export functionality for task import. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Greptile Summary
Important Files Changed
Confidence score: 4/5
Sequence DiagramsequenceDiagram
participant User
participant RalphAgent as "Ralph Agent"
participant MIRSkill as "MIR-to-PRD Skill"
participant BusinessPRDSkill as "Business PRD Skill"
participant TechnicalPRDSkill as "Technical PRD Skill"
participant FileSystem as "File System"
User->>RalphAgent: "Convert MIR to PRDs"
RalphAgent->>MIRSkill: "Activate mir-to-prd skill"
MIRSkill->>FileSystem: "Read MIR document"
FileSystem-->>MIRSkill: "MIR content"
MIRSkill->>MIRSkill: "Scan for technical builds"
MIRSkill->>MIRSkill: "Scan for business tasks"
alt Technical builds found
MIRSkill->>TechnicalPRDSkill: "Generate technical PRD"
TechnicalPRDSkill->>FileSystem: "Save tasks/prd-[feature].md"
end
alt Business tasks found
MIRSkill->>BusinessPRDSkill: "Generate business PRD"
BusinessPRDSkill->>FileSystem: "Save tasks/business-prd-[name].md"
end
MIRSkill->>User: "Prompt for Asana export (optional)"
alt User wants Asana export
User->>MIRSkill: "Yes, export to Asana"
MIRSkill->>FileSystem: "Save tasks/asana-import-[name].json"
end
MIRSkill->>User: "Provide conversion summary"
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2 files reviewed, 3 comments
| - What tools are involved? | ||
| - What are the inputs/outputs? | ||
| 3. Break into user stories (one context window each) | ||
| 4. Generate standard PRD using /prd skill format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: References /prd skill format but should be /prd skill format for consistency with line 120
| 4. Generate standard PRD using /prd skill format | |
| 4. Generate standard PRD using `/prd` skill format |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Prompt To Fix With AI
This is a comment left during a code review.
Path: skills/mir-to-prd/SKILL.md
Line: 97:97
Comment:
**style:** References `/prd skill format` but should be `/prd` skill format for consistency with line 120
```suggestion
4. Generate standard PRD using `/prd` skill format
```
<sub>Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!</sub>
How can I resolve this? If you propose a fix, please make it concise.| - What actions are needed? | ||
| - What's the timeline? | ||
| 3. Break into action items | ||
| 4. Generate Business PRD using /business-prd skill format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: References /business-prd skill format but should be /business-prd skill format for consistency with line 153
| 4. Generate Business PRD using /business-prd skill format | |
| 4. Generate Business PRD using `/business-prd` skill format |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!
Prompt To Fix With AI
This is a comment left during a code review.
Path: skills/mir-to-prd/SKILL.md
Line: 110:110
Comment:
**style:** References `/business-prd skill format` but should be `/business-prd` skill format for consistency with line 153
```suggestion
4. Generate Business PRD using `/business-prd` skill format
```
<sub>Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!</sub>
How can I resolve this? If you propose a fix, please make it concise.| ▼ ▼ | ||
| ┌────────┐ ┌────────┐ | ||
| │Tech PRD│ │Biz PRD │ | ||
| │(/prd) │ │(/biz) │ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
syntax: References (/biz) but the actual skill name is business-prd - should be (/business-prd) for accuracy
Prompt To Fix With AI
This is a comment left during a code review.
Path: skills/mir-to-prd/SKILL.md
Line: 356:356
Comment:
**syntax:** References `(/biz)` but the actual skill name is `business-prd` - should be `(/business-prd)` for accuracy
How can I resolve this? If you propose a fix, please make it concise.- run.sh: Lightweight runner for ralph-projects folder - templates/wordpress-ssh.md: Reusable WordPress SSH project template Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Summary
Both skills include optional Asana export functionality for task import.
New Files
skills/business-prd/SKILL.mdskills/mir-to-prd/SKILL.mdUse Cases
Key Features
business-prd
mir-to-prd
Test plan
business-prdskill and generate a test Business PRDmir-to-prdskill and run against a sample MIRprdandralphskills still work (no regressions)🤖 Generated with Claude Code