agentic-qe 1.1.0 → 1.2.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/.claude/agents/qe-coverage-analyzer.md +8 -0
- package/.claude/agents/qe-flaky-test-hunter.md +9 -1
- package/.claude/agents/qe-test-generator.md +7 -0
- package/.claude/agents/reasoning/agent.md +816 -0
- package/.claude/agents/reasoning/goal-planner.md +73 -0
- package/.claude/settings.json +21 -20
- package/.claude/skills/README.md +124 -0
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/agentic-quality-engineering/SKILL.md +604 -0
- package/.claude/skills/api-testing-patterns/SKILL.md +686 -0
- package/.claude/skills/bug-reporting-excellence/SKILL.md +632 -0
- package/.claude/skills/code-review-quality/SKILL.md +683 -0
- package/.claude/skills/consultancy-practices/SKILL.md +540 -0
- package/.claude/skills/context-driven-testing/SKILL.md +466 -0
- package/.claude/skills/exploratory-testing-advanced/SKILL.md +676 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
- package/.claude/skills/github-code-review/SKILL.md +1140 -0
- package/.claude/skills/github-multi-repo/SKILL.md +874 -0
- package/.claude/skills/github-project-management/SKILL.md +1277 -0
- package/.claude/skills/github-release-management/SKILL.md +1081 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
- package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
- package/.claude/skills/holistic-testing-pact/SKILL.md +225 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/performance-analysis/SKILL.md +563 -0
- package/.claude/skills/performance-testing/SKILL.md +662 -0
- package/.claude/skills/quality-metrics/SKILL.md +592 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/refactoring-patterns/SKILL.md +778 -0
- package/.claude/skills/risk-based-testing/SKILL.md +721 -0
- package/.claude/skills/security-testing/SKILL.md +651 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
- package/.claude/skills/stream-chain/SKILL.md +563 -0
- package/.claude/skills/swarm-advanced/SKILL.md +973 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/tdd-london-chicago/SKILL.md +567 -0
- package/.claude/skills/technical-writing/SKILL.md +235 -0
- package/.claude/skills/test-automation-strategy/SKILL.md +842 -0
- package/.claude/skills/verification-quality/SKILL.md +649 -0
- package/.claude/skills/xp-practices/SKILL.md +671 -0
- package/.claude/statusline-command.sh +176 -0
- package/CHANGELOG.md +536 -1
- package/README.md +92 -3
- package/config/improvement-loop.config.ts +323 -0
- package/config/neural-agent.config.ts +197 -0
- package/dist/adapters/MemoryStoreAdapter.d.ts +16 -16
- package/dist/adapters/MemoryStoreAdapter.d.ts.map +1 -1
- package/dist/adapters/MemoryStoreAdapter.js +16 -16
- package/dist/adapters/MemoryStoreAdapter.js.map +1 -1
- package/dist/agents/BaseAgent.d.ts +69 -0
- package/dist/agents/BaseAgent.d.ts.map +1 -1
- package/dist/agents/BaseAgent.js +382 -1
- package/dist/agents/BaseAgent.js.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.d.ts +13 -2
- package/dist/agents/CoverageAnalyzerAgent.d.ts.map +1 -1
- package/dist/agents/CoverageAnalyzerAgent.js +105 -6
- package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
- package/dist/agents/DeploymentReadinessAgent.d.ts.map +1 -1
- package/dist/agents/DeploymentReadinessAgent.js +13 -13
- package/dist/agents/DeploymentReadinessAgent.js.map +1 -1
- package/dist/agents/FlakyTestHunterAgent.d.ts +28 -0
- package/dist/agents/FlakyTestHunterAgent.d.ts.map +1 -1
- package/dist/agents/FlakyTestHunterAgent.js +159 -4
- package/dist/agents/FlakyTestHunterAgent.js.map +1 -1
- package/dist/agents/FleetCommanderAgent.d.ts.map +1 -1
- package/dist/agents/FleetCommanderAgent.js +2 -2
- package/dist/agents/FleetCommanderAgent.js.map +1 -1
- package/dist/agents/LearningAgent.d.ts +14 -5
- package/dist/agents/LearningAgent.d.ts.map +1 -1
- package/dist/agents/LearningAgent.js +36 -16
- package/dist/agents/LearningAgent.js.map +1 -1
- package/dist/agents/NeuralAgentExtension.d.ts +117 -0
- package/dist/agents/NeuralAgentExtension.d.ts.map +1 -0
- package/dist/agents/NeuralAgentExtension.js +288 -0
- package/dist/agents/NeuralAgentExtension.js.map +1 -0
- package/dist/agents/PerformanceTesterAgent.d.ts.map +1 -1
- package/dist/agents/PerformanceTesterAgent.js +4 -3
- package/dist/agents/PerformanceTesterAgent.js.map +1 -1
- package/dist/agents/ProductionIntelligenceAgent.js +7 -7
- package/dist/agents/ProductionIntelligenceAgent.js.map +1 -1
- package/dist/agents/QualityAnalyzerAgent.d.ts.map +1 -1
- package/dist/agents/QualityAnalyzerAgent.js +2 -2
- package/dist/agents/QualityAnalyzerAgent.js.map +1 -1
- package/dist/agents/QualityGateAgent.js +5 -5
- package/dist/agents/QualityGateAgent.js.map +1 -1
- package/dist/agents/RegressionRiskAnalyzerAgent.js +7 -7
- package/dist/agents/RegressionRiskAnalyzerAgent.js.map +1 -1
- package/dist/agents/RequirementsValidatorAgent.d.ts.map +1 -1
- package/dist/agents/RequirementsValidatorAgent.js +1 -1
- package/dist/agents/RequirementsValidatorAgent.js.map +1 -1
- package/dist/agents/SecurityScannerAgent.js +6 -6
- package/dist/agents/SecurityScannerAgent.js.map +1 -1
- package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
- package/dist/agents/TestExecutorAgent.js +1 -3
- package/dist/agents/TestExecutorAgent.js.map +1 -1
- package/dist/agents/TestGeneratorAgent.d.ts +15 -4
- package/dist/agents/TestGeneratorAgent.d.ts.map +1 -1
- package/dist/agents/TestGeneratorAgent.js +165 -43
- package/dist/agents/TestGeneratorAgent.js.map +1 -1
- package/dist/agents/mixins/NeuralCapableMixin.d.ts +130 -0
- package/dist/agents/mixins/NeuralCapableMixin.d.ts.map +1 -0
- package/dist/agents/mixins/NeuralCapableMixin.js +358 -0
- package/dist/agents/mixins/NeuralCapableMixin.js.map +1 -0
- package/dist/agents/mixins/QUICCapableMixin.d.ts +34 -0
- package/dist/agents/mixins/QUICCapableMixin.d.ts.map +1 -0
- package/dist/agents/mixins/QUICCapableMixin.js +346 -0
- package/dist/agents/mixins/QUICCapableMixin.js.map +1 -0
- package/dist/cli/commands/agent/index.d.ts +5 -0
- package/dist/cli/commands/agent/index.d.ts.map +1 -1
- package/dist/cli/commands/agent/index.js +11 -6
- package/dist/cli/commands/agent/index.js.map +1 -1
- package/dist/cli/commands/agent/kill.d.ts +13 -0
- package/dist/cli/commands/agent/kill.d.ts.map +1 -0
- package/dist/cli/commands/agent/kill.js +65 -0
- package/dist/cli/commands/agent/kill.js.map +1 -0
- package/dist/cli/commands/agent/list.d.ts +19 -0
- package/dist/cli/commands/agent/list.d.ts.map +1 -0
- package/dist/cli/commands/agent/list.js +92 -0
- package/dist/cli/commands/agent/list.js.map +1 -0
- package/dist/cli/commands/agent/logs.d.ts +14 -0
- package/dist/cli/commands/agent/logs.d.ts.map +1 -0
- package/dist/cli/commands/agent/logs.js +77 -0
- package/dist/cli/commands/agent/logs.js.map +1 -0
- package/dist/cli/commands/agent/metrics.d.ts +21 -0
- package/dist/cli/commands/agent/metrics.d.ts.map +1 -0
- package/dist/cli/commands/agent/metrics.js +87 -0
- package/dist/cli/commands/agent/metrics.js.map +1 -0
- package/dist/cli/commands/agent/spawn.d.ts +28 -0
- package/dist/cli/commands/agent/spawn.d.ts.map +1 -0
- package/dist/cli/commands/agent/spawn.js +83 -0
- package/dist/cli/commands/agent/spawn.js.map +1 -0
- package/dist/cli/commands/init.d.ts +24 -0
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +475 -7
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/skills/index.d.ts +51 -0
- package/dist/cli/commands/skills/index.d.ts.map +1 -0
- package/dist/cli/commands/skills/index.js +364 -0
- package/dist/cli/commands/skills/index.js.map +1 -0
- package/dist/cli/index.js +92 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/core/EventBus.d.ts +38 -0
- package/dist/core/EventBus.d.ts.map +1 -1
- package/dist/core/EventBus.js +176 -31
- package/dist/core/EventBus.js.map +1 -1
- package/dist/core/FleetManager.d.ts +35 -1
- package/dist/core/FleetManager.d.ts.map +1 -1
- package/dist/core/FleetManager.js +121 -45
- package/dist/core/FleetManager.js.map +1 -1
- package/dist/core/MemoryManager.d.ts +19 -1
- package/dist/core/MemoryManager.d.ts.map +1 -1
- package/dist/core/MemoryManager.js +25 -1
- package/dist/core/MemoryManager.js.map +1 -1
- package/dist/core/embeddings/EmbeddingCache.d.ts +134 -0
- package/dist/core/embeddings/EmbeddingCache.d.ts.map +1 -0
- package/dist/core/embeddings/EmbeddingCache.js +239 -0
- package/dist/core/embeddings/EmbeddingCache.js.map +1 -0
- package/dist/core/embeddings/EmbeddingGenerator.d.ts +224 -0
- package/dist/core/embeddings/EmbeddingGenerator.d.ts.map +1 -0
- package/dist/core/embeddings/EmbeddingGenerator.js +459 -0
- package/dist/core/embeddings/EmbeddingGenerator.js.map +1 -0
- package/dist/core/embeddings/index.d.ts +15 -0
- package/dist/core/embeddings/index.d.ts.map +1 -0
- package/dist/core/embeddings/index.js +22 -0
- package/dist/core/embeddings/index.js.map +1 -0
- package/dist/core/memory/AgentDBIntegration.d.ts +35 -0
- package/dist/core/memory/AgentDBIntegration.d.ts.map +1 -0
- package/dist/core/memory/AgentDBIntegration.js +75 -0
- package/dist/core/memory/AgentDBIntegration.js.map +1 -0
- package/dist/core/memory/AgentDBManager.d.ts +200 -0
- package/dist/core/memory/AgentDBManager.d.ts.map +1 -0
- package/dist/core/memory/AgentDBManager.js +263 -0
- package/dist/core/memory/AgentDBManager.js.map +1 -0
- package/dist/core/memory/AgentDBService.d.ts +160 -0
- package/dist/core/memory/AgentDBService.d.ts.map +1 -0
- package/dist/core/memory/AgentDBService.js +450 -0
- package/dist/core/memory/AgentDBService.js.map +1 -0
- package/dist/core/memory/RealAgentDBAdapter.d.ts +51 -0
- package/dist/core/memory/RealAgentDBAdapter.d.ts.map +1 -0
- package/dist/core/memory/RealAgentDBAdapter.js +230 -0
- package/dist/core/memory/RealAgentDBAdapter.js.map +1 -0
- package/dist/core/memory/ReasoningBankAdapter.d.ts +58 -0
- package/dist/core/memory/ReasoningBankAdapter.d.ts.map +1 -0
- package/dist/core/memory/ReasoningBankAdapter.js +80 -0
- package/dist/core/memory/ReasoningBankAdapter.js.map +1 -0
- package/dist/core/memory/SwarmMemoryManager.d.ts +75 -3
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
- package/dist/core/memory/SwarmMemoryManager.js +236 -52
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
- package/dist/core/memory/index.d.ts +4 -0
- package/dist/core/memory/index.d.ts.map +1 -1
- package/dist/core/memory/index.js +9 -1
- package/dist/core/memory/index.js.map +1 -1
- package/dist/core/neural/NeuralTrainer.d.ts +137 -0
- package/dist/core/neural/NeuralTrainer.d.ts.map +1 -0
- package/dist/core/neural/NeuralTrainer.js +543 -0
- package/dist/core/neural/NeuralTrainer.js.map +1 -0
- package/dist/core/neural/index.d.ts +8 -0
- package/dist/core/neural/index.d.ts.map +1 -0
- package/dist/core/neural/index.js +24 -0
- package/dist/core/neural/index.js.map +1 -0
- package/dist/core/neural/types.d.ts +216 -0
- package/dist/core/neural/types.d.ts.map +1 -0
- package/dist/core/neural/types.js +8 -0
- package/dist/core/neural/types.js.map +1 -0
- package/dist/core/security/CertificateValidator.d.ts +130 -0
- package/dist/core/security/CertificateValidator.d.ts.map +1 -0
- package/dist/core/security/CertificateValidator.js +376 -0
- package/dist/core/security/CertificateValidator.js.map +1 -0
- package/dist/core/transport/QUICTransport.d.ts +62 -0
- package/dist/core/transport/QUICTransport.d.ts.map +1 -0
- package/dist/core/transport/QUICTransport.js +381 -0
- package/dist/core/transport/QUICTransport.js.map +1 -0
- package/dist/core/transport/SecureQUICTransport.d.ts +71 -0
- package/dist/core/transport/SecureQUICTransport.d.ts.map +1 -0
- package/dist/core/transport/SecureQUICTransport.js +253 -0
- package/dist/core/transport/SecureQUICTransport.js.map +1 -0
- package/dist/learning/AdvancedFeatureExtractor.d.ts +123 -0
- package/dist/learning/AdvancedFeatureExtractor.d.ts.map +1 -0
- package/dist/learning/AdvancedFeatureExtractor.js +423 -0
- package/dist/learning/AdvancedFeatureExtractor.js.map +1 -0
- package/dist/learning/FlakyPredictionModel.d.ts +11 -1
- package/dist/learning/FlakyPredictionModel.d.ts.map +1 -1
- package/dist/learning/FlakyPredictionModel.js +82 -35
- package/dist/learning/FlakyPredictionModel.js.map +1 -1
- package/dist/learning/FlakyTestDetector.d.ts +9 -0
- package/dist/learning/FlakyTestDetector.d.ts.map +1 -1
- package/dist/learning/FlakyTestDetector.js +28 -6
- package/dist/learning/FlakyTestDetector.js.map +1 -1
- package/dist/learning/ImprovementLoop.d.ts +16 -2
- package/dist/learning/ImprovementLoop.d.ts.map +1 -1
- package/dist/learning/ImprovementLoop.js +67 -8
- package/dist/learning/ImprovementLoop.js.map +1 -1
- package/dist/learning/ImprovementWorker.d.ts +83 -0
- package/dist/learning/ImprovementWorker.d.ts.map +1 -0
- package/dist/learning/ImprovementWorker.js +164 -0
- package/dist/learning/ImprovementWorker.js.map +1 -0
- package/dist/learning/NeuralPatternMatcher.d.ts +184 -0
- package/dist/learning/NeuralPatternMatcher.d.ts.map +1 -0
- package/dist/learning/NeuralPatternMatcher.js +702 -0
- package/dist/learning/NeuralPatternMatcher.js.map +1 -0
- package/dist/learning/NeuralTrainer.d.ts +209 -0
- package/dist/learning/NeuralTrainer.d.ts.map +1 -0
- package/dist/learning/NeuralTrainer.js +478 -0
- package/dist/learning/NeuralTrainer.js.map +1 -0
- package/dist/learning/index.d.ts +13 -7
- package/dist/learning/index.d.ts.map +1 -1
- package/dist/learning/index.js +27 -11
- package/dist/learning/index.js.map +1 -1
- package/dist/learning/types.d.ts +1 -0
- package/dist/learning/types.d.ts.map +1 -1
- package/dist/learning/types.js +16 -0
- package/dist/learning/types.js.map +1 -1
- package/dist/mcp/MCPToolRegistry.d.ts +34 -0
- package/dist/mcp/MCPToolRegistry.d.ts.map +1 -0
- package/dist/mcp/MCPToolRegistry.js +48 -0
- package/dist/mcp/MCPToolRegistry.js.map +1 -0
- package/dist/mcp/server.d.ts +4 -4
- package/dist/mcp/services/AgentRegistry.d.ts.map +1 -1
- package/dist/mcp/services/AgentRegistry.js +7 -1
- package/dist/mcp/services/AgentRegistry.js.map +1 -1
- package/dist/transport/QUICTransport.d.ts +340 -0
- package/dist/transport/QUICTransport.d.ts.map +1 -0
- package/dist/transport/QUICTransport.js +814 -0
- package/dist/transport/QUICTransport.js.map +1 -0
- package/dist/transport/UDPTransport.d.ts +348 -0
- package/dist/transport/UDPTransport.d.ts.map +1 -0
- package/dist/transport/UDPTransport.js +820 -0
- package/dist/transport/UDPTransport.js.map +1 -0
- package/dist/types/errors.d.ts +1 -1
- package/dist/types/index.d.ts +37 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/quic.d.ts +339 -0
- package/dist/types/quic.d.ts.map +1 -0
- package/dist/types/quic.js +48 -0
- package/dist/types/quic.js.map +1 -0
- package/dist/utils/Config.js +1 -1
- package/dist/utils/Config.js.map +1 -1
- package/dist/utils/Database.d.ts +14 -0
- package/dist/utils/Database.d.ts.map +1 -1
- package/dist/utils/Database.js +51 -4
- package/dist/utils/Database.js.map +1 -1
- package/dist/utils/Logger.d.ts.map +1 -1
- package/dist/utils/Logger.js +111 -26
- package/dist/utils/Logger.js.map +1 -1
- package/package.json +30 -7
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: technical-writing
|
|
3
|
+
description: Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
category: communication
|
|
6
|
+
tags: [documentation, blogging, tutorials, content-creation, clarity, audience-awareness]
|
|
7
|
+
difficulty: intermediate
|
|
8
|
+
estimated_time: 30 minutes
|
|
9
|
+
author: user
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
# Technical Writing Skill
|
|
13
|
+
|
|
14
|
+
## Purpose
|
|
15
|
+
Write clear, engaging technical content that practitioners actually want to read. No corporate fluff, no vendor speak. Real insights from real experience.
|
|
16
|
+
|
|
17
|
+
## Core Principles
|
|
18
|
+
|
|
19
|
+
### 1. Lead with Value
|
|
20
|
+
Start with what the reader will learn or gain. Skip the preamble.
|
|
21
|
+
|
|
22
|
+
**Bad:** "In today's fast-paced software development landscape, quality has become increasingly important..."
|
|
23
|
+
**Good:** "Here's how we reduced bug escape rate by 60% without adding test automation."
|
|
24
|
+
|
|
25
|
+
### 2. Show, Don't Just Tell
|
|
26
|
+
Use specific examples from actual work. Code snippets, real scenarios, actual numbers.
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
Generic: "We improved our testing approach."
|
|
30
|
+
Specific: "We switched from scripted E2E tests to risk-based exploratory sessions.
|
|
31
|
+
Bug detection improved from 12 to 47 issues per sprint while cutting test execution time by 40%."
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### 3. Be Honest About Trade-offs
|
|
35
|
+
Nothing works everywhere. Share what you gave up to gain something else.
|
|
36
|
+
|
|
37
|
+
Example: "TDD slowed our initial feature velocity by 20%, but reduced production bugs by 75% and made refactoring fearless."
|
|
38
|
+
|
|
39
|
+
### 4. Structure for Scanning
|
|
40
|
+
- Use clear headers that tell the story
|
|
41
|
+
- Bold key points
|
|
42
|
+
- Keep paragraphs short (3-5 sentences max)
|
|
43
|
+
- Use code blocks for technical details
|
|
44
|
+
- Lists for options or steps
|
|
45
|
+
|
|
46
|
+
### 5. Cut Ruthlessly
|
|
47
|
+
Every sentence must earn its place. Kill:
|
|
48
|
+
- Hedge words (basically, actually, probably)
|
|
49
|
+
- Corporate speak (leverage, synergy, paradigm shift)
|
|
50
|
+
- Unnecessary qualifiers (very, really, quite)
|
|
51
|
+
- Repetition of the same point
|
|
52
|
+
|
|
53
|
+
## Blog Post Structure
|
|
54
|
+
|
|
55
|
+
### Opening (2-3 paragraphs)
|
|
56
|
+
- Hook: The problem or surprising insight
|
|
57
|
+
- Context: Why this matters
|
|
58
|
+
- Promise: What they'll learn
|
|
59
|
+
|
|
60
|
+
### Body (3-5 sections)
|
|
61
|
+
- Each section: one clear idea
|
|
62
|
+
- Support with examples, code, data
|
|
63
|
+
- Explain your reasoning
|
|
64
|
+
- Show alternatives considered
|
|
65
|
+
|
|
66
|
+
### Closing
|
|
67
|
+
- Key takeaway (1-2 sentences)
|
|
68
|
+
- Action readers can take
|
|
69
|
+
- Optional: What's next for you
|
|
70
|
+
|
|
71
|
+
## Writing for Different Audiences
|
|
72
|
+
|
|
73
|
+
### For Developers
|
|
74
|
+
- Lead with code or concrete problem
|
|
75
|
+
- Show implementation details
|
|
76
|
+
- Discuss trade-offs and alternatives
|
|
77
|
+
- Link to repos or working examples
|
|
78
|
+
|
|
79
|
+
### For QA/QE
|
|
80
|
+
- Start with testing challenge
|
|
81
|
+
- Show testing strategy, not just tools
|
|
82
|
+
- Include risk assessment thinking
|
|
83
|
+
- Provide heuristics they can adapt
|
|
84
|
+
|
|
85
|
+
### For Leadership
|
|
86
|
+
- Open with business impact
|
|
87
|
+
- Use metrics that matter (not vanity metrics)
|
|
88
|
+
- Connect technical decisions to outcomes
|
|
89
|
+
- Keep technical details concise
|
|
90
|
+
|
|
91
|
+
### For General Tech Audience
|
|
92
|
+
- Use analogies from everyday life
|
|
93
|
+
- Define jargon when first used
|
|
94
|
+
- Focus on concepts over implementation
|
|
95
|
+
- Make it relatable
|
|
96
|
+
|
|
97
|
+
## Common Pitfalls
|
|
98
|
+
|
|
99
|
+
**Tutorial Hell:** Don't just list steps. Explain *why* each step matters.
|
|
100
|
+
|
|
101
|
+
**False Expertise:** Only write about what you've actually done in production. If you're exploring, say so.
|
|
102
|
+
|
|
103
|
+
**Tool Worship:** Focus on problems and approaches, not specific tools. Tools change, principles persist.
|
|
104
|
+
|
|
105
|
+
**Defensive Writing:** Don't pre-apologize or over-qualify. State your experience clearly and invite discussion.
|
|
106
|
+
|
|
107
|
+
## Voice and Tone
|
|
108
|
+
|
|
109
|
+
- **Direct:** Say what you mean
|
|
110
|
+
- **Conversational:** Write like you're explaining to a colleague over coffee
|
|
111
|
+
- **Confident but humble:** Share what worked for you, acknowledge context matters
|
|
112
|
+
- **Occasionally irreverent:** It's okay to call out BS in the industry
|
|
113
|
+
|
|
114
|
+
## Editing Checklist
|
|
115
|
+
|
|
116
|
+
Before publishing:
|
|
117
|
+
- [ ] Does the title promise something specific?
|
|
118
|
+
- [ ] Does the opening hook the reader in 30 seconds?
|
|
119
|
+
- [ ] Are claims backed by specific examples?
|
|
120
|
+
- [ ] Have I cut all unnecessary words?
|
|
121
|
+
- [ ] Would I send this to a colleague I respect?
|
|
122
|
+
- [ ] Are code examples tested and correct?
|
|
123
|
+
- [ ] Is the takeaway crystal clear?
|
|
124
|
+
|
|
125
|
+
## Example Transformations
|
|
126
|
+
|
|
127
|
+
**Before:** "We decided to implement a more comprehensive testing strategy that would allow us to catch bugs earlier in the development lifecycle."
|
|
128
|
+
|
|
129
|
+
**After:** "We moved exploratory testing into sprint planning. QE now pairs with devs during story refinement, identifying risks before code is written."
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
**Before:** "The benefits of this approach are numerous and include improved quality, faster feedback loops, and better team collaboration."
|
|
134
|
+
|
|
135
|
+
**After:** "Three outcomes: bugs found 2 days earlier on average, 30% fewer regression issues, and devs now ask QE for input during design."
|
|
136
|
+
|
|
137
|
+
## Resources
|
|
138
|
+
|
|
139
|
+
- **Plain Language:** www.plainlanguage.gov
|
|
140
|
+
- **On Writing Well** by William Zinsser
|
|
141
|
+
- **Technical Blogging** by Antonio Cangiano (pragmatic approach)
|
|
142
|
+
- Your own blog archives - review what got engagement vs. what flopped
|
|
143
|
+
|
|
144
|
+
## Using with QE Agents
|
|
145
|
+
|
|
146
|
+
### Automated Documentation Generation
|
|
147
|
+
|
|
148
|
+
**qe-quality-analyzer** generates documentation from code:
|
|
149
|
+
```typescript
|
|
150
|
+
// Agent generates documentation from source code
|
|
151
|
+
const docs = await agent.generateDocs({
|
|
152
|
+
source: 'src/services/PaymentService.ts',
|
|
153
|
+
format: 'markdown',
|
|
154
|
+
includeExamples: true,
|
|
155
|
+
includeApiDocs: true,
|
|
156
|
+
includeTypeDefinitions: true
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
// Generates:
|
|
160
|
+
// - Function signatures
|
|
161
|
+
// - Parameter descriptions
|
|
162
|
+
// - Return types
|
|
163
|
+
// - Usage examples
|
|
164
|
+
// - Error handling docs
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Documentation Quality Review
|
|
168
|
+
|
|
169
|
+
```typescript
|
|
170
|
+
// Agent reviews documentation for quality
|
|
171
|
+
const docReview = await qe-quality-analyzer.reviewDocumentation({
|
|
172
|
+
files: ['README.md', 'docs/api.md', 'docs/guides/*.md'],
|
|
173
|
+
checkClarity: true,
|
|
174
|
+
checkCompleteness: true,
|
|
175
|
+
checkAccuracy: true,
|
|
176
|
+
checkCodeExamples: true
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
// Returns:
|
|
180
|
+
// {
|
|
181
|
+
// issues: [
|
|
182
|
+
// { file: 'README.md', line: 45, issue: 'Example code is outdated' },
|
|
183
|
+
// { file: 'docs/api.md', line: 12, issue: 'Missing error response docs' }
|
|
184
|
+
// ],
|
|
185
|
+
// score: 0.82
|
|
186
|
+
// }
|
|
187
|
+
```
|
|
188
|
+
|
|
189
|
+
### Automated README Updates
|
|
190
|
+
|
|
191
|
+
```typescript
|
|
192
|
+
// Agent keeps README in sync with code
|
|
193
|
+
const readmeUpdate = await qe-quality-analyzer.syncReadme({
|
|
194
|
+
source: 'src/',
|
|
195
|
+
readme: 'README.md',
|
|
196
|
+
sections: {
|
|
197
|
+
installation: true,
|
|
198
|
+
usage: true,
|
|
199
|
+
api: true,
|
|
200
|
+
examples: true
|
|
201
|
+
},
|
|
202
|
+
preserveManual: true // Keep manually written sections
|
|
203
|
+
});
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### Documentation Fleet
|
|
207
|
+
|
|
208
|
+
```typescript
|
|
209
|
+
const docsFleet = await FleetManager.coordinate({
|
|
210
|
+
strategy: 'documentation',
|
|
211
|
+
agents: [
|
|
212
|
+
'qe-quality-analyzer', // Generate and review docs
|
|
213
|
+
'qe-api-contract-validator', // API documentation accuracy
|
|
214
|
+
'qe-test-generator' // Generate example code
|
|
215
|
+
],
|
|
216
|
+
topology: 'sequential'
|
|
217
|
+
});
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## Related Skills
|
|
223
|
+
|
|
224
|
+
**Communication:**
|
|
225
|
+
- [bug-reporting-excellence](../bug-reporting-excellence/) - Technical writing for bugs
|
|
226
|
+
- [code-review-quality](../code-review-quality/) - Review documentation
|
|
227
|
+
|
|
228
|
+
**Development:**
|
|
229
|
+
- [agentic-quality-engineering](../agentic-quality-engineering/) - Doc automation
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## Remember
|
|
234
|
+
|
|
235
|
+
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.
|