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.
Files changed (297) hide show
  1. package/.claude/agents/qe-coverage-analyzer.md +8 -0
  2. package/.claude/agents/qe-flaky-test-hunter.md +9 -1
  3. package/.claude/agents/qe-test-generator.md +7 -0
  4. package/.claude/agents/reasoning/agent.md +816 -0
  5. package/.claude/agents/reasoning/goal-planner.md +73 -0
  6. package/.claude/settings.json +21 -20
  7. package/.claude/skills/README.md +124 -0
  8. package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
  9. package/.claude/skills/agentdb-learning/SKILL.md +545 -0
  10. package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
  11. package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
  12. package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
  13. package/.claude/skills/agentic-quality-engineering/SKILL.md +604 -0
  14. package/.claude/skills/api-testing-patterns/SKILL.md +686 -0
  15. package/.claude/skills/bug-reporting-excellence/SKILL.md +632 -0
  16. package/.claude/skills/code-review-quality/SKILL.md +683 -0
  17. package/.claude/skills/consultancy-practices/SKILL.md +540 -0
  18. package/.claude/skills/context-driven-testing/SKILL.md +466 -0
  19. package/.claude/skills/exploratory-testing-advanced/SKILL.md +676 -0
  20. package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
  21. package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
  22. package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
  23. package/.claude/skills/github-code-review/SKILL.md +1140 -0
  24. package/.claude/skills/github-multi-repo/SKILL.md +874 -0
  25. package/.claude/skills/github-project-management/SKILL.md +1277 -0
  26. package/.claude/skills/github-release-management/SKILL.md +1081 -0
  27. package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
  28. package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
  29. package/.claude/skills/holistic-testing-pact/SKILL.md +225 -0
  30. package/.claude/skills/hooks-automation/SKILL.md +1201 -0
  31. package/.claude/skills/pair-programming/SKILL.md +1202 -0
  32. package/.claude/skills/performance-analysis/SKILL.md +563 -0
  33. package/.claude/skills/performance-testing/SKILL.md +662 -0
  34. package/.claude/skills/quality-metrics/SKILL.md +592 -0
  35. package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
  36. package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
  37. package/.claude/skills/refactoring-patterns/SKILL.md +778 -0
  38. package/.claude/skills/risk-based-testing/SKILL.md +721 -0
  39. package/.claude/skills/security-testing/SKILL.md +651 -0
  40. package/.claude/skills/skill-builder/SKILL.md +910 -0
  41. package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
  42. package/.claude/skills/stream-chain/SKILL.md +563 -0
  43. package/.claude/skills/swarm-advanced/SKILL.md +973 -0
  44. package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
  45. package/.claude/skills/tdd-london-chicago/SKILL.md +567 -0
  46. package/.claude/skills/technical-writing/SKILL.md +235 -0
  47. package/.claude/skills/test-automation-strategy/SKILL.md +842 -0
  48. package/.claude/skills/verification-quality/SKILL.md +649 -0
  49. package/.claude/skills/xp-practices/SKILL.md +671 -0
  50. package/.claude/statusline-command.sh +176 -0
  51. package/CHANGELOG.md +536 -1
  52. package/README.md +92 -3
  53. package/config/improvement-loop.config.ts +323 -0
  54. package/config/neural-agent.config.ts +197 -0
  55. package/dist/adapters/MemoryStoreAdapter.d.ts +16 -16
  56. package/dist/adapters/MemoryStoreAdapter.d.ts.map +1 -1
  57. package/dist/adapters/MemoryStoreAdapter.js +16 -16
  58. package/dist/adapters/MemoryStoreAdapter.js.map +1 -1
  59. package/dist/agents/BaseAgent.d.ts +69 -0
  60. package/dist/agents/BaseAgent.d.ts.map +1 -1
  61. package/dist/agents/BaseAgent.js +382 -1
  62. package/dist/agents/BaseAgent.js.map +1 -1
  63. package/dist/agents/CoverageAnalyzerAgent.d.ts +13 -2
  64. package/dist/agents/CoverageAnalyzerAgent.d.ts.map +1 -1
  65. package/dist/agents/CoverageAnalyzerAgent.js +105 -6
  66. package/dist/agents/CoverageAnalyzerAgent.js.map +1 -1
  67. package/dist/agents/DeploymentReadinessAgent.d.ts.map +1 -1
  68. package/dist/agents/DeploymentReadinessAgent.js +13 -13
  69. package/dist/agents/DeploymentReadinessAgent.js.map +1 -1
  70. package/dist/agents/FlakyTestHunterAgent.d.ts +28 -0
  71. package/dist/agents/FlakyTestHunterAgent.d.ts.map +1 -1
  72. package/dist/agents/FlakyTestHunterAgent.js +159 -4
  73. package/dist/agents/FlakyTestHunterAgent.js.map +1 -1
  74. package/dist/agents/FleetCommanderAgent.d.ts.map +1 -1
  75. package/dist/agents/FleetCommanderAgent.js +2 -2
  76. package/dist/agents/FleetCommanderAgent.js.map +1 -1
  77. package/dist/agents/LearningAgent.d.ts +14 -5
  78. package/dist/agents/LearningAgent.d.ts.map +1 -1
  79. package/dist/agents/LearningAgent.js +36 -16
  80. package/dist/agents/LearningAgent.js.map +1 -1
  81. package/dist/agents/NeuralAgentExtension.d.ts +117 -0
  82. package/dist/agents/NeuralAgentExtension.d.ts.map +1 -0
  83. package/dist/agents/NeuralAgentExtension.js +288 -0
  84. package/dist/agents/NeuralAgentExtension.js.map +1 -0
  85. package/dist/agents/PerformanceTesterAgent.d.ts.map +1 -1
  86. package/dist/agents/PerformanceTesterAgent.js +4 -3
  87. package/dist/agents/PerformanceTesterAgent.js.map +1 -1
  88. package/dist/agents/ProductionIntelligenceAgent.js +7 -7
  89. package/dist/agents/ProductionIntelligenceAgent.js.map +1 -1
  90. package/dist/agents/QualityAnalyzerAgent.d.ts.map +1 -1
  91. package/dist/agents/QualityAnalyzerAgent.js +2 -2
  92. package/dist/agents/QualityAnalyzerAgent.js.map +1 -1
  93. package/dist/agents/QualityGateAgent.js +5 -5
  94. package/dist/agents/QualityGateAgent.js.map +1 -1
  95. package/dist/agents/RegressionRiskAnalyzerAgent.js +7 -7
  96. package/dist/agents/RegressionRiskAnalyzerAgent.js.map +1 -1
  97. package/dist/agents/RequirementsValidatorAgent.d.ts.map +1 -1
  98. package/dist/agents/RequirementsValidatorAgent.js +1 -1
  99. package/dist/agents/RequirementsValidatorAgent.js.map +1 -1
  100. package/dist/agents/SecurityScannerAgent.js +6 -6
  101. package/dist/agents/SecurityScannerAgent.js.map +1 -1
  102. package/dist/agents/TestExecutorAgent.d.ts.map +1 -1
  103. package/dist/agents/TestExecutorAgent.js +1 -3
  104. package/dist/agents/TestExecutorAgent.js.map +1 -1
  105. package/dist/agents/TestGeneratorAgent.d.ts +15 -4
  106. package/dist/agents/TestGeneratorAgent.d.ts.map +1 -1
  107. package/dist/agents/TestGeneratorAgent.js +165 -43
  108. package/dist/agents/TestGeneratorAgent.js.map +1 -1
  109. package/dist/agents/mixins/NeuralCapableMixin.d.ts +130 -0
  110. package/dist/agents/mixins/NeuralCapableMixin.d.ts.map +1 -0
  111. package/dist/agents/mixins/NeuralCapableMixin.js +358 -0
  112. package/dist/agents/mixins/NeuralCapableMixin.js.map +1 -0
  113. package/dist/agents/mixins/QUICCapableMixin.d.ts +34 -0
  114. package/dist/agents/mixins/QUICCapableMixin.d.ts.map +1 -0
  115. package/dist/agents/mixins/QUICCapableMixin.js +346 -0
  116. package/dist/agents/mixins/QUICCapableMixin.js.map +1 -0
  117. package/dist/cli/commands/agent/index.d.ts +5 -0
  118. package/dist/cli/commands/agent/index.d.ts.map +1 -1
  119. package/dist/cli/commands/agent/index.js +11 -6
  120. package/dist/cli/commands/agent/index.js.map +1 -1
  121. package/dist/cli/commands/agent/kill.d.ts +13 -0
  122. package/dist/cli/commands/agent/kill.d.ts.map +1 -0
  123. package/dist/cli/commands/agent/kill.js +65 -0
  124. package/dist/cli/commands/agent/kill.js.map +1 -0
  125. package/dist/cli/commands/agent/list.d.ts +19 -0
  126. package/dist/cli/commands/agent/list.d.ts.map +1 -0
  127. package/dist/cli/commands/agent/list.js +92 -0
  128. package/dist/cli/commands/agent/list.js.map +1 -0
  129. package/dist/cli/commands/agent/logs.d.ts +14 -0
  130. package/dist/cli/commands/agent/logs.d.ts.map +1 -0
  131. package/dist/cli/commands/agent/logs.js +77 -0
  132. package/dist/cli/commands/agent/logs.js.map +1 -0
  133. package/dist/cli/commands/agent/metrics.d.ts +21 -0
  134. package/dist/cli/commands/agent/metrics.d.ts.map +1 -0
  135. package/dist/cli/commands/agent/metrics.js +87 -0
  136. package/dist/cli/commands/agent/metrics.js.map +1 -0
  137. package/dist/cli/commands/agent/spawn.d.ts +28 -0
  138. package/dist/cli/commands/agent/spawn.d.ts.map +1 -0
  139. package/dist/cli/commands/agent/spawn.js +83 -0
  140. package/dist/cli/commands/agent/spawn.js.map +1 -0
  141. package/dist/cli/commands/init.d.ts +24 -0
  142. package/dist/cli/commands/init.d.ts.map +1 -1
  143. package/dist/cli/commands/init.js +475 -7
  144. package/dist/cli/commands/init.js.map +1 -1
  145. package/dist/cli/commands/skills/index.d.ts +51 -0
  146. package/dist/cli/commands/skills/index.d.ts.map +1 -0
  147. package/dist/cli/commands/skills/index.js +364 -0
  148. package/dist/cli/commands/skills/index.js.map +1 -0
  149. package/dist/cli/index.js +92 -1
  150. package/dist/cli/index.js.map +1 -1
  151. package/dist/core/EventBus.d.ts +38 -0
  152. package/dist/core/EventBus.d.ts.map +1 -1
  153. package/dist/core/EventBus.js +176 -31
  154. package/dist/core/EventBus.js.map +1 -1
  155. package/dist/core/FleetManager.d.ts +35 -1
  156. package/dist/core/FleetManager.d.ts.map +1 -1
  157. package/dist/core/FleetManager.js +121 -45
  158. package/dist/core/FleetManager.js.map +1 -1
  159. package/dist/core/MemoryManager.d.ts +19 -1
  160. package/dist/core/MemoryManager.d.ts.map +1 -1
  161. package/dist/core/MemoryManager.js +25 -1
  162. package/dist/core/MemoryManager.js.map +1 -1
  163. package/dist/core/embeddings/EmbeddingCache.d.ts +134 -0
  164. package/dist/core/embeddings/EmbeddingCache.d.ts.map +1 -0
  165. package/dist/core/embeddings/EmbeddingCache.js +239 -0
  166. package/dist/core/embeddings/EmbeddingCache.js.map +1 -0
  167. package/dist/core/embeddings/EmbeddingGenerator.d.ts +224 -0
  168. package/dist/core/embeddings/EmbeddingGenerator.d.ts.map +1 -0
  169. package/dist/core/embeddings/EmbeddingGenerator.js +459 -0
  170. package/dist/core/embeddings/EmbeddingGenerator.js.map +1 -0
  171. package/dist/core/embeddings/index.d.ts +15 -0
  172. package/dist/core/embeddings/index.d.ts.map +1 -0
  173. package/dist/core/embeddings/index.js +22 -0
  174. package/dist/core/embeddings/index.js.map +1 -0
  175. package/dist/core/memory/AgentDBIntegration.d.ts +35 -0
  176. package/dist/core/memory/AgentDBIntegration.d.ts.map +1 -0
  177. package/dist/core/memory/AgentDBIntegration.js +75 -0
  178. package/dist/core/memory/AgentDBIntegration.js.map +1 -0
  179. package/dist/core/memory/AgentDBManager.d.ts +200 -0
  180. package/dist/core/memory/AgentDBManager.d.ts.map +1 -0
  181. package/dist/core/memory/AgentDBManager.js +263 -0
  182. package/dist/core/memory/AgentDBManager.js.map +1 -0
  183. package/dist/core/memory/AgentDBService.d.ts +160 -0
  184. package/dist/core/memory/AgentDBService.d.ts.map +1 -0
  185. package/dist/core/memory/AgentDBService.js +450 -0
  186. package/dist/core/memory/AgentDBService.js.map +1 -0
  187. package/dist/core/memory/RealAgentDBAdapter.d.ts +51 -0
  188. package/dist/core/memory/RealAgentDBAdapter.d.ts.map +1 -0
  189. package/dist/core/memory/RealAgentDBAdapter.js +230 -0
  190. package/dist/core/memory/RealAgentDBAdapter.js.map +1 -0
  191. package/dist/core/memory/ReasoningBankAdapter.d.ts +58 -0
  192. package/dist/core/memory/ReasoningBankAdapter.d.ts.map +1 -0
  193. package/dist/core/memory/ReasoningBankAdapter.js +80 -0
  194. package/dist/core/memory/ReasoningBankAdapter.js.map +1 -0
  195. package/dist/core/memory/SwarmMemoryManager.d.ts +75 -3
  196. package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
  197. package/dist/core/memory/SwarmMemoryManager.js +236 -52
  198. package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
  199. package/dist/core/memory/index.d.ts +4 -0
  200. package/dist/core/memory/index.d.ts.map +1 -1
  201. package/dist/core/memory/index.js +9 -1
  202. package/dist/core/memory/index.js.map +1 -1
  203. package/dist/core/neural/NeuralTrainer.d.ts +137 -0
  204. package/dist/core/neural/NeuralTrainer.d.ts.map +1 -0
  205. package/dist/core/neural/NeuralTrainer.js +543 -0
  206. package/dist/core/neural/NeuralTrainer.js.map +1 -0
  207. package/dist/core/neural/index.d.ts +8 -0
  208. package/dist/core/neural/index.d.ts.map +1 -0
  209. package/dist/core/neural/index.js +24 -0
  210. package/dist/core/neural/index.js.map +1 -0
  211. package/dist/core/neural/types.d.ts +216 -0
  212. package/dist/core/neural/types.d.ts.map +1 -0
  213. package/dist/core/neural/types.js +8 -0
  214. package/dist/core/neural/types.js.map +1 -0
  215. package/dist/core/security/CertificateValidator.d.ts +130 -0
  216. package/dist/core/security/CertificateValidator.d.ts.map +1 -0
  217. package/dist/core/security/CertificateValidator.js +376 -0
  218. package/dist/core/security/CertificateValidator.js.map +1 -0
  219. package/dist/core/transport/QUICTransport.d.ts +62 -0
  220. package/dist/core/transport/QUICTransport.d.ts.map +1 -0
  221. package/dist/core/transport/QUICTransport.js +381 -0
  222. package/dist/core/transport/QUICTransport.js.map +1 -0
  223. package/dist/core/transport/SecureQUICTransport.d.ts +71 -0
  224. package/dist/core/transport/SecureQUICTransport.d.ts.map +1 -0
  225. package/dist/core/transport/SecureQUICTransport.js +253 -0
  226. package/dist/core/transport/SecureQUICTransport.js.map +1 -0
  227. package/dist/learning/AdvancedFeatureExtractor.d.ts +123 -0
  228. package/dist/learning/AdvancedFeatureExtractor.d.ts.map +1 -0
  229. package/dist/learning/AdvancedFeatureExtractor.js +423 -0
  230. package/dist/learning/AdvancedFeatureExtractor.js.map +1 -0
  231. package/dist/learning/FlakyPredictionModel.d.ts +11 -1
  232. package/dist/learning/FlakyPredictionModel.d.ts.map +1 -1
  233. package/dist/learning/FlakyPredictionModel.js +82 -35
  234. package/dist/learning/FlakyPredictionModel.js.map +1 -1
  235. package/dist/learning/FlakyTestDetector.d.ts +9 -0
  236. package/dist/learning/FlakyTestDetector.d.ts.map +1 -1
  237. package/dist/learning/FlakyTestDetector.js +28 -6
  238. package/dist/learning/FlakyTestDetector.js.map +1 -1
  239. package/dist/learning/ImprovementLoop.d.ts +16 -2
  240. package/dist/learning/ImprovementLoop.d.ts.map +1 -1
  241. package/dist/learning/ImprovementLoop.js +67 -8
  242. package/dist/learning/ImprovementLoop.js.map +1 -1
  243. package/dist/learning/ImprovementWorker.d.ts +83 -0
  244. package/dist/learning/ImprovementWorker.d.ts.map +1 -0
  245. package/dist/learning/ImprovementWorker.js +164 -0
  246. package/dist/learning/ImprovementWorker.js.map +1 -0
  247. package/dist/learning/NeuralPatternMatcher.d.ts +184 -0
  248. package/dist/learning/NeuralPatternMatcher.d.ts.map +1 -0
  249. package/dist/learning/NeuralPatternMatcher.js +702 -0
  250. package/dist/learning/NeuralPatternMatcher.js.map +1 -0
  251. package/dist/learning/NeuralTrainer.d.ts +209 -0
  252. package/dist/learning/NeuralTrainer.d.ts.map +1 -0
  253. package/dist/learning/NeuralTrainer.js +478 -0
  254. package/dist/learning/NeuralTrainer.js.map +1 -0
  255. package/dist/learning/index.d.ts +13 -7
  256. package/dist/learning/index.d.ts.map +1 -1
  257. package/dist/learning/index.js +27 -11
  258. package/dist/learning/index.js.map +1 -1
  259. package/dist/learning/types.d.ts +1 -0
  260. package/dist/learning/types.d.ts.map +1 -1
  261. package/dist/learning/types.js +16 -0
  262. package/dist/learning/types.js.map +1 -1
  263. package/dist/mcp/MCPToolRegistry.d.ts +34 -0
  264. package/dist/mcp/MCPToolRegistry.d.ts.map +1 -0
  265. package/dist/mcp/MCPToolRegistry.js +48 -0
  266. package/dist/mcp/MCPToolRegistry.js.map +1 -0
  267. package/dist/mcp/server.d.ts +4 -4
  268. package/dist/mcp/services/AgentRegistry.d.ts.map +1 -1
  269. package/dist/mcp/services/AgentRegistry.js +7 -1
  270. package/dist/mcp/services/AgentRegistry.js.map +1 -1
  271. package/dist/transport/QUICTransport.d.ts +340 -0
  272. package/dist/transport/QUICTransport.d.ts.map +1 -0
  273. package/dist/transport/QUICTransport.js +814 -0
  274. package/dist/transport/QUICTransport.js.map +1 -0
  275. package/dist/transport/UDPTransport.d.ts +348 -0
  276. package/dist/transport/UDPTransport.d.ts.map +1 -0
  277. package/dist/transport/UDPTransport.js +820 -0
  278. package/dist/transport/UDPTransport.js.map +1 -0
  279. package/dist/types/errors.d.ts +1 -1
  280. package/dist/types/index.d.ts +37 -0
  281. package/dist/types/index.d.ts.map +1 -1
  282. package/dist/types/index.js +2 -0
  283. package/dist/types/index.js.map +1 -1
  284. package/dist/types/quic.d.ts +339 -0
  285. package/dist/types/quic.d.ts.map +1 -0
  286. package/dist/types/quic.js +48 -0
  287. package/dist/types/quic.js.map +1 -0
  288. package/dist/utils/Config.js +1 -1
  289. package/dist/utils/Config.js.map +1 -1
  290. package/dist/utils/Database.d.ts +14 -0
  291. package/dist/utils/Database.d.ts.map +1 -1
  292. package/dist/utils/Database.js +51 -4
  293. package/dist/utils/Database.js.map +1 -1
  294. package/dist/utils/Logger.d.ts.map +1 -1
  295. package/dist/utils/Logger.js +111 -26
  296. package/dist/utils/Logger.js.map +1 -1
  297. package/package.json +30 -7
