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,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
|
+
```
|
package/.claude/settings.json
CHANGED
|
@@ -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*
|