agentic-qe 2.0.0 → 2.1.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.
Files changed (116) hide show
  1. package/.claude/agents/qx-partner.md +17 -4
  2. package/.claude/skills/accessibility-testing/SKILL.md +144 -692
  3. package/.claude/skills/agentic-quality-engineering/SKILL.md +176 -529
  4. package/.claude/skills/api-testing-patterns/SKILL.md +180 -560
  5. package/.claude/skills/brutal-honesty-review/SKILL.md +113 -603
  6. package/.claude/skills/bug-reporting-excellence/SKILL.md +116 -517
  7. package/.claude/skills/chaos-engineering-resilience/SKILL.md +127 -72
  8. package/.claude/skills/cicd-pipeline-qe-orchestrator/SKILL.md +209 -404
  9. package/.claude/skills/code-review-quality/SKILL.md +158 -608
  10. package/.claude/skills/compatibility-testing/SKILL.md +148 -38
  11. package/.claude/skills/compliance-testing/SKILL.md +132 -63
  12. package/.claude/skills/consultancy-practices/SKILL.md +114 -446
  13. package/.claude/skills/context-driven-testing/SKILL.md +117 -381
  14. package/.claude/skills/contract-testing/SKILL.md +176 -141
  15. package/.claude/skills/database-testing/SKILL.md +137 -130
  16. package/.claude/skills/exploratory-testing-advanced/SKILL.md +160 -629
  17. package/.claude/skills/holistic-testing-pact/SKILL.md +140 -188
  18. package/.claude/skills/localization-testing/SKILL.md +145 -33
  19. package/.claude/skills/mobile-testing/SKILL.md +132 -448
  20. package/.claude/skills/mutation-testing/SKILL.md +147 -41
  21. package/.claude/skills/performance-testing/SKILL.md +200 -546
  22. package/.claude/skills/quality-metrics/SKILL.md +164 -519
  23. package/.claude/skills/refactoring-patterns/SKILL.md +132 -699
  24. package/.claude/skills/regression-testing/SKILL.md +120 -926
  25. package/.claude/skills/risk-based-testing/SKILL.md +157 -660
  26. package/.claude/skills/security-testing/SKILL.md +199 -538
  27. package/.claude/skills/sherlock-review/SKILL.md +163 -699
  28. package/.claude/skills/shift-left-testing/SKILL.md +161 -465
  29. package/.claude/skills/shift-right-testing/SKILL.md +161 -519
  30. package/.claude/skills/six-thinking-hats/SKILL.md +175 -1110
  31. package/.claude/skills/skills-manifest.json +71 -20
  32. package/.claude/skills/tdd-london-chicago/SKILL.md +131 -448
  33. package/.claude/skills/technical-writing/SKILL.md +103 -154
  34. package/.claude/skills/test-automation-strategy/SKILL.md +166 -772
  35. package/.claude/skills/test-data-management/SKILL.md +126 -910
  36. package/.claude/skills/test-design-techniques/SKILL.md +179 -89
  37. package/.claude/skills/test-environment-management/SKILL.md +136 -91
  38. package/.claude/skills/test-reporting-analytics/SKILL.md +169 -92
  39. package/.claude/skills/testability-scoring/SKILL.md +172 -538
  40. package/.claude/skills/testability-scoring/scripts/generate-html-report.js +0 -0
  41. package/.claude/skills/visual-testing-advanced/SKILL.md +155 -78
  42. package/.claude/skills/xp-practices/SKILL.md +151 -587
  43. package/CHANGELOG.md +48 -0
  44. package/README.md +23 -16
  45. package/dist/agents/QXPartnerAgent.d.ts +8 -1
  46. package/dist/agents/QXPartnerAgent.d.ts.map +1 -1
  47. package/dist/agents/QXPartnerAgent.js +1174 -112
  48. package/dist/agents/QXPartnerAgent.js.map +1 -1
  49. package/dist/agents/lifecycle/AgentLifecycleManager.d.ts.map +1 -1
  50. package/dist/agents/lifecycle/AgentLifecycleManager.js +34 -31
  51. package/dist/agents/lifecycle/AgentLifecycleManager.js.map +1 -1
  52. package/dist/cli/commands/init-claude-md-template.d.ts.map +1 -1
  53. package/dist/cli/commands/init-claude-md-template.js +14 -0
  54. package/dist/cli/commands/init-claude-md-template.js.map +1 -1
  55. package/dist/core/SwarmCoordinator.d.ts +180 -0
  56. package/dist/core/SwarmCoordinator.d.ts.map +1 -0
  57. package/dist/core/SwarmCoordinator.js +473 -0
  58. package/dist/core/SwarmCoordinator.js.map +1 -0
  59. package/dist/core/metrics/MetricsAggregator.d.ts +228 -0
  60. package/dist/core/metrics/MetricsAggregator.d.ts.map +1 -0
  61. package/dist/core/metrics/MetricsAggregator.js +482 -0
  62. package/dist/core/metrics/MetricsAggregator.js.map +1 -0
  63. package/dist/core/metrics/index.d.ts +5 -0
  64. package/dist/core/metrics/index.d.ts.map +1 -0
  65. package/dist/core/metrics/index.js +11 -0
  66. package/dist/core/metrics/index.js.map +1 -0
  67. package/dist/core/optimization/SwarmOptimizer.d.ts +5 -0
  68. package/dist/core/optimization/SwarmOptimizer.d.ts.map +1 -1
  69. package/dist/core/optimization/SwarmOptimizer.js +17 -0
  70. package/dist/core/optimization/SwarmOptimizer.js.map +1 -1
  71. package/dist/core/orchestration/AdaptiveScheduler.d.ts +190 -0
  72. package/dist/core/orchestration/AdaptiveScheduler.d.ts.map +1 -0
  73. package/dist/core/orchestration/AdaptiveScheduler.js +460 -0
  74. package/dist/core/orchestration/AdaptiveScheduler.js.map +1 -0
  75. package/dist/core/orchestration/WorkflowOrchestrator.d.ts +13 -0
  76. package/dist/core/orchestration/WorkflowOrchestrator.d.ts.map +1 -1
  77. package/dist/core/orchestration/WorkflowOrchestrator.js +32 -0
  78. package/dist/core/orchestration/WorkflowOrchestrator.js.map +1 -1
  79. package/dist/core/recovery/CircuitBreaker.d.ts +176 -0
  80. package/dist/core/recovery/CircuitBreaker.d.ts.map +1 -0
  81. package/dist/core/recovery/CircuitBreaker.js +382 -0
  82. package/dist/core/recovery/CircuitBreaker.js.map +1 -0
  83. package/dist/core/recovery/RecoveryOrchestrator.d.ts +186 -0
  84. package/dist/core/recovery/RecoveryOrchestrator.d.ts.map +1 -0
  85. package/dist/core/recovery/RecoveryOrchestrator.js +476 -0
  86. package/dist/core/recovery/RecoveryOrchestrator.js.map +1 -0
  87. package/dist/core/recovery/RetryStrategy.d.ts +127 -0
  88. package/dist/core/recovery/RetryStrategy.d.ts.map +1 -0
  89. package/dist/core/recovery/RetryStrategy.js +314 -0
  90. package/dist/core/recovery/RetryStrategy.js.map +1 -0
  91. package/dist/core/recovery/index.d.ts +8 -0
  92. package/dist/core/recovery/index.d.ts.map +1 -0
  93. package/dist/core/recovery/index.js +27 -0
  94. package/dist/core/recovery/index.js.map +1 -0
  95. package/dist/core/skills/DependencyResolver.d.ts +99 -0
  96. package/dist/core/skills/DependencyResolver.d.ts.map +1 -0
  97. package/dist/core/skills/DependencyResolver.js +260 -0
  98. package/dist/core/skills/DependencyResolver.js.map +1 -0
  99. package/dist/core/skills/ManifestGenerator.d.ts +114 -0
  100. package/dist/core/skills/ManifestGenerator.d.ts.map +1 -0
  101. package/dist/core/skills/ManifestGenerator.js +449 -0
  102. package/dist/core/skills/ManifestGenerator.js.map +1 -0
  103. package/dist/core/skills/index.d.ts +9 -0
  104. package/dist/core/skills/index.d.ts.map +1 -0
  105. package/dist/core/skills/index.js +24 -0
  106. package/dist/core/skills/index.js.map +1 -0
  107. package/dist/mcp/server.d.ts +9 -9
  108. package/dist/mcp/server.d.ts.map +1 -1
  109. package/dist/mcp/server.js +1 -2
  110. package/dist/mcp/server.js.map +1 -1
  111. package/dist/types/qx.d.ts +39 -7
  112. package/dist/types/qx.d.ts.map +1 -1
  113. package/dist/types/qx.js.map +1 -1
  114. package/dist/visualization/api/RestEndpoints.js +1 -1
  115. package/dist/visualization/api/RestEndpoints.js.map +1 -1
  116. package/package.json +13 -55