@@ -0,0 +1,73 @@
1
+ ---
2
+ name: goal-planner
3
+ description: "Goal-Oriented Action Planning (GOAP) specialist that dynamically creates intelligent plans to achieve complex objectives. Uses gaming AI techniques to discover novel solutions by combining actions in creative ways. Excels at adaptive replanning, multi-step reasoning, and finding optimal paths through complex state spaces."
4
+ color: purple
5
+ ---
6
+
7
+ You are a Goal-Oriented Action Planning (GOAP) specialist, an advanced AI planner that uses intelligent algorithms to dynamically create optimal action sequences for achieving complex objectives. Your expertise combines gaming AI techniques with practical software engineering to discover novel solutions through creative action composition.
8
+
9
+ Your core capabilities:
10
+ - **Dynamic Planning**: Use A* search algorithms to find optimal paths through state spaces
11
+ - **Precondition Analysis**: Evaluate action requirements and dependencies
12
+ - **Effect Prediction**: Model how actions change world state
13
+ - **Adaptive Replanning**: Adjust plans based on execution results and changing conditions
14
+ - **Goal Decomposition**: Break complex objectives into achievable sub-goals
15
+ - **Cost Optimization**: Find the most efficient path considering action costs
16
+ - **Novel Solution Discovery**: Combine known actions in creative ways
17
+ - **Mixed Execution**: Blend LLM-based reasoning with deterministic code actions
18
+ - **Tool Group Management**: Match actions to available tools and capabilities
19
+ - **Domain Modeling**: Work with strongly-typed state representations
20
+ - **Continuous Learning**: Update planning strategies based on execution feedback
21
+
22
+ Your planning methodology follows the GOAP algorithm:
23
+
24
+ 1. **State Assessment**:
25
+ - Analyze current world state (what is true now)
26
+ - Define goal state (what should be true)
27
+ - Identify the gap between current and goal states
28
+
29
+ 2. **Action Analysis**:
30
+ - Inventory available actions with their preconditions and effects
31
+ - Determine which actions are currently applicable
32
+ - Calculate action costs and priorities
33
+
34
+ 3. **Plan Generation**:
35
+ - Use A* pathfinding to search through possible action sequences
36
+ - Evaluate paths based on cost and heuristic distance to goal
37
+ - Generate optimal plan that transforms current state to goal state
38
+
39
+ 4. **Execution Monitoring** (OODA Loop):
40
+ - **Observe**: Monitor current state and execution progress
41
+ - **Orient**: Analyze changes and deviations from expected state
42
+ - **Decide**: Determine if replanning is needed
43
+ - **Act**: Execute next action or trigger replanning
44
+
45
+ 5. **Dynamic Replanning**:
46
+ - Detect when actions fail or produce unexpected results
47
+ - Recalculate optimal path from new current state
48
+ - Adapt to changing conditions and new information
49
+
50
+ ## MCP Integration Examples
51
+
52
+ ```javascript
53
+ // Orchestrate complex goal achievement
54
+ mcp__claude-flow__task_orchestrate {
55
+ task: "achieve_production_deployment",
56
+ strategy: "adaptive",
57
+ priority: "high"
58
+ }
59
+
60
+ // Coordinate with swarm for parallel planning
61
+ mcp__claude-flow__swarm_init {
62
+ topology: "hierarchical",
63
+ maxAgents: 5
64
+ }
65
+
66
+ // Store successful plans for reuse
67
+ mcp__claude-flow__memory_usage {
68
+ action: "store",
69
+ namespace: "goap-plans",
70
+ key: "deployment_plan_v1",
71
+ value: JSON.stringify(successful_plan)
72
+ }
73
+ ```
@@ -9,32 +9,29 @@
9
9
  },
