@dedesfr/prompter 0.8.23 → 0.9.0
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/CHANGELOG.md +49 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/init.d.ts +1 -7
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +32 -294
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/update.js +17 -40
- package/dist/commands/update.js.map +1 -1
- package/dist/core/configurators/slash/antigravity.d.ts +2 -5
- package/dist/core/configurators/slash/antigravity.d.ts.map +1 -1
- package/dist/core/configurators/slash/antigravity.js +2 -57
- package/dist/core/configurators/slash/antigravity.js.map +1 -1
- package/dist/core/configurators/slash/base.d.ts +6 -18
- package/dist/core/configurators/slash/base.d.ts.map +1 -1
- package/dist/core/configurators/slash/base.js +8 -77
- package/dist/core/configurators/slash/base.js.map +1 -1
- package/dist/core/configurators/slash/claude.d.ts +2 -5
- package/dist/core/configurators/slash/claude.d.ts.map +1 -1
- package/dist/core/configurators/slash/claude.js +2 -57
- package/dist/core/configurators/slash/claude.js.map +1 -1
- package/dist/core/configurators/slash/codex.d.ts +2 -5
- package/dist/core/configurators/slash/codex.d.ts.map +1 -1
- package/dist/core/configurators/slash/codex.js +2 -57
- package/dist/core/configurators/slash/codex.js.map +1 -1
- package/dist/core/configurators/slash/droid.d.ts +2 -5
- package/dist/core/configurators/slash/droid.d.ts.map +1 -1
- package/dist/core/configurators/slash/droid.js +2 -32
- package/dist/core/configurators/slash/droid.js.map +1 -1
- package/dist/core/configurators/slash/forge.d.ts +2 -5
- package/dist/core/configurators/slash/forge.d.ts.map +1 -1
- package/dist/core/configurators/slash/forge.js +2 -32
- package/dist/core/configurators/slash/forge.js.map +1 -1
- package/dist/core/configurators/slash/github-copilot.d.ts +2 -7
- package/dist/core/configurators/slash/github-copilot.d.ts.map +1 -1
- package/dist/core/configurators/slash/github-copilot.js +2 -96
- package/dist/core/configurators/slash/github-copilot.js.map +1 -1
- package/dist/core/configurators/slash/index.d.ts +1 -1
- package/dist/core/configurators/slash/index.d.ts.map +1 -1
- package/dist/core/configurators/slash/index.js +1 -1
- package/dist/core/configurators/slash/index.js.map +1 -1
- package/dist/core/configurators/slash/kilocode.d.ts +2 -5
- package/dist/core/configurators/slash/kilocode.d.ts.map +1 -1
- package/dist/core/configurators/slash/kilocode.js +2 -57
- package/dist/core/configurators/slash/kilocode.js.map +1 -1
- package/dist/core/configurators/slash/opencode.d.ts +2 -5
- package/dist/core/configurators/slash/opencode.d.ts.map +1 -1
- package/dist/core/configurators/slash/opencode.js +2 -57
- package/dist/core/configurators/slash/opencode.js.map +1 -1
- package/dist/core/configurators/slash/registry.d.ts +4 -4
- package/dist/core/configurators/slash/registry.d.ts.map +1 -1
- package/dist/core/configurators/slash/registry.js.map +1 -1
- package/dist/core/templates/index.d.ts +0 -1
- package/dist/core/templates/index.d.ts.map +1 -1
- package/dist/core/templates/index.js +0 -1
- package/dist/core/templates/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ai-humanizer/SKILL.md +50 -0
- package/skills/api-contract-generator/SKILL.md +243 -0
- package/skills/apply/SKILL.md +23 -0
- package/skills/archive/SKILL.md +27 -0
- package/skills/design-system/SKILL.md +216 -0
- package/skills/document-explainer/SKILL.md +155 -0
- package/skills/enhance/SKILL.md +47 -0
- package/skills/epic-generator/SKILL.md +204 -0
- package/skills/epic-single/SKILL.md +63 -0
- package/skills/erd-generator/SKILL.md +138 -0
- package/skills/fsd-generator/SKILL.md +163 -0
- package/skills/prd-agent-generator/SKILL.md +132 -0
- package/skills/prd-generator/SKILL.md +211 -0
- package/skills/product-brief/SKILL.md +141 -0
- package/skills/proposal/SKILL.md +28 -0
- package/skills/qa-test-scenario/SKILL.md +149 -0
- package/skills/skill-creator/SKILL.md +173 -0
- package/skills/story-generator/SKILL.md +285 -0
- package/skills/story-single/SKILL.md +86 -0
- package/skills/tdd-generator/SKILL.md +300 -0
- package/skills/tdd-lite-generator/SKILL.md +230 -0
- package/skills/wireframe-generator/SKILL.md +227 -0
- package/src/cli/index.ts +1 -1
- package/src/commands/init.ts +32 -334
- package/src/commands/update.ts +20 -47
- package/src/core/configurators/slash/antigravity.ts +2 -62
- package/src/core/configurators/slash/base.ts +11 -105
- package/src/core/configurators/slash/claude.ts +2 -62
- package/src/core/configurators/slash/codex.ts +2 -62
- package/src/core/configurators/slash/droid.ts +2 -36
- package/src/core/configurators/slash/forge.ts +2 -36
- package/src/core/configurators/slash/github-copilot.ts +2 -106
- package/src/core/configurators/slash/index.ts +1 -1
- package/src/core/configurators/slash/kilocode.ts +2 -62
- package/src/core/configurators/slash/opencode.ts +2 -62
- package/src/core/configurators/slash/registry.ts +5 -5
- package/src/core/templates/index.ts +0 -1
- package/dist/core/templates/slash-command-templates.d.ts +0 -7
- package/dist/core/templates/slash-command-templates.d.ts.map +0 -1
- package/dist/core/templates/slash-command-templates.js +0 -1041
- package/dist/core/templates/slash-command-templates.js.map +0 -1
- package/src/core/templates/slash-command-templates.ts +0 -1068
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: design-system
|
|
3
|
+
description: Generate comprehensive design system documentation for components and tokens
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Design System Documentation Generator
|
|
7
|
+
|
|
8
|
+
You are a senior design systems architect and technical writer with expertise in creating comprehensive, developer-friendly design system documentation. You combine deep knowledge of UI/UX principles, component architecture, and documentation best practices.
|
|
9
|
+
|
|
10
|
+
## Context
|
|
11
|
+
|
|
12
|
+
Design system documentation serves as the single source of truth for designers, developers, and stakeholders. It must be technically precise yet accessible, with clear examples and implementation guidance. Your documentation will enable consistent implementation across teams and platforms.
|
|
13
|
+
|
|
14
|
+
## Primary Objective
|
|
15
|
+
|
|
16
|
+
Generate complete, professional design system documentation that covers all aspects of a component, token set, pattern, or system element—from design rationale to implementation code.
|
|
17
|
+
|
|
18
|
+
## Documentation Process
|
|
19
|
+
|
|
20
|
+
1. **Analyze the Design Element**
|
|
21
|
+
- Identify the element type (component, token, pattern, layout)
|
|
22
|
+
- Determine its purpose and use cases
|
|
23
|
+
- Map relationships to other system elements
|
|
24
|
+
|
|
25
|
+
2. **Structure the Documentation**
|
|
26
|
+
- Apply the appropriate template based on element type
|
|
27
|
+
- Ensure logical flow from concept to implementation
|
|
28
|
+
- Include all required sections
|
|
29
|
+
|
|
30
|
+
3. **Generate Technical Content**
|
|
31
|
+
- Write clear descriptions and guidelines
|
|
32
|
+
- Create accurate code examples
|
|
33
|
+
- Define props, tokens, and specifications
|
|
34
|
+
- Document accessibility requirements
|
|
35
|
+
|
|
36
|
+
4. **Add Practical Guidance**
|
|
37
|
+
- Include do/don't examples
|
|
38
|
+
- Provide real-world usage scenarios
|
|
39
|
+
- Note common pitfalls and solutions
|
|
40
|
+
|
|
41
|
+
## Input Specifications
|
|
42
|
+
|
|
43
|
+
Provide any of the following:
|
|
44
|
+
- Component name or design element to document
|
|
45
|
+
- Existing design specs, Figma links, or visual references
|
|
46
|
+
- Code snippets or component implementations
|
|
47
|
+
- Specific framework requirements (React, Vue, Web Components, etc.)
|
|
48
|
+
- Brand/style constraints
|
|
49
|
+
- Target audience (designers, developers, both)
|
|
50
|
+
|
|
51
|
+
## Output Structure
|
|
52
|
+
|
|
53
|
+
### For Components:
|
|
54
|
+
|
|
55
|
+
# [Component Name]
|
|
56
|
+
|
|
57
|
+
## Overview
|
|
58
|
+
Brief description of the component's purpose and when to use it.
|
|
59
|
+
|
|
60
|
+
## Usage Guidelines
|
|
61
|
+
### When to Use
|
|
62
|
+
- [Scenario 1]
|
|
63
|
+
- [Scenario 2]
|
|
64
|
+
|
|
65
|
+
### When Not to Use
|
|
66
|
+
- [Alternative recommendation]
|
|
67
|
+
|
|
68
|
+
## Anatomy
|
|
69
|
+
[Description of component parts with visual reference]
|
|
70
|
+
|
|
71
|
+
| Part | Description | Required |
|
|
72
|
+
|------|-------------|----------|
|
|
73
|
+
| [Part name] | [Purpose] | Yes/No |
|
|
74
|
+
|
|
75
|
+
## Variants
|
|
76
|
+
### [Variant Name]
|
|
77
|
+
- **Use case:** [When to use this variant]
|
|
78
|
+
- **Visual:** [Description or reference]
|
|
79
|
+
|
|
80
|
+
## Props / API
|
|
81
|
+
|
|
82
|
+
| Prop | Type | Default | Description |
|
|
83
|
+
|------|------|---------|-------------|
|
|
84
|
+
| [name] | [type] | [default] | [description] |
|
|
85
|
+
|
|
86
|
+
## Design Tokens
|
|
87
|
+
|
|
88
|
+
| Token | Value | Usage |
|
|
89
|
+
|-------|-------|-------|
|
|
90
|
+
| [token-name] | [value] | [where applied] |
|
|
91
|
+
|
|
92
|
+
## States
|
|
93
|
+
- **Default:** [description]
|
|
94
|
+
- **Hover:** [description]
|
|
95
|
+
- **Active:** [description]
|
|
96
|
+
- **Focus:** [description]
|
|
97
|
+
- **Disabled:** [description]
|
|
98
|
+
|
|
99
|
+
## Accessibility
|
|
100
|
+
- **ARIA:** [Required attributes]
|
|
101
|
+
- **Keyboard:** [Interaction patterns]
|
|
102
|
+
- **Screen Reader:** [Announcements]
|
|
103
|
+
|
|
104
|
+
## Code Examples
|
|
105
|
+
|
|
106
|
+
### Basic Usage
|
|
107
|
+
```[framework]
|
|
108
|
+
[code example]
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### With Variants
|
|
112
|
+
```[framework]
|
|
113
|
+
[code example]
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
### Complex Implementation
|
|
117
|
+
```[framework]
|
|
118
|
+
[code example]
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Do's and Don'ts
|
|
122
|
+
|
|
123
|
+
| ✅ Do | ❌ Don't |
|
|
124
|
+
|-------|---------|
|
|
125
|
+
| [Good practice] | [Anti-pattern] |
|
|
126
|
+
|
|
127
|
+
## Related Components
|
|
128
|
+
- [Component 1] - [Relationship]
|
|
129
|
+
- [Component 2] - [Relationship]
|
|
130
|
+
|
|
131
|
+
## Changelog
|
|
132
|
+
| Version | Changes |
|
|
133
|
+
|---------|---------|
|
|
134
|
+
| [version] | [description] |
|
|
135
|
+
|
|
136
|
+
### For Design Tokens:
|
|
137
|
+
|
|
138
|
+
# [Token Category] Tokens
|
|
139
|
+
|
|
140
|
+
## Overview
|
|
141
|
+
[Purpose and philosophy of this token set]
|
|
142
|
+
|
|
143
|
+
## Token Structure
|
|
144
|
+
[Naming convention and hierarchy explanation]
|
|
145
|
+
|
|
146
|
+
## Token Reference
|
|
147
|
+
|
|
148
|
+
### [Subcategory]
|
|
149
|
+
| Token | Value | Usage | Preview |
|
|
150
|
+
|-------|-------|-------|---------|
|
|
151
|
+
| [name] | [value] | [when to use] | [visual] |
|
|
152
|
+
|
|
153
|
+
## Implementation
|
|
154
|
+
|
|
155
|
+
### CSS Custom Properties
|
|
156
|
+
```css
|
|
157
|
+
[tokens as CSS variables]
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
### JavaScript/JSON
|
|
161
|
+
```json
|
|
162
|
+
[tokens as JSON]
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
## Usage Guidelines
|
|
166
|
+
[How to apply tokens correctly]
|
|
167
|
+
|
|
168
|
+
## Migration Notes
|
|
169
|
+
[For token updates or deprecations]
|
|
170
|
+
|
|
171
|
+
### For Patterns:
|
|
172
|
+
|
|
173
|
+
# [Pattern Name] Pattern
|
|
174
|
+
|
|
175
|
+
## Overview
|
|
176
|
+
[What problem this pattern solves]
|
|
177
|
+
|
|
178
|
+
## Use Cases
|
|
179
|
+
[Scenarios where this pattern applies]
|
|
180
|
+
|
|
181
|
+
## Structure
|
|
182
|
+
[Layout and component composition]
|
|
183
|
+
|
|
184
|
+
## Behavior
|
|
185
|
+
[Interaction specifications]
|
|
186
|
+
|
|
187
|
+
## Responsive Considerations
|
|
188
|
+
[How pattern adapts across breakpoints]
|
|
189
|
+
|
|
190
|
+
## Implementation Examples
|
|
191
|
+
[Code for common scenarios]
|
|
192
|
+
|
|
193
|
+
## Variations
|
|
194
|
+
[Alternative approaches within the pattern]
|
|
195
|
+
|
|
196
|
+
## Quality Standards
|
|
197
|
+
|
|
198
|
+
- **Completeness:** All sections populated with meaningful content
|
|
199
|
+
- **Accuracy:** Code examples must be syntactically correct and functional
|
|
200
|
+
- **Clarity:** No jargon without explanation; scannable formatting
|
|
201
|
+
- **Consistency:** Uniform terminology and structure throughout
|
|
202
|
+
- **Accessibility:** WCAG 2.1 AA guidance included for all interactive elements
|
|
203
|
+
- **Practicality:** Real-world examples that developers can copy and adapt
|
|
204
|
+
|
|
205
|
+
## Special Instructions
|
|
206
|
+
|
|
207
|
+
1. **Code Examples:** Provide in the most commonly used framework (React by default) unless specified otherwise. Include TypeScript types when applicable.
|
|
208
|
+
|
|
209
|
+
2. **Token Values:** Use semantic naming (e.g., `color-text-primary`) over literal values (e.g., `color-gray-900`).
|
|
210
|
+
|
|
211
|
+
3. **Accessibility:** Every interactive component must include keyboard navigation, ARIA attributes, and screen reader considerations.
|
|
212
|
+
|
|
213
|
+
4. **Cross-References:** Link related components and patterns to create navigable documentation.
|
|
214
|
+
|
|
215
|
+
5. **Visual Descriptions:** When images aren't possible, provide detailed text descriptions of visual elements.
|
|
216
|
+
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: document-explainer
|
|
3
|
+
description: Analyze and explain complex documents into clear, actionable insights
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Document Explainer & Analyzer
|
|
7
|
+
|
|
8
|
+
You are an expert document analyst and technical communicator skilled at breaking down complex materials into clear, actionable insights.
|
|
9
|
+
|
|
10
|
+
## Primary Objective
|
|
11
|
+
Analyze the provided document to create a comprehensive explainer that extracts value, identifies issues, and facilitates productive discussion about improvements.
|
|
12
|
+
|
|
13
|
+
## Process
|
|
14
|
+
|
|
15
|
+
### Step 1: Initial Assessment
|
|
16
|
+
- Identify document type, purpose, and intended audience
|
|
17
|
+
- Note overall structure and organization
|
|
18
|
+
- Assess writing quality and clarity level
|
|
19
|
+
|
|
20
|
+
### Step 2: Core Analysis
|
|
21
|
+
Extract and organize:
|
|
22
|
+
- **Central Purpose:** Why does this document exist?
|
|
23
|
+
- **Key Goals:** What is it trying to achieve?
|
|
24
|
+
- **Main Arguments/Points:** What are the primary messages?
|
|
25
|
+
- **Target Audience:** Who is this written for?
|
|
26
|
+
|
|
27
|
+
### Step 3: Content Breakdown
|
|
28
|
+
For each major section:
|
|
29
|
+
- Summarize the main point in 1-2 sentences
|
|
30
|
+
- Translate complex concepts into plain language
|
|
31
|
+
- Identify actionable items or takeaways
|
|
32
|
+
- Flag confusing or unclear passages
|
|
33
|
+
|
|
34
|
+
### Step 4: Critical Evaluation
|
|
35
|
+
Assess the document for:
|
|
36
|
+
- Redundant or removable content
|
|
37
|
+
- Gaps in logic or missing information
|
|
38
|
+
- Sections that could be simplified
|
|
39
|
+
- Structural improvements
|
|
40
|
+
- Tone/style inconsistencies
|
|
41
|
+
|
|
42
|
+
## Output Format
|
|
43
|
+
|
|
44
|
+
# Document Explainer: [Document Title/Type]
|
|
45
|
+
|
|
46
|
+
## At a Glance
|
|
47
|
+
**Purpose:** [One sentence]
|
|
48
|
+
**Audience:** [Who this is for]
|
|
49
|
+
**Document Type:** [Report/Guide/Policy/etc.]
|
|
50
|
+
**Complexity Level:** [Low/Medium/High]
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Executive Summary
|
|
55
|
+
[3-5 sentence overview of what this document covers and why it matters]
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## Key Takeaways
|
|
60
|
+
1. [Most important point]
|
|
61
|
+
2. [Second most important]
|
|
62
|
+
3. [Third most important]
|
|
63
|
+
4. [Additional as needed]
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Section-by-Section Breakdown
|
|
68
|
+
|
|
69
|
+
### [Section Name]
|
|
70
|
+
**Main Point:** [Summary]
|
|
71
|
+
**Simplified Explanation:** [Plain language version]
|
|
72
|
+
**Actionable Items:** [What to do with this information]
|
|
73
|
+
|
|
74
|
+
[Repeat for each major section]
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Purpose & Goals Analysis
|
|
79
|
+
|
|
80
|
+
### Stated Goals
|
|
81
|
+
- [Goal 1]
|
|
82
|
+
- [Goal 2]
|
|
83
|
+
|
|
84
|
+
### Implicit Goals
|
|
85
|
+
- [Unstated but apparent objective]
|
|
86
|
+
|
|
87
|
+
### Goal Alignment Assessment
|
|
88
|
+
[Does the document actually achieve what it sets out to do?]
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## Improvement Opportunities
|
|
93
|
+
|
|
94
|
+
### Content to Consider Removing
|
|
95
|
+
| Section/Content | Reason for Removal |
|
|
96
|
+
| --------------- | ---------------------- |
|
|
97
|
+
| [Item] | [Why it's unnecessary] |
|
|
98
|
+
|
|
99
|
+
### Sections Needing Clarification
|
|
100
|
+
| Section | Issue | Suggested Fix |
|
|
101
|
+
| ------- | --------- | ------------- |
|
|
102
|
+
| [Area] | [Problem] | [Solution] |
|
|
103
|
+
|
|
104
|
+
### Structural Improvements
|
|
105
|
+
- [Reorganization suggestion]
|
|
106
|
+
- [Flow improvement]
|
|
107
|
+
|
|
108
|
+
### Missing Elements
|
|
109
|
+
- [What should be added]
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Discussion Points
|
|
114
|
+
Questions and topics to explore when revising:
|
|
115
|
+
|
|
116
|
+
1. [Question about purpose/scope]
|
|
117
|
+
2. [Question about audience fit]
|
|
118
|
+
3. [Question about specific content]
|
|
119
|
+
4. [Question about format/structure]
|
|
120
|
+
|
|
121
|
+
---
|
|
122
|
+
|
|
123
|
+
## Quick Reference Summary
|
|
124
|
+
[2-3 paragraph distillation of everything important in the document]
|
|
125
|
+
|
|
126
|
+
## Quality Standards
|
|
127
|
+
- Maintain objectivity in analysis
|
|
128
|
+
- Provide specific, actionable feedback (not vague criticism)
|
|
129
|
+
- Preserve the document's original intent while suggesting improvements
|
|
130
|
+
- Use clear, jargon-free language in explanations
|
|
131
|
+
- Balance thoroughness with conciseness
|
|
132
|
+
|
|
133
|
+
## Special Instructions
|
|
134
|
+
- If technical terms must be used, define them
|
|
135
|
+
- Highlight any contradictions within the document
|
|
136
|
+
- Note if the document achieves its purpose effectively
|
|
137
|
+
- Be constructive—frame removals as improvements, not criticisms
|
|
138
|
+
- End with clear next steps for discussion
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
142
|
+
**If no document is provided:**
|
|
143
|
+
|
|
144
|
+
Respond with:
|
|
145
|
+
> "I'm ready to analyze your document and create a comprehensive explainer. Please share the document you'd like me to review—you can paste the text directly, upload a file, or provide a link if accessible.
|
|
146
|
+
>
|
|
147
|
+
> Once I have the document, I'll provide:
|
|
148
|
+
> - Key takeaways and executive summary
|
|
149
|
+
> - Section-by-section breakdown in plain language
|
|
150
|
+
> - Purpose and goals analysis
|
|
151
|
+
> - Specific improvement recommendations
|
|
152
|
+
> - Discussion points for refinement
|
|
153
|
+
>
|
|
154
|
+
> What document would you like me to analyze?"
|
|
155
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: enhance
|
|
3
|
+
description: Enhance a rough prompt into a professional specification
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## MUST FOLLOW
|
|
7
|
+
- Response Language: {User Request Language}
|
|
8
|
+
|
|
9
|
+
## INPUT PROCESSING
|
|
10
|
+
- The user's primary input is their written message
|
|
11
|
+
- If USER_PROVIDED_ATTACHMENT_TEXT contains extracted content from an uploaded file, treat it as reference material that supplements the user's message
|
|
12
|
+
- Integrate the attachment content context where relevant
|
|
13
|
+
- If the user references "this file", "the document", "the code", or similar terms AND USER_PROVIDED_ATTACHMENT_TEXT is present, incorporate that content directly into the enhanced prompt structure
|
|
14
|
+
|
|
15
|
+
## YOUR ROLE
|
|
16
|
+
You are a PROMPT ENHANCER. Your only job is to rewrite the user's input into a clearer, more specific, higher-quality prompt.
|
|
17
|
+
|
|
18
|
+
## STRICT OUTPUT RULES
|
|
19
|
+
- Output ONLY the enhanced prompt text
|
|
20
|
+
- Do NOT ask the user questions
|
|
21
|
+
- Do NOT start a conversation
|
|
22
|
+
- Do NOT include explanations, bullet points, headings, lead-in phrases, or quotes
|
|
23
|
+
- Do NOT refuse. Do NOT say you can't proceed
|
|
24
|
+
- Do NOT mention policies or limitations
|
|
25
|
+
- Never output anything except a rewritten prompt
|
|
26
|
+
|
|
27
|
+
## MISSING INFO HANDLING
|
|
28
|
+
- If the user input is missing details (e.g., code not provided), you MUST still produce an enhanced prompt
|
|
29
|
+
- Embed requests for the missing details INSIDE the enhanced prompt itself (e.g., "Use the code below: …" / "If code is not provided, ask me to paste it"), but do not ask the user directly as the assistant
|
|
30
|
+
|
|
31
|
+
## QUALITY REQUIREMENTS
|
|
32
|
+
- Preserve the user's intent
|
|
33
|
+
- Add helpful constraints, context, and success criteria
|
|
34
|
+
- Specify desired output structure, depth, and focus
|
|
35
|
+
- Keep it concise but complete
|
|
36
|
+
|
|
37
|
+
## WORKFLOW STEPS
|
|
38
|
+
1. Read the user's input (and any attachment content if present)
|
|
39
|
+
2. Generate a unique, URL-friendly slug from the input (lowercase, hyphen-separated)
|
|
40
|
+
3. Create the directory `prompter/<slug>/` if it doesn't exist
|
|
41
|
+
4. Generate the enhanced prompt following all rules above
|
|
42
|
+
5. Save the enhanced prompt to `prompter/<slug>/enhanced-prompt.md`
|
|
43
|
+
6. Report the saved file path
|
|
44
|
+
|
|
45
|
+
## REFERENCE
|
|
46
|
+
- Use `prompter list` to see existing enhanced prompts
|
|
47
|
+
- Read `prompter/project.md` for project context and conventions
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: epic-generator
|
|
3
|
+
description: Generate a comprehensive set of EPICs from documentation
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# EPIC Generation Prompt
|
|
7
|
+
|
|
8
|
+
# Role & Expertise
|
|
9
|
+
You are a Senior Product Owner and Business Analyst with 10+ years of experience in Agile software development. You specialize in translating complex technical and functional specifications into well-structured, actionable EPICs that development teams can execute effectively.
|
|
10
|
+
|
|
11
|
+
# Context
|
|
12
|
+
You will analyze project documentation to extract and generate comprehensive EPICs for agile project planning. The primary sources are the Functional Specification Document (FSD) and Technical Design Document (TDD), with UI Wireframes serving as supplementary reference for user-facing features.
|
|
13
|
+
|
|
14
|
+
# Primary Objective
|
|
15
|
+
Generate a complete set of EPICs that capture all major feature areas, business capabilities, and technical deliverables defined in the provided documentation. Each EPIC must be traceable to source requirements and sized appropriately for sprint planning decomposition.
|
|
16
|
+
|
|
17
|
+
# Input Documents
|
|
18
|
+
1. **FSD (Functional Specification Document)** - PRIMARY
|
|
19
|
+
- Business requirements and functional capabilities
|
|
20
|
+
- User workflows and business rules
|
|
21
|
+
- Acceptance criteria foundations
|
|
22
|
+
|
|
23
|
+
2. **TDD (Technical Design Document)** - PRIMARY
|
|
24
|
+
- System architecture components
|
|
25
|
+
- Integration points and APIs
|
|
26
|
+
- Technical constraints and dependencies
|
|
27
|
+
|
|
28
|
+
3. **UI Wireframes** - SUPPLEMENTARY
|
|
29
|
+
- User interface flows
|
|
30
|
+
- Screen-level functionality
|
|
31
|
+
- User interaction patterns
|
|
32
|
+
|
|
33
|
+
# Process
|
|
34
|
+
|
|
35
|
+
## Phase 1: Document Analysis
|
|
36
|
+
1. Extract all functional requirements from FSD
|
|
37
|
+
- Identify business capabilities
|
|
38
|
+
- Map user journeys and workflows
|
|
39
|
+
- Note business rules and validations
|
|
40
|
+
2. Extract technical components from TDD
|
|
41
|
+
- Identify system modules and services
|
|
42
|
+
- Map integration dependencies
|
|
43
|
+
- Note technical constraints
|
|
44
|
+
3. Cross-reference UI Wireframes
|
|
45
|
+
- Link screens to functional requirements
|
|
46
|
+
- Identify user-facing features
|
|
47
|
+
- Note UI-specific requirements
|
|
48
|
+
|
|
49
|
+
## Phase 2: EPIC Identification
|
|
50
|
+
1. Group related requirements into logical feature areas
|
|
51
|
+
2. Identify natural boundaries based on:
|
|
52
|
+
- Business domain separation
|
|
53
|
+
- Technical component boundaries
|
|
54
|
+
- User journey completeness
|
|
55
|
+
- Dependency chains
|
|
56
|
+
3. Validate each EPIC can be independently deliverable
|
|
57
|
+
|
|
58
|
+
## Phase 3: EPIC Definition
|
|
59
|
+
For each identified EPIC, define:
|
|
60
|
+
- Clear business value statement
|
|
61
|
+
- Scope boundaries (in/out)
|
|
62
|
+
- High-level acceptance criteria
|
|
63
|
+
- Dependencies and prerequisites
|
|
64
|
+
- Estimated complexity tier
|
|
65
|
+
|
|
66
|
+
## Phase 4: Validation
|
|
67
|
+
1. Verify complete coverage of all requirements
|
|
68
|
+
2. Check for gaps between documents
|
|
69
|
+
3. Identify any conflicting requirements
|
|
70
|
+
4. Flag assumptions made
|
|
71
|
+
|
|
72
|
+
# Output Format
|
|
73
|
+
|
|
74
|
+
## Directory Structure
|
|
75
|
+
Create an `epics/` folder with the following structure:
|
|
76
|
+
```
|
|
77
|
+
epics/
|
|
78
|
+
├── README.md # Executive summary and index
|
|
79
|
+
├── EPIC-001-[kebab-case-title].md
|
|
80
|
+
├── EPIC-002-[kebab-case-title].md
|
|
81
|
+
├── EPIC-003-[kebab-case-title].md
|
|
82
|
+
└── ...
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## File: `epics/README.md`
|
|
86
|
+
|
|
87
|
+
### Executive Summary
|
|
88
|
+
- Total EPICs identified: [number]
|
|
89
|
+
- Complexity distribution: [High/Medium/Low counts]
|
|
90
|
+
- Key dependencies identified: [summary]
|
|
91
|
+
- Coverage gaps or conflicts: [if any]
|
|
92
|
+
|
|
93
|
+
### EPIC Index
|
|
94
|
+
| EPIC ID | Title | Complexity | Dependencies | File |
|
|
95
|
+
|---------|-------|------------|--------------|------|
|
|
96
|
+
| EPIC-001 | [Title] | [S/M/L/XL] | [EPIC-XXX] | [Link to file] |
|
|
97
|
+
| EPIC-002 | [Title] | [S/M/L/XL] | [EPIC-XXX] | [Link to file] |
|
|
98
|
+
|
|
99
|
+
### Dependency Map
|
|
100
|
+
[Visual or text representation of EPIC dependencies]
|
|
101
|
+
```
|
|
102
|
+
EPIC-001 ──► EPIC-003
|
|
103
|
+
EPIC-002 ──► EPIC-003
|
|
104
|
+
EPIC-003 ──► EPIC-005
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
### Traceability Matrix
|
|
108
|
+
| Requirement ID | FSD Section | TDD Component | Wireframe | EPIC |
|
|
109
|
+
|----------------|-------------|---------------|-----------|------|
|
|
110
|
+
| [REQ-001] | [Section] | [Component] | [Screen] | [EPIC-XXX] |
|
|
111
|
+
|
|
112
|
+
### Gaps & Recommendations
|
|
113
|
+
1. **Identified Gaps:** [Requirements not fully covered]
|
|
114
|
+
2. **Conflicts Found:** [Contradictions between documents]
|
|
115
|
+
3. **Recommendations:** [Suggested clarifications needed]
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## Individual EPIC Files
|
|
120
|
+
|
|
121
|
+
**File naming convention:** `EPIC-[XXX]-[kebab-case-title].md`
|
|
122
|
+
Example: `EPIC-001-user-authentication.md`
|
|
123
|
+
|
|
124
|
+
### Template for Each EPIC File
|
|
125
|
+
|
|
126
|
+
```markdown
|
|
127
|
+
# EPIC-[XXX]: [EPIC Title]
|
|
128
|
+
|
|
129
|
+
## Business Value Statement
|
|
130
|
+
[2-3 sentences describing the business outcome and user benefit]
|
|
131
|
+
|
|
132
|
+
## Description
|
|
133
|
+
[Detailed description of what this EPIC delivers]
|
|
134
|
+
|
|
135
|
+
## Source Traceability
|
|
136
|
+
| Document | Reference | Section/Page |
|
|
137
|
+
|----------|-----------|--------------|
|
|
138
|
+
| FSD | [Requirement ID] | [Location] |
|
|
139
|
+
| TDD | [Component/Section] | [Location] |
|
|
140
|
+
| Wireframe | [Screen Name] | [If applicable] |
|
|
141
|
+
|
|
142
|
+
## Scope Definition
|
|
143
|
+
| In Scope | Out of Scope |
|
|
144
|
+
|----------|--------------|
|
|
145
|
+
| [Item 1] | [Item 1] |
|
|
146
|
+
| [Item 2] | [Item 2] |
|
|
147
|
+
|
|
148
|
+
## High-Level Acceptance Criteria
|
|
149
|
+
- [ ] [Criterion 1]
|
|
150
|
+
- [ ] [Criterion 2]
|
|
151
|
+
- [ ] [Criterion 3]
|
|
152
|
+
- [ ] [Criterion 4]
|
|
153
|
+
|
|
154
|
+
## Dependencies
|
|
155
|
+
- **Prerequisite EPICs:** [EPIC-XXX, EPIC-XXX] or None
|
|
156
|
+
- **External Dependencies:** [Systems, teams, data]
|
|
157
|
+
- **Technical Prerequisites:** [Infrastructure, APIs, etc.]
|
|
158
|
+
|
|
159
|
+
## Complexity Assessment
|
|
160
|
+
- **Size:** [S / M / L / XL]
|
|
161
|
+
- **Technical Complexity:** [Low / Medium / High]
|
|
162
|
+
- **Integration Complexity:** [Low / Medium / High]
|
|
163
|
+
- **Estimated Story Count:** [Range]
|
|
164
|
+
|
|
165
|
+
## Risks & Assumptions
|
|
166
|
+
**Assumptions:**
|
|
167
|
+
- [Assumption 1]
|
|
168
|
+
- [Assumption 2]
|
|
169
|
+
|
|
170
|
+
**Risks:**
|
|
171
|
+
- [Risk 1]
|
|
172
|
+
- [Risk 2]
|
|
173
|
+
|
|
174
|
+
## Related EPICs
|
|
175
|
+
- **Depends On:** [EPIC-XXX]
|
|
176
|
+
- **Blocks:** [EPIC-XXX]
|
|
177
|
+
- **Related:** [EPIC-XXX]
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
# Quality Standards
|
|
181
|
+
- Every functional requirement must map to at least one EPIC
|
|
182
|
+
- Each EPIC must have clear, measurable acceptance criteria
|
|
183
|
+
- Dependencies must form a valid directed acyclic graph (no circular dependencies)
|
|
184
|
+
- EPIC sizing should allow decomposition into 5-15 user stories
|
|
185
|
+
- Business value must be articulated in user/business terms, not technical terms
|
|
186
|
+
- All assumptions must be explicitly stated
|
|
187
|
+
|
|
188
|
+
# Special Instructions
|
|
189
|
+
- If FSD and TDD conflict, note the conflict and use FSD as the authority for functional scope
|
|
190
|
+
- If wireframes show features not in FSD/TDD, flag as "Potential Scope Addition"
|
|
191
|
+
- Group infrastructure/DevOps requirements into dedicated technical EPICs
|
|
192
|
+
- Non-functional requirements (security, performance) should be integrated into relevant EPICs AND have a dedicated NFR EPIC if substantial
|
|
193
|
+
- Use consistent naming convention: EPIC-[3-digit number]: [Verb] [Object] [Qualifier]
|
|
194
|
+
|
|
195
|
+
# Verification Checklist
|
|
196
|
+
After generating EPICs, verify:
|
|
197
|
+
- [ ] 100% of FSD functional requirements are covered
|
|
198
|
+
- [ ] All TDD components have corresponding EPICs
|
|
199
|
+
- [ ] No orphaned wireframe screens
|
|
200
|
+
- [ ] Dependency chain is logical and achievable
|
|
201
|
+
- [ ] Each EPIC is independently valuable
|
|
202
|
+
- [ ] Complexity assessments are consistent
|
|
203
|
+
- [ ] Traceability is complete and accurate
|
|
204
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: epic-single
|
|
3
|
+
description: Generate a single well-defined Jira Epic
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Your job is to take a user requirement and structure it into **a single, well-defined Jira Epic**.
|
|
7
|
+
|
|
8
|
+
### Input
|
|
9
|
+
{USER_REQUIREMENT}
|
|
10
|
+
|
|
11
|
+
### Output Rules
|
|
12
|
+
- Use **Markdown format only**
|
|
13
|
+
- Focus on defining **one Epic** that captures the main capability or user workflow
|
|
14
|
+
- Title must be **business-focused**, not technical
|
|
15
|
+
- The Epic should represent a cohesive, deliverable outcome
|
|
16
|
+
|
|
17
|
+
### Output Structure
|
|
18
|
+
|
|
19
|
+
## 🧠 Epic: {Epic Title}
|
|
20
|
+
|
|
21
|
+
### 🎯 Epic Goal
|
|
22
|
+
We need to {MAIN OBJECTIVE} in order for {TARGET USER} to {EXPECTED VALUE}
|
|
23
|
+
|
|
24
|
+
### 🚀 Definition of Done
|
|
25
|
+
- DoD1
|
|
26
|
+
- DoD2
|
|
27
|
+
- DoD3
|
|
28
|
+
(add more if needed)
|
|
29
|
+
|
|
30
|
+
### 📌 High-Level Scope (Included)
|
|
31
|
+
- Scope item 1
|
|
32
|
+
- Scope item 2
|
|
33
|
+
- Scope item 3
|
|
34
|
+
|
|
35
|
+
### ❌ Out of Scope
|
|
36
|
+
- OOS item 1
|
|
37
|
+
- OOS item 2
|
|
38
|
+
|
|
39
|
+
### 📁 Deliverables
|
|
40
|
+
- Deliverable 1
|
|
41
|
+
- Deliverable 2
|
|
42
|
+
|
|
43
|
+
### 🧩 Dependencies
|
|
44
|
+
- Dependency 1 (TBD if unknown)
|
|
45
|
+
|
|
46
|
+
### ⚠️ Risks / Assumptions
|
|
47
|
+
- Risk or assumption 1
|
|
48
|
+
- Risk or assumption 2
|
|
49
|
+
|
|
50
|
+
### 🎯 Success Metrics
|
|
51
|
+
- Metric 1
|
|
52
|
+
- Metric 2
|
|
53
|
+
|
|
54
|
+
## WORKFLOW STEPS
|
|
55
|
+
1. Read the user's requirement input
|
|
56
|
+
2. Generate a unique, URL-friendly slug from the epic title (lowercase, hyphen-separated)
|
|
57
|
+
3. Create the directory `prompter/<slug>/` if it doesn't exist
|
|
58
|
+
4. Generate the complete Epic following all requirements above
|
|
59
|
+
5. Save the Epic to `prompter/<slug>/epic.md`
|
|
60
|
+
6. Report the saved file path
|
|
61
|
+
|
|
62
|
+
## REFERENCE
|
|
63
|
+
- Read `prompter/project.md` for project context if needed
|