@@ -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 Skill
16
+ # Technical Writing
7
17
 
8
- ## Purpose
9
- Write clear, engaging technical content that practitioners actually want to read. No corporate fluff, no vendor speak. Real insights from real experience.
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
- ## Core Principles
26
+ **Blog Post Structure:**
27
+ ```markdown
28
+ # Title (specific promise)
12
29
 
13
- ### 1. Lead with Value
14
- Start with what the reader will learn or gain. Skip the preamble.
15
-
16
- **Bad:** "In today's fast-paced software development landscape, quality has become increasingly important..."
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
- ### 2. Show, Don't Just Tell
20
- Use specific examples from actual work. Code snippets, real scenarios, actual numbers.
35
+ ## Body (3-5 sections)
36
+ - One clear idea per section
37
+ - Support with examples/code/data
21
38
 
22
- ```
23
- Generic: "We improved our testing approach."
24
- Specific: "We switched from scripted E2E tests to risk-based exploratory sessions.
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
- ### 3. Be Honest About Trade-offs
29
- Nothing works everywhere. Share what you gave up to gain something else.
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
- Example: "TDD slowed our initial feature velocity by 20%, but reduced production bugs by 75% and made refactoring fearless."
49
+ ## Quick Reference Card
32
50
 
33
- ### 4. Structure for Scanning
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
- ### 5. Cut Ruthlessly
41
- Every sentence must earn its place. Kill:
42
- - Hedge words (basically, actually, probably)
43
- - Corporate speak (leverage, synergy, paradigm shift)
44
- - Unnecessary qualifiers (very, really, quite)
45
- - Repetition of the same point
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
- ## Blog Post Structure
60
+ ### Words to Cut
48
61
 
