claude-autopm 1.26.0 → 1.28.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/README.md +40 -0
- package/autopm/.claude/agents/frameworks/e2e-test-engineer.md +1 -18
- package/autopm/.claude/agents/frameworks/nats-messaging-expert.md +1 -18
- package/autopm/.claude/agents/frameworks/react-frontend-engineer.md +1 -18
- package/autopm/.claude/agents/frameworks/react-ui-expert.md +1 -18
- package/autopm/.claude/agents/frameworks/tailwindcss-expert.md +1 -18
- package/autopm/.claude/agents/frameworks/ux-design-expert.md +1 -18
- package/autopm/.claude/agents/languages/bash-scripting-expert.md +1 -18
- package/autopm/.claude/agents/languages/javascript-frontend-engineer.md +1 -18
- package/autopm/.claude/agents/languages/nodejs-backend-engineer.md +1 -18
- package/autopm/.claude/agents/languages/python-backend-engineer.md +1 -18
- package/autopm/.claude/agents/languages/python-backend-expert.md +1 -18
- package/autopm/.claude/commands/pm/epic-decompose.md +19 -5
- package/autopm/.claude/commands/pm/prd-new.md +14 -1
- package/autopm/.claude/includes/task-creation-excellence.md +18 -0
- package/autopm/.claude/lib/ai-task-generator.js +84 -0
- package/autopm/.claude/lib/cli-parser.js +148 -0
- package/autopm/.claude/lib/dependency-analyzer.js +157 -0
- package/autopm/.claude/lib/frontmatter.js +224 -0
- package/autopm/.claude/lib/task-utils.js +64 -0
- package/autopm/.claude/scripts/pm/prd-new.js +292 -2
- package/autopm/.claude/scripts/pm/template-list.js +119 -0
- package/autopm/.claude/scripts/pm/template-new.js +344 -0
- package/autopm/.claude/scripts/pm-epic-decompose-local.js +158 -0
- package/autopm/.claude/scripts/pm-epic-list-local.js +103 -0
- package/autopm/.claude/scripts/pm-epic-show-local.js +70 -0
- package/autopm/.claude/scripts/pm-epic-update-local.js +56 -0
- package/autopm/.claude/scripts/pm-prd-list-local.js +111 -0
- package/autopm/.claude/scripts/pm-prd-new-local.js +196 -0
- package/autopm/.claude/scripts/pm-prd-parse-local.js +360 -0
- package/autopm/.claude/scripts/pm-prd-show-local.js +101 -0
- package/autopm/.claude/scripts/pm-prd-update-local.js +153 -0
- package/autopm/.claude/scripts/pm-sync-download-local.js +424 -0
- package/autopm/.claude/scripts/pm-sync-upload-local.js +473 -0
- package/autopm/.claude/scripts/pm-task-list-local.js +86 -0
- package/autopm/.claude/scripts/pm-task-show-local.js +92 -0
- package/autopm/.claude/scripts/pm-task-update-local.js +109 -0
- package/autopm/.claude/scripts/setup-local-mode.js +127 -0
- package/autopm/.claude/templates/prds/README.md +334 -0
- package/autopm/.claude/templates/prds/api-feature.md +306 -0
- package/autopm/.claude/templates/prds/bug-fix.md +413 -0
- package/autopm/.claude/templates/prds/data-migration.md +483 -0
- package/autopm/.claude/templates/prds/documentation.md +439 -0
- package/autopm/.claude/templates/prds/ui-feature.md +365 -0
- package/lib/template-engine.js +347 -0
- package/package.json +5 -3
- package/scripts/create-task-issues.sh +26 -0
- package/scripts/fix-invalid-command-refs.sh +4 -3
- package/scripts/fix-invalid-refs-simple.sh +8 -3
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: {{id}}
|
|
3
|
+
title: {{title}}
|
|
4
|
+
type: prd
|
|
5
|
+
status: draft
|
|
6
|
+
priority: {{priority}}
|
|
7
|
+
created: {{timestamp}}
|
|
8
|
+
author: {{author}}
|
|
9
|
+
timeline: {{timeline}}
|
|
10
|
+
doc_type: {{doc_type}}
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# PRD: Documentation - {{title}}
|
|
14
|
+
|
|
15
|
+
## Executive Summary
|
|
16
|
+
|
|
17
|
+
Create/update documentation for {{doc_purpose}}.
|
|
18
|
+
|
|
19
|
+
**Documentation Type**: {{doc_type}}
|
|
20
|
+
**Target Audience**: {{target_audience}}
|
|
21
|
+
**Delivery Format**: {{delivery_format}}
|
|
22
|
+
|
|
23
|
+
## Documentation Overview
|
|
24
|
+
|
|
25
|
+
### Purpose
|
|
26
|
+
{{purpose}}
|
|
27
|
+
|
|
28
|
+
### Scope
|
|
29
|
+
{{scope}}
|
|
30
|
+
|
|
31
|
+
### Target Audience
|
|
32
|
+
|
|
33
|
+
**Primary Audience**: {{primary_audience}}
|
|
34
|
+
- Technical Level: {{technical_level}}
|
|
35
|
+
- Prior Knowledge: {{prior_knowledge}}
|
|
36
|
+
- Use Case: {{primary_use_case}}
|
|
37
|
+
|
|
38
|
+
{{#if secondary_audience}}
|
|
39
|
+
**Secondary Audience**: {{secondary_audience}}
|
|
40
|
+
- Technical Level: {{secondary_technical_level}}
|
|
41
|
+
- Prior Knowledge: {{secondary_prior_knowledge}}
|
|
42
|
+
- Use Case: {{secondary_use_case}}
|
|
43
|
+
{{/if}}
|
|
44
|
+
|
|
45
|
+
## Documentation Type
|
|
46
|
+
|
|
47
|
+
**Type**: {{doc_type}}
|
|
48
|
+
|
|
49
|
+
- [ ] **API Documentation** - REST/GraphQL API reference
|
|
50
|
+
- [ ] **User Guide** - End-user instructions
|
|
51
|
+
- [ ] **Developer Guide** - Technical implementation guide
|
|
52
|
+
- [ ] **Architecture Documentation** - System design and architecture
|
|
53
|
+
- [ ] **Runbook** - Operational procedures
|
|
54
|
+
- [ ] **Tutorial** - Step-by-step learning guide
|
|
55
|
+
- [ ] **Reference Documentation** - Technical specifications
|
|
56
|
+
- [ ] **Troubleshooting Guide** - Problem resolution
|
|
57
|
+
- [ ] **Release Notes** - Version changes and updates
|
|
58
|
+
- [ ] **Migration Guide** - Upgrade/migration instructions
|
|
59
|
+
|
|
60
|
+
## Current State Analysis
|
|
61
|
+
|
|
62
|
+
### Existing Documentation
|
|
63
|
+
{{#if existing_docs}}
|
|
64
|
+
| Document | Status | Issues | Action |
|
|
65
|
+
|----------|--------|--------|--------|
|
|
66
|
+
| {{doc_1}} | {{status_1}} | {{issues_1}} | {{action_1}} |
|
|
67
|
+
| {{doc_2}} | {{status_2}} | {{issues_2}} | {{action_2}} |
|
|
68
|
+
{{/if}}
|
|
69
|
+
|
|
70
|
+
### Documentation Gaps
|
|
71
|
+
{{#if documentation_gaps}}
|
|
72
|
+
{{#each documentation_gaps}}
|
|
73
|
+
- {{gap}}: {{impact}}
|
|
74
|
+
{{/each}}
|
|
75
|
+
{{/if}}
|
|
76
|
+
|
|
77
|
+
### User Feedback
|
|
78
|
+
{{#if user_feedback}}
|
|
79
|
+
{{#each user_feedback}}
|
|
80
|
+
- {{feedback}} (Source: {{source}}, Date: {{date}})
|
|
81
|
+
{{/each}}
|
|
82
|
+
{{/if}}
|
|
83
|
+
|
|
84
|
+
## Content Outline
|
|
85
|
+
|
|
86
|
+
### Document Structure
|
|
87
|
+
|
|
88
|
+
{{#if content_sections}}
|
|
89
|
+
{{#each content_sections}}
|
|
90
|
+
**{{section_number}}. {{section_title}}**
|
|
91
|
+
- {{section_description}}
|
|
92
|
+
- Audience: {{section_audience}}
|
|
93
|
+
- Estimated Pages: {{section_pages}}
|
|
94
|
+
{{/each}}
|
|
95
|
+
{{/if}}
|
|
96
|
+
|
|
97
|
+
### Detailed Content Plan
|
|
98
|
+
|
|
99
|
+
#### Introduction
|
|
100
|
+
- [ ] Overview and purpose
|
|
101
|
+
- [ ] Target audience
|
|
102
|
+
- [ ] Prerequisites
|
|
103
|
+
- [ ] Document conventions
|
|
104
|
+
- [ ] Related documentation
|
|
105
|
+
|
|
106
|
+
#### Main Content
|
|
107
|
+
{{main_content_outline}}
|
|
108
|
+
|
|
109
|
+
#### Appendix
|
|
110
|
+
- [ ] Glossary of terms
|
|
111
|
+
- [ ] References and links
|
|
112
|
+
- [ ] FAQ
|
|
113
|
+
- [ ] Troubleshooting
|
|
114
|
+
- [ ] Code examples (if applicable)
|
|
115
|
+
|
|
116
|
+
## Writing Standards (2025 Best Practices)
|
|
117
|
+
|
|
118
|
+
### Style Guide
|
|
119
|
+
- **Voice**: {{voice_style}} (Active/Passive)
|
|
120
|
+
- **Tone**: {{tone}} (Formal/Conversational/Technical)
|
|
121
|
+
- **Person**: {{person}} (First/Second/Third)
|
|
122
|
+
- **Tense**: {{tense}} (Present/Past)
|
|
123
|
+
|
|
124
|
+
### Content Principles
|
|
125
|
+
- [ ] **Clarity**: Simple language, short sentences
|
|
126
|
+
- [ ] **Conciseness**: No unnecessary words
|
|
127
|
+
- [ ] **Consistency**: Uniform terminology and structure
|
|
128
|
+
- [ ] **Completeness**: All necessary information included
|
|
129
|
+
- [ ] **Correctness**: Technically accurate, verified
|
|
130
|
+
|
|
131
|
+
### Accessibility (WCAG 2.1 AA)
|
|
132
|
+
- [ ] Plain language (reading level: {{reading_level}})
|
|
133
|
+
- [ ] Descriptive headings and structure
|
|
134
|
+
- [ ] Alt text for all images
|
|
135
|
+
- [ ] Accessible tables and lists
|
|
136
|
+
- [ ] Color contrast (4.5:1 minimum)
|
|
137
|
+
- [ ] Keyboard navigation for interactive docs
|
|
138
|
+
|
|
139
|
+
### SEO Optimization (if web-based)
|
|
140
|
+
- [ ] Keyword research completed
|
|
141
|
+
- [ ] Meta descriptions written
|
|
142
|
+
- [ ] Headings optimized (H1, H2, H3)
|
|
143
|
+
- [ ] Internal linking strategy
|
|
144
|
+
- [ ] Image optimization (alt text, file names)
|
|
145
|
+
|
|
146
|
+
## Technical Requirements
|
|
147
|
+
|
|
148
|
+
### Documentation Platform
|
|
149
|
+
- **Primary Platform**: {{platform}} (GitBook/Confluence/ReadTheDocs/Docusaurus)
|
|
150
|
+
- **Format**: {{format}} (Markdown/reStructuredText/HTML)
|
|
151
|
+
- **Version Control**: {{version_control}} (Git/SVN)
|
|
152
|
+
- **Hosting**: {{hosting}} (GitHub Pages/Netlify/Custom)
|
|
153
|
+
|
|
154
|
+
### Tools & Stack
|
|
155
|
+
{{#if tools}}
|
|
156
|
+
{{#each tools}}
|
|
157
|
+
- **{{tool_name}}**: {{tool_purpose}}
|
|
158
|
+
{{/each}}
|
|
159
|
+
{{/if}}
|
|
160
|
+
|
|
161
|
+
### Documentation as Code
|
|
162
|
+
- [ ] Markdown source files
|
|
163
|
+
- [ ] Version controlled (Git)
|
|
164
|
+
- [ ] Automated build pipeline
|
|
165
|
+
- [ ] Preview environments
|
|
166
|
+
- [ ] Automated testing (link checking, spell check)
|
|
167
|
+
|
|
168
|
+
### Interactive Elements
|
|
169
|
+
{{#if interactive_elements}}
|
|
170
|
+
- [ ] Code playgrounds (CodeSandbox/JSFiddle)
|
|
171
|
+
- [ ] API explorers (Swagger UI/Postman)
|
|
172
|
+
- [ ] Interactive diagrams (Mermaid/PlantUML)
|
|
173
|
+
- [ ] Video tutorials ({{video_platform}})
|
|
174
|
+
- [ ] Live examples ({{example_platform}})
|
|
175
|
+
{{/if}}
|
|
176
|
+
|
|
177
|
+
## Visual Elements
|
|
178
|
+
|
|
179
|
+
### Diagrams & Illustrations
|
|
180
|
+
{{#if diagrams}}
|
|
181
|
+
{{#each diagrams}}
|
|
182
|
+
- **{{diagram_type}}**: {{diagram_purpose}}
|
|
183
|
+
- Tool: {{diagram_tool}}
|
|
184
|
+
- Estimated: {{diagram_count}} diagrams
|
|
185
|
+
{{/each}}
|
|
186
|
+
{{/if}}
|
|
187
|
+
|
|
188
|
+
### Screenshots & Media
|
|
189
|
+
- [ ] Screenshots ({{screenshot_count}} estimated)
|
|
190
|
+
- [ ] Screencasts ({{screencast_count}} estimated)
|
|
191
|
+
- [ ] Infographics ({{infographic_count}} estimated)
|
|
192
|
+
- [ ] Code snippets (syntax highlighted)
|
|
193
|
+
|
|
194
|
+
### Design Consistency
|
|
195
|
+
- [ ] Branded templates
|
|
196
|
+
- [ ] Consistent color scheme
|
|
197
|
+
- [ ] Standard icons and symbols
|
|
198
|
+
- [ ] Typography guidelines
|
|
199
|
+
- [ ] White space standards
|
|
200
|
+
|
|
201
|
+
## Code Examples
|
|
202
|
+
|
|
203
|
+
### Example Strategy
|
|
204
|
+
- [ ] Minimal reproducible examples
|
|
205
|
+
- [ ] Multiple languages (if applicable): {{languages}}
|
|
206
|
+
- [ ] Progressive complexity (basic → advanced)
|
|
207
|
+
- [ ] Real-world use cases
|
|
208
|
+
- [ ] Copy-paste ready
|
|
209
|
+
|
|
210
|
+
### Code Quality
|
|
211
|
+
- [ ] Syntax highlighted
|
|
212
|
+
- [ ] Well-commented
|
|
213
|
+
- [ ] Error handling included
|
|
214
|
+
- [ ] Best practices demonstrated
|
|
215
|
+
- [ ] Tested and verified
|
|
216
|
+
|
|
217
|
+
### Example Repository
|
|
218
|
+
{{#if example_repo}}
|
|
219
|
+
- Repository: {{example_repo_url}}
|
|
220
|
+
- Languages: {{example_languages}}
|
|
221
|
+
- Setup instructions: {{example_setup}}
|
|
222
|
+
{{/if}}
|
|
223
|
+
|
|
224
|
+
## Review & Validation
|
|
225
|
+
|
|
226
|
+
### Review Process
|
|
227
|
+
|
|
228
|
+
**Technical Review**:
|
|
229
|
+
- [ ] Subject matter expert (SME) review
|
|
230
|
+
- [ ] Technical accuracy verification
|
|
231
|
+
- [ ] Code example validation
|
|
232
|
+
- [ ] Security review (if applicable)
|
|
233
|
+
|
|
234
|
+
**Editorial Review**:
|
|
235
|
+
- [ ] Grammar and spelling
|
|
236
|
+
- [ ] Style guide compliance
|
|
237
|
+
- [ ] Consistency check
|
|
238
|
+
- [ ] Readability assessment (Flesch-Kincaid score)
|
|
239
|
+
|
|
240
|
+
**User Review**:
|
|
241
|
+
- [ ] Peer review (target audience)
|
|
242
|
+
- [ ] Usability testing
|
|
243
|
+
- [ ] Feedback incorporation
|
|
244
|
+
- [ ] Final approval
|
|
245
|
+
|
|
246
|
+
### Quality Checklist
|
|
247
|
+
|
|
248
|
+
- [ ] All sections complete
|
|
249
|
+
- [ ] Links verified (no 404s)
|
|
250
|
+
- [ ] Images load correctly
|
|
251
|
+
- [ ] Code examples tested
|
|
252
|
+
- [ ] Cross-browser compatible
|
|
253
|
+
- [ ] Mobile responsive
|
|
254
|
+
- [ ] Search functionality works
|
|
255
|
+
- [ ] Navigation intuitive
|
|
256
|
+
|
|
257
|
+
### Testing Criteria
|
|
258
|
+
- **Readability**: Flesch-Kincaid Grade {{target_grade}}
|
|
259
|
+
- **Completeness**: 100% of outlined content
|
|
260
|
+
- **Accuracy**: Zero technical errors
|
|
261
|
+
- **Accessibility**: WCAG 2.1 AA compliant
|
|
262
|
+
- **Performance**: Page load < 2s
|
|
263
|
+
|
|
264
|
+
## Success Metrics (SMART Goals)
|
|
265
|
+
|
|
266
|
+
- **Adoption**: {{adoption_target}}% of users access docs within {{timeframe}}
|
|
267
|
+
- **Engagement**: {{engagement_target}} avg. time on page
|
|
268
|
+
- **Satisfaction**: {{satisfaction_target}}/5 user rating
|
|
269
|
+
- **Helpfulness**: {{helpfulness_target}}% "found helpful"
|
|
270
|
+
- **Support Reduction**: {{support_reduction_target}}% fewer support tickets
|
|
271
|
+
- **Search Success**: {{search_success_target}}% find answer via search
|
|
272
|
+
|
|
273
|
+
## Analytics & Measurement
|
|
274
|
+
|
|
275
|
+
### Tracking Metrics
|
|
276
|
+
- [ ] Page views and unique visitors
|
|
277
|
+
- [ ] Time on page / bounce rate
|
|
278
|
+
- [ ] Search queries (internal search)
|
|
279
|
+
- [ ] Download counts (PDFs, code samples)
|
|
280
|
+
- [ ] Video engagement (completion rate)
|
|
281
|
+
- [ ] Link clicks (external references)
|
|
282
|
+
|
|
283
|
+
### Feedback Collection
|
|
284
|
+
- [ ] Rating widget (helpful/not helpful)
|
|
285
|
+
- [ ] Comment section
|
|
286
|
+
- [ ] Feedback form
|
|
287
|
+
- [ ] User surveys
|
|
288
|
+
- [ ] Support ticket correlation
|
|
289
|
+
|
|
290
|
+
### Continuous Improvement
|
|
291
|
+
- [ ] Monthly analytics review
|
|
292
|
+
- [ ] Quarterly content audit
|
|
293
|
+
- [ ] User feedback incorporation
|
|
294
|
+
- [ ] A/B testing (headlines, structure)
|
|
295
|
+
- [ ] Search optimization
|
|
296
|
+
|
|
297
|
+
## Implementation Plan
|
|
298
|
+
|
|
299
|
+
### Phase 1: Planning & Research (Week 1)
|
|
300
|
+
- [ ] Audience analysis
|
|
301
|
+
- [ ] Content audit
|
|
302
|
+
- [ ] Outline creation
|
|
303
|
+
- [ ] Style guide finalization
|
|
304
|
+
- [ ] Tool selection and setup
|
|
305
|
+
|
|
306
|
+
### Phase 2: Content Creation (Week 2-3)
|
|
307
|
+
- [ ] Write first draft (all sections)
|
|
308
|
+
- [ ] Create diagrams and visuals
|
|
309
|
+
- [ ] Develop code examples
|
|
310
|
+
- [ ] Record videos (if applicable)
|
|
311
|
+
- [ ] Build interactive elements
|
|
312
|
+
|
|
313
|
+
### Phase 3: Review & Refinement (Week 4)
|
|
314
|
+
- [ ] Technical review
|
|
315
|
+
- [ ] Editorial review
|
|
316
|
+
- [ ] User review / testing
|
|
317
|
+
- [ ] Feedback incorporation
|
|
318
|
+
- [ ] Final polish
|
|
319
|
+
|
|
320
|
+
### Phase 4: Publication (Week 5)
|
|
321
|
+
- [ ] Platform setup / migration
|
|
322
|
+
- [ ] Content upload
|
|
323
|
+
- [ ] SEO optimization
|
|
324
|
+
- [ ] Link verification
|
|
325
|
+
- [ ] Soft launch (beta users)
|
|
326
|
+
|
|
327
|
+
### Phase 5: Launch & Maintenance (Week 6+)
|
|
328
|
+
- [ ] Official launch
|
|
329
|
+
- [ ] User communication
|
|
330
|
+
- [ ] Analytics setup
|
|
331
|
+
- [ ] Feedback monitoring
|
|
332
|
+
- [ ] Regular updates (schedule: {{update_schedule}})
|
|
333
|
+
|
|
334
|
+
## Maintenance Strategy
|
|
335
|
+
|
|
336
|
+
### Update Triggers
|
|
337
|
+
- Product releases (new features)
|
|
338
|
+
- Bug fixes (corrections needed)
|
|
339
|
+
- User feedback (confusion points)
|
|
340
|
+
- Quarterly reviews (scheduled)
|
|
341
|
+
- Technology changes (platform updates)
|
|
342
|
+
|
|
343
|
+
### Version Control
|
|
344
|
+
- [ ] Documentation versioning (matches product versions)
|
|
345
|
+
- [ ] Changelog maintained
|
|
346
|
+
- [ ] Archive old versions
|
|
347
|
+
- [ ] Deprecation notices
|
|
348
|
+
- [ ] Migration guides (version to version)
|
|
349
|
+
|
|
350
|
+
### Ownership
|
|
351
|
+
- **Primary Owner**: {{primary_owner}}
|
|
352
|
+
- **Contributors**: {{contributors}}
|
|
353
|
+
- **Reviewers**: {{reviewers}}
|
|
354
|
+
- **Update Frequency**: {{update_frequency}}
|
|
355
|
+
|
|
356
|
+
## Localization (i18n)
|
|
357
|
+
|
|
358
|
+
{{#if localization_needed}}
|
|
359
|
+
### Target Languages
|
|
360
|
+
{{#each target_languages}}
|
|
361
|
+
- {{language}}: {{priority}} priority, {{target_date}} target
|
|
362
|
+
{{/each}}
|
|
363
|
+
|
|
364
|
+
### Translation Process
|
|
365
|
+
- [ ] Extract translatable content
|
|
366
|
+
- [ ] Professional translation service
|
|
367
|
+
- [ ] Technical term glossary
|
|
368
|
+
- [ ] Review by native speakers
|
|
369
|
+
- [ ] Cultural adaptation
|
|
370
|
+
- [ ] Localized examples
|
|
371
|
+
|
|
372
|
+
### Maintenance
|
|
373
|
+
- [ ] Translation management system
|
|
374
|
+
- [ ] Sync updates across languages
|
|
375
|
+
- [ ] Quality assurance per language
|
|
376
|
+
{{/if}}
|
|
377
|
+
|
|
378
|
+
## Risk Assessment
|
|
379
|
+
|
|
380
|
+
### Documentation Risks
|
|
381
|
+
|
|
382
|
+
| Risk | Impact | Probability | Mitigation |
|
|
383
|
+
|------|--------|-------------|------------|
|
|
384
|
+
| Outdated content | High | High | Regular audits, automated checks |
|
|
385
|
+
| Technical inaccuracy | Critical | Medium | SME review, testing |
|
|
386
|
+
| Poor discoverability | High | Medium | SEO, search optimization |
|
|
387
|
+
| Low user adoption | High | Medium | User testing, feedback loops |
|
|
388
|
+
| Broken links/examples | Medium | High | Automated testing, CI/CD |
|
|
389
|
+
|
|
390
|
+
## Communication Plan
|
|
391
|
+
|
|
392
|
+
### Launch Announcement
|
|
393
|
+
- **Channels**: {{announcement_channels}}
|
|
394
|
+
- **Message**: {{announcement_message}}
|
|
395
|
+
- **Target Date**: {{launch_date}}
|
|
396
|
+
|
|
397
|
+
### Ongoing Communication
|
|
398
|
+
- [ ] Newsletter updates
|
|
399
|
+
- [ ] Social media posts
|
|
400
|
+
- [ ] In-app notifications
|
|
401
|
+
- [ ] Support team briefing
|
|
402
|
+
- [ ] Developer community outreach
|
|
403
|
+
|
|
404
|
+
## Appendix
|
|
405
|
+
|
|
406
|
+
### Related Documentation
|
|
407
|
+
{{#if related_docs}}
|
|
408
|
+
{{#each related_docs}}
|
|
409
|
+
- [{{doc_title}}]({{doc_url}}) - {{doc_description}}
|
|
410
|
+
{{/each}}
|
|
411
|
+
{{/if}}
|
|
412
|
+
|
|
413
|
+
### References & Resources
|
|
414
|
+
- [Write the Docs Best Practices](https://www.writethedocs.org/guide/)
|
|
415
|
+
- [Microsoft Writing Style Guide](https://learn.microsoft.com/en-us/style-guide/welcome/)
|
|
416
|
+
- [Google Developer Documentation Style Guide](https://developers.google.com/style)
|
|
417
|
+
- [Documentation as Code](https://www.writethedocs.org/guide/docs-as-code/)
|
|
418
|
+
- [WCAG 2.1 Guidelines](https://www.w3.org/TR/WCAG21/)
|
|
419
|
+
|
|
420
|
+
### Templates & Assets
|
|
421
|
+
- Style guide: {{style_guide_url}}
|
|
422
|
+
- Document template: {{template_url}}
|
|
423
|
+
- Diagram templates: {{diagram_template_url}}
|
|
424
|
+
- Code snippet library: {{snippet_library_url}}
|
|
425
|
+
|
|
426
|
+
### Glossary
|
|
427
|
+
{{#if glossary_terms}}
|
|
428
|
+
{{#each glossary_terms}}
|
|
429
|
+
- **{{term}}**: {{definition}}
|
|
430
|
+
{{/each}}
|
|
431
|
+
{{/if}}
|
|
432
|
+
|
|
433
|
+
### Changelog
|
|
434
|
+
- {{timestamp}}: Initial documentation PRD created by {{author}}
|
|
435
|
+
|
|
436
|
+
---
|
|
437
|
+
|
|
438
|
+
*Documentation PRD - Generated from template: documentation*
|
|
439
|
+
*Template follows 2025 best practices: Docs-as-Code, WCAG 2.1 AA, SEO optimization, analytics-driven improvement*
|