agentic-qe 2.0.0 → 2.1.1
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/.claude/agents/qx-partner.md +17 -4
- package/.claude/skills/accessibility-testing/SKILL.md +144 -692
- package/.claude/skills/agentic-quality-engineering/SKILL.md +176 -529
- package/.claude/skills/api-testing-patterns/SKILL.md +180 -560
- package/.claude/skills/brutal-honesty-review/SKILL.md +113 -603
- package/.claude/skills/bug-reporting-excellence/SKILL.md +116 -517
- package/.claude/skills/chaos-engineering-resilience/SKILL.md +127 -72
- package/.claude/skills/cicd-pipeline-qe-orchestrator/SKILL.md +209 -404
- package/.claude/skills/code-review-quality/SKILL.md +158 -608
- package/.claude/skills/compatibility-testing/SKILL.md +148 -38
- package/.claude/skills/compliance-testing/SKILL.md +132 -63
- package/.claude/skills/consultancy-practices/SKILL.md +114 -446
- package/.claude/skills/context-driven-testing/SKILL.md +117 -381
- package/.claude/skills/contract-testing/SKILL.md +176 -141
- package/.claude/skills/database-testing/SKILL.md +137 -130
- package/.claude/skills/exploratory-testing-advanced/SKILL.md +160 -629
- package/.claude/skills/holistic-testing-pact/SKILL.md +140 -188
- package/.claude/skills/localization-testing/SKILL.md +145 -33
- package/.claude/skills/mobile-testing/SKILL.md +132 -448
- package/.claude/skills/mutation-testing/SKILL.md +147 -41
- package/.claude/skills/performance-testing/SKILL.md +200 -546
- package/.claude/skills/quality-metrics/SKILL.md +164 -519
- package/.claude/skills/refactoring-patterns/SKILL.md +132 -699
- package/.claude/skills/regression-testing/SKILL.md +120 -926
- package/.claude/skills/risk-based-testing/SKILL.md +157 -660
- package/.claude/skills/security-testing/SKILL.md +199 -538
- package/.claude/skills/sherlock-review/SKILL.md +163 -699
- package/.claude/skills/shift-left-testing/SKILL.md +161 -465
- package/.claude/skills/shift-right-testing/SKILL.md +161 -519
- package/.claude/skills/six-thinking-hats/SKILL.md +175 -1110
- package/.claude/skills/skills-manifest.json +71 -20
- package/.claude/skills/tdd-london-chicago/SKILL.md +131 -448
- package/.claude/skills/technical-writing/SKILL.md +103 -154
- package/.claude/skills/test-automation-strategy/SKILL.md +166 -772
- package/.claude/skills/test-data-management/SKILL.md +126 -910
- package/.claude/skills/test-design-techniques/SKILL.md +179 -89
- package/.claude/skills/test-environment-management/SKILL.md +136 -91
- package/.claude/skills/test-reporting-analytics/SKILL.md +169 -92
- package/.claude/skills/testability-scoring/SKILL.md +172 -538
- package/.claude/skills/testability-scoring/scripts/generate-html-report.js +0 -0
- package/.claude/skills/visual-testing-advanced/SKILL.md +155 -78
- package/.claude/skills/xp-practices/SKILL.md +151 -587
- package/CHANGELOG.md +86 -0
- package/README.md +23 -16
- package/dist/agents/QXPartnerAgent.d.ts +47 -1
- package/dist/agents/QXPartnerAgent.d.ts.map +1 -1
- package/dist/agents/QXPartnerAgent.js +2086 -125
- package/dist/agents/QXPartnerAgent.js.map +1 -1
- package/dist/agents/lifecycle/AgentLifecycleManager.d.ts.map +1 -1
- package/dist/agents/lifecycle/AgentLifecycleManager.js +34 -31
- package/dist/agents/lifecycle/AgentLifecycleManager.js.map +1 -1
- package/dist/cli/commands/init-claude-md-template.d.ts.map +1 -1
- package/dist/cli/commands/init-claude-md-template.js +14 -0
- package/dist/cli/commands/init-claude-md-template.js.map +1 -1
- package/dist/core/SwarmCoordinator.d.ts +180 -0
- package/dist/core/SwarmCoordinator.d.ts.map +1 -0
- package/dist/core/SwarmCoordinator.js +473 -0
- package/dist/core/SwarmCoordinator.js.map +1 -0
- package/dist/core/memory/ReflexionMemoryAdapter.d.ts +109 -0
- package/dist/core/memory/ReflexionMemoryAdapter.d.ts.map +1 -0
- package/dist/core/memory/ReflexionMemoryAdapter.js +306 -0
- package/dist/core/memory/ReflexionMemoryAdapter.js.map +1 -0
- package/dist/core/memory/RuVectorPatternStore.d.ts +28 -0
- package/dist/core/memory/RuVectorPatternStore.d.ts.map +1 -1
- package/dist/core/memory/RuVectorPatternStore.js +70 -0
- package/dist/core/memory/RuVectorPatternStore.js.map +1 -1
- package/dist/core/memory/SparseVectorSearch.d.ts +55 -0
- package/dist/core/memory/SparseVectorSearch.d.ts.map +1 -0
- package/dist/core/memory/SparseVectorSearch.js +130 -0
- package/dist/core/memory/SparseVectorSearch.js.map +1 -0
- package/dist/core/memory/TieredCompression.d.ts +81 -0
- package/dist/core/memory/TieredCompression.d.ts.map +1 -0
- package/dist/core/memory/TieredCompression.js +270 -0
- package/dist/core/memory/TieredCompression.js.map +1 -0
- package/dist/core/memory/index.d.ts +6 -0
- package/dist/core/memory/index.d.ts.map +1 -1
- package/dist/core/memory/index.js +29 -1
- package/dist/core/memory/index.js.map +1 -1
- package/dist/core/metrics/MetricsAggregator.d.ts +228 -0
- package/dist/core/metrics/MetricsAggregator.d.ts.map +1 -0
- package/dist/core/metrics/MetricsAggregator.js +482 -0
- package/dist/core/metrics/MetricsAggregator.js.map +1 -0
- package/dist/core/metrics/index.d.ts +5 -0
- package/dist/core/metrics/index.d.ts.map +1 -0
- package/dist/core/metrics/index.js +11 -0
- package/dist/core/metrics/index.js.map +1 -0
- package/dist/core/optimization/SwarmOptimizer.d.ts +5 -0
- package/dist/core/optimization/SwarmOptimizer.d.ts.map +1 -1
- package/dist/core/optimization/SwarmOptimizer.js +17 -0
- package/dist/core/optimization/SwarmOptimizer.js.map +1 -1
- package/dist/core/orchestration/AdaptiveScheduler.d.ts +190 -0
- package/dist/core/orchestration/AdaptiveScheduler.d.ts.map +1 -0
- package/dist/core/orchestration/AdaptiveScheduler.js +460 -0
- package/dist/core/orchestration/AdaptiveScheduler.js.map +1 -0
- package/dist/core/orchestration/WorkflowOrchestrator.d.ts +13 -0
- package/dist/core/orchestration/WorkflowOrchestrator.d.ts.map +1 -1
- package/dist/core/orchestration/WorkflowOrchestrator.js +32 -0
- package/dist/core/orchestration/WorkflowOrchestrator.js.map +1 -1
- package/dist/core/recovery/CircuitBreaker.d.ts +176 -0
- package/dist/core/recovery/CircuitBreaker.d.ts.map +1 -0
- package/dist/core/recovery/CircuitBreaker.js +382 -0
- package/dist/core/recovery/CircuitBreaker.js.map +1 -0
- package/dist/core/recovery/RecoveryOrchestrator.d.ts +186 -0
- package/dist/core/recovery/RecoveryOrchestrator.d.ts.map +1 -0
- package/dist/core/recovery/RecoveryOrchestrator.js +476 -0
- package/dist/core/recovery/RecoveryOrchestrator.js.map +1 -0
- package/dist/core/recovery/RetryStrategy.d.ts +127 -0
- package/dist/core/recovery/RetryStrategy.d.ts.map +1 -0
- package/dist/core/recovery/RetryStrategy.js +314 -0
- package/dist/core/recovery/RetryStrategy.js.map +1 -0
- package/dist/core/recovery/index.d.ts +8 -0
- package/dist/core/recovery/index.d.ts.map +1 -0
- package/dist/core/recovery/index.js +27 -0
- package/dist/core/recovery/index.js.map +1 -0
- package/dist/core/skills/DependencyResolver.d.ts +99 -0
- package/dist/core/skills/DependencyResolver.d.ts.map +1 -0
- package/dist/core/skills/DependencyResolver.js +260 -0
- package/dist/core/skills/DependencyResolver.js.map +1 -0
- package/dist/core/skills/ManifestGenerator.d.ts +114 -0
- package/dist/core/skills/ManifestGenerator.d.ts.map +1 -0
- package/dist/core/skills/ManifestGenerator.js +449 -0
- package/dist/core/skills/ManifestGenerator.js.map +1 -0
- package/dist/core/skills/index.d.ts +9 -0
- package/dist/core/skills/index.d.ts.map +1 -0
- package/dist/core/skills/index.js +24 -0
- package/dist/core/skills/index.js.map +1 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts +5 -0
- package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts.map +1 -1
- package/dist/mcp/handlers/chaos/chaos-inject-failure.js +36 -2
- package/dist/mcp/handlers/chaos/chaos-inject-failure.js.map +1 -1
- package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts +5 -0
- package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts.map +1 -1
- package/dist/mcp/handlers/chaos/chaos-inject-latency.js +36 -2
- package/dist/mcp/handlers/chaos/chaos-inject-latency.js.map +1 -1
- package/dist/mcp/server.d.ts +9 -9
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +1 -2
- package/dist/mcp/server.js.map +1 -1
- package/dist/types/qx.d.ts +113 -7
- package/dist/types/qx.d.ts.map +1 -1
- package/dist/types/qx.js.map +1 -1
- package/dist/visualization/api/RestEndpoints.js +1 -1
- package/dist/visualization/api/RestEndpoints.js.map +1 -1
- package/package.json +15 -54
|
@@ -1,211 +1,163 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: technical-writing
|
|
3
|
-
description: Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles.
|
|
3
|
+
description: "Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles."
|
|
4
|
+
category: communication
|
|
5
|
+
priority: medium
|
|
6
|
+
tokenEstimate: 800
|
|
7
|
+
agents: [qe-quality-analyzer, qe-api-contract-validator]
|
|
8
|
+
implementation_status: optimized
|
|
9
|
+
optimization_version: 1.0
|
|
10
|
+
last_optimized: 2025-12-03
|
|
11
|
+
dependencies: []
|
|
12
|
+
quick_reference_card: true
|
|
13
|
+
tags: [writing, documentation, communication, blogs, tutorials]
|
|
4
14
|
---
|
|
5
15
|
|
|
6
|
-
# Technical Writing
|
|
16
|
+
# Technical Writing
|
|
7
17
|
|
|
8
|
-
|
|
9
|
-
|
|
18
|
+
<default_to_action>
|
|
19
|
+
When writing technical content:
|
|
20
|
+
1. LEAD with value (what will reader learn/gain?)
|
|
21
|
+
2. SHOW, don't tell (specific examples, code, numbers)
|
|
22
|
+
3. STRUCTURE for scanning (headers, bold, short paragraphs)
|
|
23
|
+
4. CUT ruthlessly (every sentence must earn its place)
|
|
24
|
+
5. BE honest about trade-offs
|
|
10
25
|
|
|
11
|
-
|
|
26
|
+
**Blog Post Structure:**
|
|
27
|
+
```markdown
|
|
28
|
+
# Title (specific promise)
|
|
12
29
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
**Good:** "Here's how we reduced bug escape rate by 60% without adding test automation."
|
|
30
|
+
## Opening (2-3 paragraphs)
|
|
31
|
+
- Hook: The problem or insight
|
|
32
|
+
- Context: Why this matters
|
|
33
|
+
- Promise: What they'll learn
|
|
18
34
|
|
|
19
|
-
|
|
20
|
-
|
|
35
|
+
## Body (3-5 sections)
|
|
36
|
+
- One clear idea per section
|
|
37
|
+
- Support with examples/code/data
|
|
21
38
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
Bug detection improved from 12 to 47 issues per sprint while cutting test execution time by 40%."
|
|
39
|
+
## Closing
|
|
40
|
+
- Key takeaway (1-2 sentences)
|
|
41
|
+
- Action reader can take
|
|
26
42
|
```
|
|
27
43
|
|
|
28
|
-
|
|
29
|
-
|
|
44
|
+
**Before/After:**
|
|
45
|
+
❌ "We implemented a comprehensive testing strategy..."
|
|
46
|
+
✅ "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement."
|
|
47
|
+
</default_to_action>
|
|
30
48
|
|
|
31
|
-
|
|
49
|
+
## Quick Reference Card
|
|
32
50
|
|
|
33
|
-
###
|
|
34
|
-
- Use clear headers that tell the story
|
|
35
|
-
- Bold key points
|
|
36
|
-
- Keep paragraphs short (3-5 sentences max)
|
|
37
|
-
- Use code blocks for technical details
|
|
38
|
-
- Lists for options or steps
|
|
51
|
+
### Core Principles
|
|
39
52
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
-
|
|
53
|
+
| Principle | Bad | Good |
|
|
54
|
+
|-----------|-----|------|
|
|
55
|
+
| **Lead with value** | "In today's landscape..." | "Here's how we cut bugs 60%" |
|
|
56
|
+
| **Show, don't tell** | "We improved testing" | "Bug detection: 12→47 per sprint" |
|
|
57
|
+
| **Be specific** | "Performance improved" | "Response time: 2.3s→180ms" |
|
|
58
|
+
| **Honest trade-offs** | "This approach is best" | "TDD slowed velocity 20%, reduced bugs 75%" |
|
|
46
59
|
|
|
47
|
-
|
|
60
|
+
### Words to Cut
|
|
48
61
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
- Each section: one clear idea
|
|
56
|
-
- Support with examples, code, data
|
|
57
|
-
- Explain your reasoning
|
|
58
|
-
- Show alternatives considered
|
|
62
|
+
| Kill | Reason |
|
|
63
|
+
|------|--------|
|
|
64
|
+
| basically, actually, probably | Hedge words |
|
|
65
|
+
| leverage, synergy, paradigm | Corporate speak |
|
|
66
|
+
| very, really, quite | Unnecessary qualifiers |
|
|
67
|
+
| it should be noted that | Just note it |
|
|
59
68
|
|
|
60
|
-
|
|
61
|
-
- Key takeaway (1-2 sentences)
|
|
62
|
-
- Action readers can take
|
|
63
|
-
- Optional: What's next for you
|
|
69
|
+
---
|
|
64
70
|
|
|
65
|
-
## Writing
|
|
71
|
+
## Audience-Specific Writing
|
|
66
72
|
|
|
67
73
|
### For Developers
|
|
68
74
|
- Lead with code or concrete problem
|
|
69
75
|
- Show implementation details
|
|
70
76
|
- Discuss trade-offs and alternatives
|
|
71
|
-
- Link to repos or
|
|
77
|
+
- Link to repos or examples
|
|
72
78
|
|
|
73
79
|
### For QA/QE
|
|
74
80
|
- Start with testing challenge
|
|
75
|
-
- Show
|
|
76
|
-
- Include risk assessment
|
|
77
|
-
- Provide heuristics
|
|
81
|
+
- Show strategy, not just tools
|
|
82
|
+
- Include risk assessment
|
|
83
|
+
- Provide adaptable heuristics
|
|
78
84
|
|
|
79
85
|
### For Leadership
|
|
80
86
|
- Open with business impact
|
|
81
|
-
- Use metrics that matter
|
|
82
|
-
- Connect technical
|
|
87
|
+
- Use metrics that matter
|
|
88
|
+
- Connect technical to outcomes
|
|
83
89
|
- Keep technical details concise
|
|
84
90
|
|
|
85
|
-
|
|
86
|
-
- Use analogies from everyday life
|
|
87
|
-
- Define jargon when first used
|
|
88
|
-
- Focus on concepts over implementation
|
|
89
|
-
- Make it relatable
|
|
90
|
-
|
|
91
|
-
## Common Pitfalls
|
|
92
|
-
|
|
93
|
-
**Tutorial Hell:** Don't just list steps. Explain *why* each step matters.
|
|
94
|
-
|
|
95
|
-
**False Expertise:** Only write about what you've actually done in production. If you're exploring, say so.
|
|
96
|
-
|
|
97
|
-
**Tool Worship:** Focus on problems and approaches, not specific tools. Tools change, principles persist.
|
|
98
|
-
|
|
99
|
-
**Defensive Writing:** Don't pre-apologize or over-qualify. State your experience clearly and invite discussion.
|
|
100
|
-
|
|
101
|
-
## Voice and Tone
|
|
102
|
-
|
|
103
|
-
- **Direct:** Say what you mean
|
|
104
|
-
- **Conversational:** Write like you're explaining to a colleague over coffee
|
|
105
|
-
- **Confident but humble:** Share what worked for you, acknowledge context matters
|
|
106
|
-
- **Occasionally irreverent:** It's okay to call out BS in the industry
|
|
91
|
+
---
|
|
107
92
|
|
|
108
93
|
## Editing Checklist
|
|
109
94
|
|
|
110
95
|
Before publishing:
|
|
111
|
-
- [ ]
|
|
112
|
-
- [ ]
|
|
113
|
-
- [ ]
|
|
114
|
-
- [ ]
|
|
115
|
-
- [ ]
|
|
116
|
-
- [ ]
|
|
117
|
-
- [ ]
|
|
96
|
+
- [ ] Title promises something specific
|
|
97
|
+
- [ ] Opening hooks in 30 seconds
|
|
98
|
+
- [ ] Claims backed by examples
|
|
99
|
+
- [ ] All unnecessary words cut
|
|
100
|
+
- [ ] Code examples tested and correct
|
|
101
|
+
- [ ] Takeaway crystal clear
|
|
102
|
+
- [ ] Would send to respected colleague
|
|
103
|
+
|
|
104
|
+
---
|
|
118
105
|
|
|
119
106
|
## Example Transformations
|
|
120
107
|
|
|
121
|
-
**Before:**
|
|
108
|
+
**Before:**
|
|
109
|
+
"We decided to implement a more comprehensive testing strategy that would allow us to catch bugs earlier in the development lifecycle."
|
|
122
110
|
|
|
123
|
-
**After:**
|
|
111
|
+
**After:**
|
|
112
|
+
"We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement, identifying risks before code is written."
|
|
124
113
|
|
|
125
114
|
---
|
|
126
115
|
|
|
127
|
-
**Before:**
|
|
116
|
+
**Before:**
|
|
117
|
+
"The benefits of this approach are numerous and include improved quality, faster feedback loops, and better team collaboration."
|
|
128
118
|
|
|
129
|
-
**After:**
|
|
119
|
+
**After:**
|
|
120
|
+
"Three outcomes: bugs found 2 days earlier on average, 30% fewer regression issues, and devs now ask QE for input during design."
|
|
130
121
|
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
- **Plain Language:** www.plainlanguage.gov
|
|
134
|
-
- **On Writing Well** by William Zinsser
|
|
135
|
-
- **Technical Blogging** by Antonio Cangiano (pragmatic approach)
|
|
136
|
-
- Your own blog archives - review what got engagement vs. what flopped
|
|
137
|
-
|
|
138
|
-
## Using with QE Agents
|
|
122
|
+
---
|
|
139
123
|
|
|
140
|
-
|
|
124
|
+
## Agent Integration
|
|
141
125
|
|
|
142
|
-
**qe-quality-analyzer** generates documentation from code:
|
|
143
126
|
```typescript
|
|
144
|
-
//
|
|
145
|
-
const docs = await
|
|
127
|
+
// Generate documentation from code
|
|
128
|
+
const docs = await Task("Generate Docs", {
|
|
146
129
|
source: 'src/services/PaymentService.ts',
|
|
147
130
|
format: 'markdown',
|
|
148
|
-
includeExamples: true
|
|
149
|
-
|
|
150
|
-
includeTypeDefinitions: true
|
|
151
|
-
});
|
|
152
|
-
|
|
153
|
-
// Generates:
|
|
154
|
-
// - Function signatures
|
|
155
|
-
// - Parameter descriptions
|
|
156
|
-
// - Return types
|
|
157
|
-
// - Usage examples
|
|
158
|
-
// - Error handling docs
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
### Documentation Quality Review
|
|
131
|
+
includeExamples: true
|
|
132
|
+
}, "qe-quality-analyzer");
|
|
162
133
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
files: ['README.md', 'docs/api.md', 'docs/guides/*.md'],
|
|
134
|
+
// Review documentation quality
|
|
135
|
+
const review = await Task("Review Docs", {
|
|
136
|
+
files: ['README.md', 'docs/api.md'],
|
|
167
137
|
checkClarity: true,
|
|
168
|
-
checkCompleteness: true,
|
|
169
|
-
checkAccuracy: true,
|
|
170
138
|
checkCodeExamples: true
|
|
171
|
-
});
|
|
172
|
-
|
|
173
|
-
// Returns:
|
|
174
|
-
// {
|
|
175
|
-
// issues: [
|
|
176
|
-
// { file: 'README.md', line: 45, issue: 'Example code is outdated' },
|
|
177
|
-
// { file: 'docs/api.md', line: 12, issue: 'Missing error response docs' }
|
|
178
|
-
// ],
|
|
179
|
-
// score: 0.82
|
|
180
|
-
// }
|
|
139
|
+
}, "qe-quality-analyzer");
|
|
181
140
|
```
|
|
182
141
|
|
|
183
|
-
|
|
142
|
+
---
|
|
184
143
|
|
|
185
|
-
|
|
186
|
-
// Agent keeps README in sync with code
|
|
187
|
-
const readmeUpdate = await qe-quality-analyzer.syncReadme({
|
|
188
|
-
source: 'src/',
|
|
189
|
-
readme: 'README.md',
|
|
190
|
-
sections: {
|
|
191
|
-
installation: true,
|
|
192
|
-
usage: true,
|
|
193
|
-
api: true,
|
|
194
|
-
examples: true
|
|
195
|
-
},
|
|
196
|
-
preserveManual: true // Keep manually written sections
|
|
197
|
-
});
|
|
198
|
-
```
|
|
144
|
+
## Agent Coordination Hints
|
|
199
145
|
|
|
200
|
-
###
|
|
146
|
+
### Memory Namespace
|
|
147
|
+
```
|
|
148
|
+
aqe/technical-writing/
|
|
149
|
+
├── generated-docs/* - Auto-generated documentation
|
|
150
|
+
├── reviews/* - Documentation review findings
|
|
151
|
+
└── templates/* - Reusable doc templates
|
|
152
|
+
```
|
|
201
153
|
|
|
154
|
+
### Fleet Coordination
|
|
202
155
|
```typescript
|
|
203
156
|
const docsFleet = await FleetManager.coordinate({
|
|
204
157
|
strategy: 'documentation',
|
|
205
158
|
agents: [
|
|
206
|
-
'qe-quality-analyzer',
|
|
207
|
-
'qe-api-contract-validator'
|
|
208
|
-
'qe-test-generator' // Generate example code
|
|
159
|
+
'qe-quality-analyzer', // Generate and review
|
|
160
|
+
'qe-api-contract-validator' // API doc accuracy
|
|
209
161
|
],
|
|
210
162
|
topology: 'sequential'
|
|
211
163
|
});
|
|
@@ -214,16 +166,13 @@ const docsFleet = await FleetManager.coordinate({
|
|
|
214
166
|
---
|
|
215
167
|
|
|
216
168
|
## Related Skills
|
|
217
|
-
|
|
218
|
-
**Communication:**
|
|
219
|
-
- [bug-reporting-excellence](../bug-reporting-excellence/) - Technical writing for bugs
|
|
169
|
+
- [bug-reporting-excellence](../bug-reporting-excellence/) - Technical bug writing
|
|
220
170
|
- [code-review-quality](../code-review-quality/) - Review documentation
|
|
221
171
|
|
|
222
|
-
**Development:**
|
|
223
|
-
- [agentic-quality-engineering](../agentic-quality-engineering/) - Doc automation
|
|
224
|
-
|
|
225
172
|
---
|
|
226
173
|
|
|
227
174
|
## Remember
|
|
228
175
|
|
|
229
|
-
You're not writing to impress
|
|
176
|
+
**You're not writing to impress.** You're writing to help people solve problems you've already solved. Be the colleague you wish you'd had.
|
|
177
|
+
|
|
178
|
+
**Write from experience.** Only write about what you've done in production. If exploring, say so.
|