10
10
  "permissions": {
11
11
  "allow": [
12
- "Bash(npx claude-flow *)",
12
+ "Bash(npx claude-flow:*)",
13
13
  "Bash(npm run lint)",
14
14
  "Bash(npm run test:*)",
15
- "Bash(npm test *)",
15
+ "Bash(npm test:*)",
16
16
  "Bash(git status)",
17
- "Bash(git diff *)",
18
- "Bash(git log *)",
19
- "Bash(git add *)",
20
- "Bash(git commit *)",
17
+ "Bash(git diff:*)",
18
+ "Bash(git log:*)",
19
+ "Bash(git add:*)",
20
+ "Bash(git commit:*)",
21
21
  "Bash(git push)",
22
- "Bash(git config *)",
23
- "Bash(git tag *)",
24
- "Bash(git branch *)",
25
- "Bash(git checkout *)",
26
- "Bash(git stash *)",
27
- "Bash(jq *)",
28
- "Bash(node *)",
29
- "Bash(which *)",
22
+ "Bash(git config:*)",
23
+ "Bash(git tag:*)",
24
+ "Bash(git branch:*)",
25
+ "Bash(git checkout:*)",
26
+ "Bash(git stash:*)",
27
+ "Bash(jq:*)",
28
+ "Bash(node:*)",
29
+ "Bash(which:*)",
30
30
  "Bash(pwd)",
31
- "Bash(ls *)"
31
+ "Bash(ls:*)"
32
32
  ],
33
33
  "deny": [
34
- "Bash(rm -rf /)",
35
- "Bash(curl * | bash)",
36
- "Bash(wget * | sh)",
37
- "Bash(eval *)"
34
+ "Bash(rm -rf /)"
38
35
  ]
39
36
  },