49
- ### Opening (2-3 paragraphs)
50
- - Hook: The problem or surprising insight
51
- - Context: Why this matters
52
- - Promise: What they'll learn
53
-
54
- ### Body (3-5 sections)
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
- ### Closing
61
- - Key takeaway (1-2 sentences)
62
- - Action readers can take
63
- - Optional: What's next for you
69
+ ---
64
70
 
65
- ## Writing for Different Audiences
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 working examples
77
+ - Link to repos or examples
72
78
 
73
79
  ### For QA/QE
74
80
  - Start with testing challenge
75
- - Show testing strategy, not just tools
76
- - Include risk assessment thinking
77
- - Provide heuristics they can adapt
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 (not vanity metrics)
82
- - Connect technical decisions to outcomes
87
+ - Use metrics that matter
88
+ - Connect technical to outcomes
83
89
  - Keep technical details concise
84
90
 
85
- ### For General Tech Audience
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
- - [ ] Does the title promise something specific?
112
- - [ ] Does the opening hook the reader in 30 seconds?
113
- - [ ] Are claims backed by specific examples?
114
- - [ ] Have I cut all unnecessary words?
115
- - [ ] Would I send this to a colleague I respect?
116
- - [ ] Are code examples tested and correct?
117
- - [ ] Is the takeaway crystal clear?
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:** "We decided to implement a more comprehensive testing strategy that would allow us to catch bugs earlier in the development lifecycle."
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:** "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement, identifying risks before code is written."
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:** "The benefits of this approach are numerous and include improved quality, faster feedback loops, and better team collaboration."
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:** "Three outcomes: bugs found 2 days earlier on average, 30% fewer regression issues, and devs now ask QE for input during design."
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
- ## Resources
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
- ### Automated Documentation Generation
124
+ ## Agent Integration
141
125
 
142
- **qe-quality-analyzer** generates documentation from code:
143
126
  ```typescript
144
- // Agent generates documentation from source code
145
- const docs = await agent.generateDocs({
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
- includeApiDocs: true,
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
- ```typescript
164
- // Agent reviews documentation for quality
165
- const docReview = await qe-quality-analyzer.reviewDocumentation({
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
- ### Automated README Updates
142
+ ---
184
143
 
185
- ```typescript
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
- ### Documentation Fleet
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', // Generate and review docs
207
- 'qe-api-contract-validator', // API documentation accuracy
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 people. You're writing to help them solve problems you've already solved. Be the colleague you wish you'd had when you were figuring this stuff out.
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.