40
37
  "hooks": {
@@ -110,5 +107,9 @@
110
107
  ]
111
108
  },
112
109
  "includeCoAuthoredBy": true,
113
- "enabledMcpjsonServers": ["claude-flow", "ruv-swarm"]
110
+ "enabledMcpjsonServers": ["claude-flow", "ruv-swarm"],
111
+ "statusLine": {
112
+ "type": "command",
113
+ "command": ".claude/statusline-command.sh"
114
+ }
114
115
  }
@@ -0,0 +1,124 @@
1
+ # Claude Skills Collection
2
+
3
+ Personal skill library for Dragan Spiridonov - Agentic Quality Engineer & Founder of Quantum Quality Engineering.
4
+
5
+ ## Available Skills
6
+
7
+ ### Core Quality Skills
8
+ - **[holistic-testing-pact](./holistic-testing-pact/)** - Evolved Holistic Testing Model with PACT principles (Proactive, Autonomous, Collaborative, Targeted)
9
+ - **[context-driven-testing](./context-driven-testing/)** - Context-driven philosophy and Rapid Software Testing techniques
10
+ - **[agentic-quality-engineering](./agentic-quality-engineering/)** - AI agents as quality work force multipliers
11
+ - **[exploratory-testing-advanced](./exploratory-testing-advanced/)** - Deep dive into RST heuristics and session-based testing
12
+ - **[risk-based-testing](./risk-based-testing/)** - Risk assessment frameworks and prioritization
13
+
14
+ ### Development Practices
15
+ - **[tdd-london-chicago](./tdd-london-chicago/)** - Both schools of TDD with examples and guidance
16
+ - **[xp-practices](./xp-practices/)** - Pair/ensemble programming patterns and XP methodologies
17
+ - **[refactoring-patterns](./refactoring-patterns/)** - Safe refactoring techniques and code improvement patterns
18
+
19
+ ### Testing Patterns
20
+ - **[api-testing-patterns](./api-testing-patterns/)** - REST, GraphQL, contract testing, and integration approaches
21
+ - **[performance-testing](./performance-testing/)** - Load, stress, soak testing strategies and optimization
22
+ - **[security-testing](./security-testing/)** - OWASP Top 10, vulnerability scanning, and secure coding
23
+ - **[test-automation-strategy](./test-automation-strategy/)** - When/how to automate, avoiding anti-patterns
24
+
25
+ ### Communication & Process
26
+ - **[technical-writing](./technical-writing/)** - Clear, engaging technical content for practitioners
27
+ - **[bug-reporting-excellence](./bug-reporting-excellence/)** - Writing actionable, clear bug reports
28
+ - **[code-review-quality](./code-review-quality/)** - Effective code reviews that teach and improve
29
+
30
+ ### Professional Skills
31
+ - **[consultancy-practices](./consultancy-practices/)** - Assessment, transformation, and advisory work
32
+ - **[quality-metrics](./quality-metrics/)** - Meaningful metrics vs. vanity metrics
33
+
34
+ ## How to Use
35
+
36
+ Each skill contains a `SKILL.md` file with:
37
+ - Core principles and philosophy
38
+ - Practical techniques and examples
39
+ - Common pitfalls and anti-patterns
40
+ - Context-appropriate guidance
41
+ - Real-world examples from production
42
+
43
+ ## Philosophy
44
+
45
+ All skills reflect these values:
46
+ - **Context over dogma** - Best practices are contextual, not universal
47
+ - **Practice over theory** - Based on 12+ years in production, not just study
48
+ - **Value over compliance** - Focus on customer value, not process adherence
49
+ - **Pragmatism over purity** - Blend approaches as needed for your context
50
+ - **Quality built-in** - Prevention over detection, shift-left thinking
51
+
52
+ ## Skill Categories
53
+
54
+ ### For Quality Engineers
55
+ Start with: holistic-testing-pact, context-driven-testing, exploratory-testing-advanced, risk-based-testing
56
+
57
+ ### For Developers
58
+ Start with: tdd-london-chicago, refactoring-patterns, code-review-quality
59
+
60
+ ### For Team Leads
61
+ Start with: quality-metrics, consultancy-practices, xp-practices
62
+
63
+ ### For Everyone
64
+ Start with: technical-writing, bug-reporting-excellence
65
+
66
+ ## Integration with Tools
67
+
68
+ These skills work well with:
69
+ - **Claude Code** - Copy to project `.claude/` directory
70
+ - **IDE Plugins** - Reference during development
71
+ - **CI/CD Pipelines** - Embed principles in automation
72
+ - **Team Wikis** - Share as team knowledge base
73
+
74
+ ## About
75
+
76
+ Created by Dragan Spiridonov (profa):
77
+ - Founder, Quantum Quality Engineering
78
+ - Member, Global Agentics Foundation
79
+ - Establishing Serbian Agentic Foundation Chapter
80
+ - 25+ years IT experience
81
+ - 8 years leading QA/QE at Alchemy
82
+ - 12+ years implementing quality practices in production
83
+
84
+ ## Current Work
85
+
86
+ Building the Serbian Agentic Foundation community in partnership with StartIt centers across Serbia, starting with Novi Sad in October 2025.
87
+
88
+ ## Skill Development
89
+
90
+ ### Recently Added
91
+ - api-testing-patterns
92
+ - quality-metrics
93
+ - consultancy-practices
94
+ - performance-testing
95
+ - security-testing
96
+ - bug-reporting-excellence
97
+ - refactoring-patterns
98
+ - code-review-quality
99
+
100
+ ### Future Considerations
101
+ - chaos-engineering
102
+ - observability-practices
103
+ - incident-management
104
+ - technical-leadership
105
+ - team-building
106
+ - public-speaking
107
+
108
+ ## Contributing
109
+
110
+ These skills evolve based on:
111
+ - Real production experience
112
+ - Community feedback
113
+ - New techniques and tools
114
+ - Lessons learned from failures
115
+
116
+ Feedback welcome through discussions and community channels.
117
+
118
+ ## License
119
+
120
+ These skills document proven practices and methodologies. Use freely with attribution.
121
+
122
+ ---
123
+
124
+ *These skills are living documents that evolve with practice and community input. Last updated: October 2025*