agentic-qe 3.4.1 → 3.4.2
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/skills/.validation/README.md +111 -0
- package/.claude/skills/.validation/examples/chaos-engineering-output.example.json +530 -0
- package/.claude/skills/.validation/examples/performance-testing-output.example.json +252 -0
- package/.claude/skills/.validation/examples/security-testing-output.example.json +413 -0
- package/.claude/skills/.validation/examples/testability-scoring-output.example.json +350 -0
- package/.claude/skills/.validation/schemas/skill-eval.schema.json +452 -0
- package/.claude/skills/.validation/schemas/skill-frontmatter.schema.json +341 -0
- package/.claude/skills/.validation/schemas/skill-output-meta.schema.json +199 -0
- package/.claude/skills/.validation/schemas/skill-output.template.json +610 -0
- package/.claude/skills/.validation/skill-validation-mcp-integration.md +250 -0
- package/.claude/skills/.validation/templates/eval.template.yaml +366 -0
- package/.claude/skills/.validation/templates/schemas/output.json +145 -0
- package/.claude/skills/.validation/templates/security-testing-eval.template.yaml +725 -0
- package/.claude/skills/.validation/templates/skill-frontmatter.example.yaml +225 -0
- package/.claude/skills/.validation/templates/validate.template.sh +1060 -0
- package/.claude/skills/.validation/templates/validator-lib.sh +1031 -0
- package/.claude/skills/.validation/test-data/invalid-output.json +5 -0
- package/.claude/skills/.validation/test-data/minimal-output.json +9 -0
- package/.claude/skills/.validation/test-data/sample-output.json +73 -0
- package/.claude/skills/TRUST-TIERS.md +158 -0
- package/.claude/skills/a11y-ally/SKILL.md +1664 -1658
- package/.claude/skills/a11y-ally/evals/a11y-ally.yaml +376 -0
- package/.claude/skills/a11y-ally/schemas/output.json +549 -0
- package/.claude/skills/a11y-ally/scripts/validate.sh +690 -0
- package/.claude/skills/accessibility-testing/SKILL.md +8 -1
- package/.claude/skills/accessibility-testing/evals/accessibility-testing.yaml +719 -0
- package/.claude/skills/accessibility-testing/schemas/output.json +776 -0
- package/.claude/skills/accessibility-testing/scripts/validate.sh +943 -0
- package/.claude/skills/accessibility-testing/test-data/sample-output.json +191 -0
- package/.claude/skills/agentic-quality-engineering/SKILL.md +4 -0
- package/.claude/skills/agentic-quality-engineering/schemas/output.json +577 -0
- package/.claude/skills/api-testing-patterns/SKILL.md +5 -0
- package/.claude/skills/api-testing-patterns/evals/api-testing-patterns.yaml +696 -0
- package/.claude/skills/api-testing-patterns/schemas/output.json +845 -0
- package/.claude/skills/api-testing-patterns/scripts/validate.sh +931 -0
- package/.claude/skills/aqe-v2-v3-migration/schemas/output.json +513 -0
- package/.claude/skills/aqe-v2-v3-migration/skill.md +4 -0
- package/.claude/skills/brutal-honesty-review/SKILL.md +5 -0
- package/.claude/skills/brutal-honesty-review/schemas/output.json +291 -0
- package/.claude/skills/brutal-honesty-review/scripts/validate.sh +130 -0
- package/.claude/skills/bug-reporting-excellence/SKILL.md +5 -0
- package/.claude/skills/bug-reporting-excellence/schemas/output.json +288 -0
- package/.claude/skills/bug-reporting-excellence/scripts/validate.sh +108 -0
- package/.claude/skills/chaos-engineering-resilience/SKILL.md +5 -0
- package/.claude/skills/chaos-engineering-resilience/evals/chaos-engineering-resilience.yaml +761 -0
- package/.claude/skills/chaos-engineering-resilience/schemas/output.json +1205 -0
- package/.claude/skills/chaos-engineering-resilience/scripts/validate.sh +1107 -0
- package/.claude/skills/cicd-pipeline-qe-orchestrator/SKILL.md +6 -0
- package/.claude/skills/cicd-pipeline-qe-orchestrator/evals/cicd-pipeline-qe-orchestrator.yaml +157 -0
- package/.claude/skills/cicd-pipeline-qe-orchestrator/schemas/output.json +542 -0
- package/.claude/skills/cicd-pipeline-qe-orchestrator/scripts/validate.sh +310 -0
- package/.claude/skills/code-review-quality/SKILL.md +5 -0
- package/.claude/skills/code-review-quality/schemas/output.json +264 -0
- package/.claude/skills/code-review-quality/scripts/validate.sh +113 -0
- package/.claude/skills/compatibility-testing/evals/compatibility-testing.yaml +410 -0
- package/.claude/skills/compatibility-testing/schemas/output.json +551 -0
- package/.claude/skills/compatibility-testing/scripts/validate.sh +605 -0
- package/.claude/skills/compliance-testing/SKILL.md +7 -0
- package/.claude/skills/compliance-testing/evals/compliance-testing.yaml +1107 -0
- package/.claude/skills/compliance-testing/schemas/output.json +845 -0
- package/.claude/skills/compliance-testing/scripts/validate.sh +888 -0
- package/.claude/skills/consultancy-practices/SKILL.md +4 -0
- package/.claude/skills/consultancy-practices/schemas/output.json +282 -0
- package/.claude/skills/context-driven-testing/SKILL.md +3 -0
- package/.claude/skills/contract-testing/SKILL.md +5 -0
- package/.claude/skills/contract-testing/evals/contract-testing.yaml +748 -0
- package/.claude/skills/contract-testing/schemas/output.json +638 -0
- package/.claude/skills/contract-testing/scripts/validate.sh +1033 -0
- package/.claude/skills/database-testing/SKILL.md +5 -0
- package/.claude/skills/database-testing/evals/database-testing.yaml +968 -0
- package/.claude/skills/database-testing/schemas/output.json +1446 -0
- package/.claude/skills/database-testing/scripts/validate.sh +1099 -0
- package/.claude/skills/exploratory-testing-advanced/SKILL.md +3 -0
- package/.claude/skills/holistic-testing-pact/SKILL.md +3 -0
- package/.claude/skills/localization-testing/SKILL.md +6 -0
- package/.claude/skills/localization-testing/evals/localization-testing.yaml +544 -0
- package/.claude/skills/localization-testing/schemas/output.json +325 -0
- package/.claude/skills/localization-testing/scripts/validate.sh +131 -0
- package/.claude/skills/mobile-testing/SKILL.md +6 -0
- package/.claude/skills/mobile-testing/evals/mobile-testing.yaml +537 -0
- package/.claude/skills/mobile-testing/schemas/output.json +318 -0
- package/.claude/skills/mobile-testing/scripts/validate.sh +127 -0
- package/.claude/skills/mutation-testing/SKILL.md +8 -1
- package/.claude/skills/mutation-testing/evals/mutation-testing.yaml +652 -0
- package/.claude/skills/mutation-testing/schemas/output.json +707 -0
- package/.claude/skills/mutation-testing/scripts/validate.sh +992 -0
- package/.claude/skills/mutation-testing/test-data/sample-output.json +295 -0
- package/.claude/skills/n8n-expression-testing/SKILL.md +6 -0
- package/.claude/skills/n8n-expression-testing/evals/n8n-expression-testing.yaml +450 -0
- package/.claude/skills/n8n-expression-testing/schemas/output.json +369 -0
- package/.claude/skills/n8n-expression-testing/scripts/validate.sh +162 -0
- package/.claude/skills/n8n-integration-testing-patterns/SKILL.md +6 -0
- package/.claude/skills/n8n-integration-testing-patterns/evals/n8n-integration-testing-patterns.yaml +522 -0
- package/.claude/skills/n8n-integration-testing-patterns/schemas/output.json +291 -0
- package/.claude/skills/n8n-integration-testing-patterns/scripts/validate.sh +104 -0
- package/.claude/skills/n8n-security-testing/SKILL.md +6 -0
- package/.claude/skills/n8n-security-testing/evals/n8n-security-testing.yaml +493 -0
- package/.claude/skills/n8n-security-testing/schemas/output.json +293 -0
- package/.claude/skills/n8n-security-testing/scripts/validate.sh +120 -0
- package/.claude/skills/n8n-trigger-testing-strategies/SKILL.md +6 -0
- package/.claude/skills/n8n-trigger-testing-strategies/evals/n8n-trigger-testing-strategies.yaml +500 -0
- package/.claude/skills/n8n-trigger-testing-strategies/schemas/output.json +295 -0
- package/.claude/skills/n8n-trigger-testing-strategies/scripts/validate.sh +121 -0
- package/.claude/skills/n8n-workflow-testing-fundamentals/SKILL.md +6 -0
- package/.claude/skills/n8n-workflow-testing-fundamentals/evals/n8n-workflow-testing-fundamentals.yaml +497 -0
- package/.claude/skills/n8n-workflow-testing-fundamentals/schemas/output.json +254 -0
- package/.claude/skills/n8n-workflow-testing-fundamentals/scripts/validate.sh +126 -0
- package/.claude/skills/performance-analysis/SKILL.md +6 -0
- package/.claude/skills/performance-analysis/evals/performance-analysis.yaml +144 -0
- package/.claude/skills/performance-analysis/schemas/output.json +588 -0
- package/.claude/skills/performance-analysis/scripts/validate.sh +63 -0
- package/.claude/skills/performance-testing/SKILL.md +5 -0
- package/.claude/skills/performance-testing/evals/performance-testing.yaml +772 -0
- package/.claude/skills/performance-testing/schemas/output.json +1184 -0
- package/.claude/skills/performance-testing/scripts/validate.sh +1090 -0
- package/.claude/skills/qcsd-ideation-swarm/SKILL.md +1759 -1753
- package/.claude/skills/qcsd-ideation-swarm/evals/qcsd-ideation-swarm.yaml +138 -0
- package/.claude/skills/qcsd-ideation-swarm/schemas/output.json +568 -0
- package/.claude/skills/qcsd-ideation-swarm/scripts/validate.sh +56 -0
- package/.claude/skills/qe-chaos-resilience/SKILL.md +6 -0
- package/.claude/skills/qe-chaos-resilience/evals/qe-chaos-resilience.yaml +443 -0
- package/.claude/skills/qe-chaos-resilience/schemas/output.json +314 -0
- package/.claude/skills/qe-chaos-resilience/scripts/validate.sh +401 -0
- package/.claude/skills/qe-code-intelligence/SKILL.md +6 -0
- package/.claude/skills/qe-code-intelligence/evals/qe-code-intelligence.yaml +459 -0
- package/.claude/skills/qe-code-intelligence/schemas/output.json +315 -0
- package/.claude/skills/qe-code-intelligence/scripts/validate.sh +408 -0
- package/.claude/skills/qe-contract-testing/SKILL.md +6 -0
- package/.claude/skills/qe-contract-testing/evals/qe-contract-testing.yaml +513 -0
- package/.claude/skills/qe-contract-testing/schemas/output.json +295 -0
- package/.claude/skills/qe-contract-testing/scripts/validate.sh +421 -0
- package/.claude/skills/qe-coverage-analysis/SKILL.md +6 -0
- package/.claude/skills/qe-coverage-analysis/evals/qe-coverage-analysis.yaml +494 -0
- package/.claude/skills/qe-coverage-analysis/schemas/output.json +286 -0
- package/.claude/skills/qe-coverage-analysis/scripts/validate.sh +453 -0
- package/.claude/skills/qe-defect-intelligence/SKILL.md +6 -0
- package/.claude/skills/qe-defect-intelligence/evals/qe-defect-intelligence.yaml +511 -0
- package/.claude/skills/qe-defect-intelligence/schemas/output.json +283 -0
- package/.claude/skills/qe-defect-intelligence/scripts/validate.sh +466 -0
- package/.claude/skills/qe-iterative-loop/SKILL.md +445 -440
- package/.claude/skills/qe-iterative-loop/schemas/output.json +264 -0
- package/.claude/skills/qe-iterative-loop/scripts/validate.sh +474 -0
- package/.claude/skills/qe-learning-optimization/SKILL.md +6 -0
- package/.claude/skills/qe-learning-optimization/evals/qe-learning-optimization.yaml +144 -0
- package/.claude/skills/qe-learning-optimization/schemas/output.json +288 -0
- package/.claude/skills/qe-learning-optimization/scripts/validate.sh +56 -0
- package/.claude/skills/qe-quality-assessment/SKILL.md +6 -0
- package/.claude/skills/qe-quality-assessment/evals/qe-quality-assessment.yaml +506 -0
- package/.claude/skills/qe-quality-assessment/schemas/output.json +550 -0
- package/.claude/skills/qe-quality-assessment/scripts/validate.sh +352 -0
- package/.claude/skills/qe-requirements-validation/SKILL.md +6 -0
- package/.claude/skills/qe-requirements-validation/evals/qe-requirements-validation.yaml +598 -0
- package/.claude/skills/qe-requirements-validation/schemas/output.json +587 -0
- package/.claude/skills/qe-requirements-validation/scripts/validate.sh +275 -0
- package/.claude/skills/qe-security-compliance/SKILL.md +6 -0
- package/.claude/skills/qe-security-compliance/evals/qe-security-compliance.yaml +595 -0
- package/.claude/skills/qe-security-compliance/schemas/output.json +498 -0
- package/.claude/skills/qe-security-compliance/scripts/validate.sh +305 -0
- package/.claude/skills/qe-test-execution/SKILL.md +6 -0
- package/.claude/skills/qe-test-execution/evals/qe-test-execution.yaml +607 -0
- package/.claude/skills/qe-test-execution/schemas/output.json +529 -0
- package/.claude/skills/qe-test-execution/scripts/validate.sh +323 -0
- package/.claude/skills/qe-test-generation/SKILL.md +6 -0
- package/.claude/skills/qe-test-generation/evals/qe-test-generation.yaml +148 -0
- package/.claude/skills/qe-test-generation/schemas/output.json +439 -0
- package/.claude/skills/qe-test-generation/scripts/validate.sh +56 -0
- package/.claude/skills/qe-visual-accessibility/SKILL.md +6 -0
- package/.claude/skills/qe-visual-accessibility/evals/qe-visual-accessibility.yaml +142 -0
- package/.claude/skills/qe-visual-accessibility/schemas/output.json +491 -0
- package/.claude/skills/qe-visual-accessibility/scripts/validate.sh +56 -0
- package/.claude/skills/quality-metrics/SKILL.md +6 -0
- package/.claude/skills/quality-metrics/evals/quality-metrics.yaml +494 -0
- package/.claude/skills/quality-metrics/schemas/output.json +403 -0
- package/.claude/skills/quality-metrics/scripts/validate.sh +434 -0
- package/.claude/skills/refactoring-patterns/SKILL.md +5 -0
- package/.claude/skills/refactoring-patterns/schemas/output.json +475 -0
- package/.claude/skills/refactoring-patterns/scripts/validate.sh +241 -0
- package/.claude/skills/regression-testing/SKILL.md +6 -0
- package/.claude/skills/regression-testing/evals/regression-testing.yaml +504 -0
- package/.claude/skills/regression-testing/schemas/output.json +311 -0
- package/.claude/skills/regression-testing/scripts/validate.sh +130 -0
- package/.claude/skills/risk-based-testing/SKILL.md +6 -0
- package/.claude/skills/risk-based-testing/evals/risk-based-testing.yaml +141 -0
- package/.claude/skills/risk-based-testing/schemas/output.json +480 -0
- package/.claude/skills/risk-based-testing/scripts/validate.sh +56 -0
- package/.claude/skills/security-testing/SKILL.md +5 -0
- package/.claude/skills/security-testing/evals/security-testing.yaml +789 -0
- package/.claude/skills/security-testing/schemas/output.json +879 -0
- package/.claude/skills/security-testing/scripts/validate.sh +967 -0
- package/.claude/skills/security-visual-testing/SKILL.md +223 -217
- package/.claude/skills/security-visual-testing/evals/security-visual-testing.yaml +163 -0
- package/.claude/skills/security-visual-testing/schemas/output.json +486 -0
- package/.claude/skills/security-visual-testing/scripts/validate.sh +748 -0
- package/.claude/skills/sherlock-review/SKILL.md +5 -0
- package/.claude/skills/sherlock-review/schemas/output.json +297 -0
- package/.claude/skills/sherlock-review/scripts/validate.sh +115 -0
- package/.claude/skills/shift-left-testing/SKILL.md +6 -0
- package/.claude/skills/shift-left-testing/evals/shift-left-testing.yaml +145 -0
- package/.claude/skills/shift-left-testing/schemas/output.json +459 -0
- package/.claude/skills/shift-left-testing/scripts/validate.sh +56 -0
- package/.claude/skills/shift-right-testing/SKILL.md +6 -0
- package/.claude/skills/shift-right-testing/evals/shift-right-testing.yaml +147 -0
- package/.claude/skills/shift-right-testing/schemas/output.json +418 -0
- package/.claude/skills/shift-right-testing/scripts/validate.sh +56 -0
- package/.claude/skills/six-thinking-hats/SKILL.md +3 -0
- package/.claude/skills/tdd-london-chicago/SKILL.md +5 -0
- package/.claude/skills/tdd-london-chicago/schemas/output.json +444 -0
- package/.claude/skills/tdd-london-chicago/scripts/validate.sh +214 -0
- package/.claude/skills/technical-writing/SKILL.md +4 -0
- package/.claude/skills/technical-writing/schemas/output.json +268 -0
- package/.claude/skills/test-automation-strategy/SKILL.md +6 -0
- package/.claude/skills/test-automation-strategy/evals/test-automation-strategy.yaml +148 -0
- package/.claude/skills/test-automation-strategy/schemas/output.json +444 -0
- package/.claude/skills/test-automation-strategy/scripts/validate.sh +195 -0
- package/.claude/skills/test-data-management/SKILL.md +6 -0
- package/.claude/skills/test-data-management/evals/test-data-management.yaml +504 -0
- package/.claude/skills/test-data-management/schemas/output.json +284 -0
- package/.claude/skills/test-data-management/scripts/validate.sh +137 -0
- package/.claude/skills/test-design-techniques/SKILL.md +6 -0
- package/.claude/skills/test-design-techniques/evals/test-design-techniques.yaml +142 -0
- package/.claude/skills/test-design-techniques/schemas/output.json +295 -0
- package/.claude/skills/test-design-techniques/scripts/validate.sh +91 -0
- package/.claude/skills/test-environment-management/SKILL.md +4 -0
- package/.claude/skills/test-environment-management/schemas/output.json +310 -0
- package/.claude/skills/test-reporting-analytics/SKILL.md +6 -0
- package/.claude/skills/test-reporting-analytics/evals/test-reporting-analytics.yaml +155 -0
- package/.claude/skills/test-reporting-analytics/schemas/output.json +329 -0
- package/.claude/skills/test-reporting-analytics/scripts/validate.sh +77 -0
- package/.claude/skills/testability-scoring/SKILL.md +5 -0
- package/.claude/skills/testability-scoring/evals/testability-scoring.yaml +814 -0
- package/.claude/skills/testability-scoring/schemas/output.json +606 -0
- package/.claude/skills/testability-scoring/scripts/validate.sh +891 -0
- package/.claude/skills/trust-tier-manifest.json +2333 -0
- package/.claude/skills/verification-quality/SKILL.md +6 -0
- package/.claude/skills/verification-quality/evals/verification-quality.yaml +150 -0
- package/.claude/skills/verification-quality/schemas/output.json +432 -0
- package/.claude/skills/verification-quality/scripts/validate.sh +77 -0
- package/.claude/skills/visual-testing-advanced/SKILL.md +6 -0
- package/.claude/skills/visual-testing-advanced/evals/visual-testing-advanced.yaml +154 -0
- package/.claude/skills/visual-testing-advanced/schemas/output.json +294 -0
- package/.claude/skills/visual-testing-advanced/scripts/validate.sh +77 -0
- package/.claude/skills/xp-practices/SKILL.md +3 -0
- package/README.md +39 -2
- package/package.json +4 -1
- package/scripts/run-skill-eval.ts +1097 -0
- package/scripts/test-schema-validation.js +301 -0
- package/scripts/update-skill-manifest.ts +751 -0
- package/scripts/validate-skill-frontmatter.js +141 -0
- package/v3/CHANGELOG.md +21 -0
- package/v3/README.md +43 -3
- package/v3/assets/agents/v3/qe-test-idea-rewriter.md +375 -375
- package/v3/assets/skills/.validation/README.md +111 -0
- package/v3/assets/skills/.validation/examples/chaos-engineering-output.example.json +530 -0
- package/v3/assets/skills/.validation/examples/performance-testing-output.example.json +252 -0
- package/v3/assets/skills/.validation/examples/security-testing-output.example.json +413 -0
- package/v3/assets/skills/.validation/examples/testability-scoring-output.example.json +350 -0
- package/v3/assets/skills/.validation/schemas/skill-eval.schema.json +452 -0
- package/v3/assets/skills/.validation/schemas/skill-frontmatter.schema.json +341 -0
- package/v3/assets/skills/.validation/schemas/skill-output-meta.schema.json +199 -0
- package/v3/assets/skills/.validation/schemas/skill-output.template.json +610 -0
- package/v3/assets/skills/.validation/skill-validation-mcp-integration.md +250 -0
- package/v3/assets/skills/.validation/templates/eval.template.yaml +366 -0
- package/v3/assets/skills/.validation/templates/schemas/output.json +145 -0
- package/v3/assets/skills/.validation/templates/security-testing-eval.template.yaml +725 -0
- package/v3/assets/skills/.validation/templates/skill-frontmatter.example.yaml +225 -0
- package/v3/assets/skills/.validation/templates/validate.template.sh +1060 -0
- package/v3/assets/skills/.validation/templates/validator-lib.sh +1031 -0
- package/v3/assets/skills/.validation/test-data/invalid-output.json +5 -0
- package/v3/assets/skills/.validation/test-data/minimal-output.json +9 -0
- package/v3/assets/skills/.validation/test-data/sample-output.json +73 -0
- package/v3/assets/skills/accessibility-testing/SKILL.md +8 -1
- package/v3/assets/skills/accessibility-testing/evals/accessibility-testing.yaml +719 -0
- package/v3/assets/skills/accessibility-testing/schemas/output.json +776 -0
- package/v3/assets/skills/accessibility-testing/scripts/validate.sh +943 -0
- package/v3/assets/skills/accessibility-testing/test-data/sample-output.json +191 -0
- package/v3/assets/skills/agentic-quality-engineering/SKILL.md +4 -0
- package/v3/assets/skills/agentic-quality-engineering/schemas/output.json +577 -0
- package/v3/assets/skills/api-testing-patterns/SKILL.md +5 -0
- package/v3/assets/skills/api-testing-patterns/evals/api-testing-patterns.yaml +696 -0
- package/v3/assets/skills/api-testing-patterns/schemas/output.json +845 -0
- package/v3/assets/skills/api-testing-patterns/scripts/validate.sh +931 -0
- package/v3/assets/skills/aqe-v2-v3-migration/schemas/output.json +513 -0
- package/v3/assets/skills/aqe-v2-v3-migration/skill.md +20 -16
- package/v3/assets/skills/bug-reporting-excellence/SKILL.md +5 -0
- package/v3/assets/skills/bug-reporting-excellence/schemas/output.json +288 -0
- package/v3/assets/skills/bug-reporting-excellence/scripts/validate.sh +108 -0
- package/v3/assets/skills/chaos-engineering-resilience/SKILL.md +5 -0
- package/v3/assets/skills/chaos-engineering-resilience/evals/chaos-engineering-resilience.yaml +761 -0
- package/v3/assets/skills/chaos-engineering-resilience/schemas/output.json +1205 -0
- package/v3/assets/skills/chaos-engineering-resilience/scripts/validate.sh +1107 -0
- package/v3/assets/skills/code-review-quality/SKILL.md +5 -0
- package/v3/assets/skills/code-review-quality/schemas/output.json +264 -0
- package/v3/assets/skills/code-review-quality/scripts/validate.sh +113 -0
- package/v3/assets/skills/compatibility-testing/evals/compatibility-testing.yaml +410 -0
- package/v3/assets/skills/compatibility-testing/schemas/output.json +551 -0
- package/v3/assets/skills/compatibility-testing/scripts/validate.sh +605 -0
- package/v3/assets/skills/compliance-testing/SKILL.md +7 -0
- package/v3/assets/skills/compliance-testing/evals/compliance-testing.yaml +1107 -0
- package/v3/assets/skills/compliance-testing/schemas/output.json +845 -0
- package/v3/assets/skills/compliance-testing/scripts/validate.sh +888 -0
- package/v3/assets/skills/consultancy-practices/SKILL.md +4 -0
- package/v3/assets/skills/consultancy-practices/schemas/output.json +282 -0
- package/v3/assets/skills/context-driven-testing/SKILL.md +3 -0
- package/v3/assets/skills/contract-testing/SKILL.md +5 -0
- package/v3/assets/skills/contract-testing/evals/contract-testing.yaml +748 -0
- package/v3/assets/skills/contract-testing/schemas/output.json +638 -0
- package/v3/assets/skills/contract-testing/scripts/validate.sh +1033 -0
- package/v3/assets/skills/database-testing/SKILL.md +5 -0
- package/v3/assets/skills/database-testing/evals/database-testing.yaml +968 -0
- package/v3/assets/skills/database-testing/schemas/output.json +1446 -0
- package/v3/assets/skills/database-testing/scripts/validate.sh +1099 -0
- package/v3/assets/skills/exploratory-testing-advanced/SKILL.md +3 -0
- package/v3/assets/skills/holistic-testing-pact/SKILL.md +3 -0
- package/v3/assets/skills/localization-testing/SKILL.md +6 -0
- package/v3/assets/skills/localization-testing/evals/localization-testing.yaml +544 -0
- package/v3/assets/skills/localization-testing/schemas/output.json +325 -0
- package/v3/assets/skills/localization-testing/scripts/validate.sh +131 -0
- package/v3/assets/skills/mobile-testing/SKILL.md +6 -0
- package/v3/assets/skills/mobile-testing/evals/mobile-testing.yaml +537 -0
- package/v3/assets/skills/mobile-testing/schemas/output.json +318 -0
- package/v3/assets/skills/mobile-testing/scripts/validate.sh +127 -0
- package/v3/assets/skills/mutation-testing/SKILL.md +8 -1
- package/v3/assets/skills/mutation-testing/evals/mutation-testing.yaml +652 -0
- package/v3/assets/skills/mutation-testing/schemas/output.json +707 -0
- package/v3/assets/skills/mutation-testing/scripts/validate.sh +992 -0
- package/v3/assets/skills/mutation-testing/test-data/sample-output.json +295 -0
- package/v3/assets/skills/n8n-expression-testing/scripts/validate.sh +162 -0
- package/v3/assets/skills/n8n-integration-testing-patterns/scripts/validate.sh +104 -0
- package/v3/assets/skills/n8n-security-testing/scripts/validate.sh +120 -0
- package/v3/assets/skills/n8n-trigger-testing-strategies/scripts/validate.sh +121 -0
- package/v3/assets/skills/n8n-workflow-testing-fundamentals/scripts/validate.sh +126 -0
- package/v3/assets/skills/performance-testing/SKILL.md +5 -0
- package/v3/assets/skills/performance-testing/evals/performance-testing.yaml +772 -0
- package/v3/assets/skills/performance-testing/schemas/output.json +1184 -0
- package/v3/assets/skills/performance-testing/scripts/validate.sh +1090 -0
- package/v3/assets/skills/qe-chaos-resilience/SKILL.md +6 -0
- package/v3/assets/skills/qe-chaos-resilience/evals/qe-chaos-resilience.yaml +443 -0
- package/v3/assets/skills/qe-chaos-resilience/schemas/output.json +314 -0
- package/v3/assets/skills/qe-chaos-resilience/scripts/validate.sh +401 -0
- package/v3/assets/skills/qe-code-intelligence/SKILL.md +6 -0
- package/v3/assets/skills/qe-code-intelligence/evals/qe-code-intelligence.yaml +459 -0
- package/v3/assets/skills/qe-code-intelligence/schemas/output.json +315 -0
- package/v3/assets/skills/qe-code-intelligence/scripts/validate.sh +408 -0
- package/v3/assets/skills/qe-contract-testing/SKILL.md +6 -0
- package/v3/assets/skills/qe-contract-testing/evals/qe-contract-testing.yaml +513 -0
- package/v3/assets/skills/qe-contract-testing/schemas/output.json +295 -0
- package/v3/assets/skills/qe-contract-testing/scripts/validate.sh +421 -0
- package/v3/assets/skills/qe-coverage-analysis/SKILL.md +6 -0
- package/v3/assets/skills/qe-coverage-analysis/evals/qe-coverage-analysis.yaml +494 -0
- package/v3/assets/skills/qe-coverage-analysis/schemas/output.json +286 -0
- package/v3/assets/skills/qe-coverage-analysis/scripts/validate.sh +453 -0
- package/v3/assets/skills/qe-defect-intelligence/SKILL.md +6 -0
- package/v3/assets/skills/qe-defect-intelligence/evals/qe-defect-intelligence.yaml +511 -0
- package/v3/assets/skills/qe-defect-intelligence/schemas/output.json +283 -0
- package/v3/assets/skills/qe-defect-intelligence/scripts/validate.sh +466 -0
- package/v3/assets/skills/qe-iterative-loop/SKILL.md +445 -443
- package/v3/assets/skills/qe-iterative-loop/schemas/output.json +264 -0
- package/v3/assets/skills/qe-iterative-loop/scripts/validate.sh +474 -0
- package/v3/assets/skills/qe-learning-optimization/SKILL.md +6 -0
- package/v3/assets/skills/qe-learning-optimization/evals/qe-learning-optimization.yaml +144 -0
- package/v3/assets/skills/qe-learning-optimization/schemas/output.json +288 -0
- package/v3/assets/skills/qe-learning-optimization/scripts/validate.sh +56 -0
- package/v3/assets/skills/qe-quality-assessment/SKILL.md +6 -0
- package/v3/assets/skills/qe-quality-assessment/evals/qe-quality-assessment.yaml +506 -0
- package/v3/assets/skills/qe-quality-assessment/schemas/output.json +550 -0
- package/v3/assets/skills/qe-quality-assessment/scripts/validate.sh +352 -0
- package/v3/assets/skills/qe-requirements-validation/SKILL.md +6 -0
- package/v3/assets/skills/qe-requirements-validation/evals/qe-requirements-validation.yaml +598 -0
- package/v3/assets/skills/qe-requirements-validation/schemas/output.json +587 -0
- package/v3/assets/skills/qe-requirements-validation/scripts/validate.sh +275 -0
- package/v3/assets/skills/qe-security-compliance/SKILL.md +6 -0
- package/v3/assets/skills/qe-security-compliance/evals/qe-security-compliance.yaml +595 -0
- package/v3/assets/skills/qe-security-compliance/schemas/output.json +498 -0
- package/v3/assets/skills/qe-security-compliance/scripts/validate.sh +305 -0
- package/v3/assets/skills/qe-test-execution/SKILL.md +6 -0
- package/v3/assets/skills/qe-test-execution/evals/qe-test-execution.yaml +607 -0
- package/v3/assets/skills/qe-test-execution/schemas/output.json +529 -0
- package/v3/assets/skills/qe-test-execution/scripts/validate.sh +323 -0
- package/v3/assets/skills/qe-test-generation/SKILL.md +6 -0
- package/v3/assets/skills/qe-test-generation/evals/qe-test-generation.yaml +148 -0
- package/v3/assets/skills/qe-test-generation/schemas/output.json +439 -0
- package/v3/assets/skills/qe-test-generation/scripts/validate.sh +56 -0
- package/v3/assets/skills/qe-visual-accessibility/SKILL.md +6 -0
- package/v3/assets/skills/qe-visual-accessibility/evals/qe-visual-accessibility.yaml +142 -0
- package/v3/assets/skills/qe-visual-accessibility/schemas/output.json +491 -0
- package/v3/assets/skills/qe-visual-accessibility/scripts/validate.sh +56 -0
- package/v3/assets/skills/quality-metrics/SKILL.md +6 -0
- package/v3/assets/skills/quality-metrics/evals/quality-metrics.yaml +494 -0
- package/v3/assets/skills/quality-metrics/schemas/output.json +403 -0
- package/v3/assets/skills/quality-metrics/scripts/validate.sh +434 -0
- package/v3/assets/skills/refactoring-patterns/SKILL.md +5 -0
- package/v3/assets/skills/refactoring-patterns/schemas/output.json +475 -0
- package/v3/assets/skills/refactoring-patterns/scripts/validate.sh +241 -0
- package/v3/assets/skills/regression-testing/SKILL.md +6 -0
- package/v3/assets/skills/regression-testing/evals/regression-testing.yaml +504 -0
- package/v3/assets/skills/regression-testing/schemas/output.json +311 -0
- package/v3/assets/skills/regression-testing/scripts/validate.sh +130 -0
- package/v3/assets/skills/risk-based-testing/SKILL.md +6 -0
- package/v3/assets/skills/risk-based-testing/evals/risk-based-testing.yaml +141 -0
- package/v3/assets/skills/risk-based-testing/schemas/output.json +480 -0
- package/v3/assets/skills/risk-based-testing/scripts/validate.sh +56 -0
- package/v3/assets/skills/security-testing/SKILL.md +5 -0
- package/v3/assets/skills/security-testing/evals/security-testing.yaml +789 -0
- package/v3/assets/skills/security-testing/schemas/output.json +879 -0
- package/v3/assets/skills/security-testing/scripts/validate.sh +967 -0
- package/v3/assets/skills/shift-left-testing/SKILL.md +6 -0
- package/v3/assets/skills/shift-left-testing/evals/shift-left-testing.yaml +145 -0
- package/v3/assets/skills/shift-left-testing/schemas/output.json +459 -0
- package/v3/assets/skills/shift-left-testing/scripts/validate.sh +56 -0
- package/v3/assets/skills/shift-right-testing/SKILL.md +6 -0
- package/v3/assets/skills/shift-right-testing/evals/shift-right-testing.yaml +147 -0
- package/v3/assets/skills/shift-right-testing/schemas/output.json +418 -0
- package/v3/assets/skills/shift-right-testing/scripts/validate.sh +56 -0
- package/v3/assets/skills/six-thinking-hats/SKILL.md +3 -0
- package/v3/assets/skills/tdd-london-chicago/SKILL.md +5 -0
- package/v3/assets/skills/tdd-london-chicago/schemas/output.json +444 -0
- package/v3/assets/skills/tdd-london-chicago/scripts/validate.sh +214 -0
- package/v3/assets/skills/technical-writing/SKILL.md +4 -0
- package/v3/assets/skills/technical-writing/schemas/output.json +268 -0
- package/v3/assets/skills/test-automation-strategy/SKILL.md +6 -0
- package/v3/assets/skills/test-automation-strategy/evals/test-automation-strategy.yaml +148 -0
- package/v3/assets/skills/test-automation-strategy/schemas/output.json +444 -0
- package/v3/assets/skills/test-automation-strategy/scripts/validate.sh +195 -0
- package/v3/assets/skills/test-data-management/SKILL.md +6 -0
- package/v3/assets/skills/test-data-management/evals/test-data-management.yaml +504 -0
- package/v3/assets/skills/test-data-management/schemas/output.json +284 -0
- package/v3/assets/skills/test-data-management/scripts/validate.sh +137 -0
- package/v3/assets/skills/test-design-techniques/SKILL.md +6 -0
- package/v3/assets/skills/test-design-techniques/evals/test-design-techniques.yaml +142 -0
- package/v3/assets/skills/test-design-techniques/schemas/output.json +295 -0
- package/v3/assets/skills/test-design-techniques/scripts/validate.sh +91 -0
- package/v3/assets/skills/test-environment-management/SKILL.md +4 -0
- package/v3/assets/skills/test-environment-management/schemas/output.json +310 -0
- package/v3/assets/skills/test-reporting-analytics/SKILL.md +6 -0
- package/v3/assets/skills/test-reporting-analytics/evals/test-reporting-analytics.yaml +155 -0
- package/v3/assets/skills/test-reporting-analytics/schemas/output.json +329 -0
- package/v3/assets/skills/test-reporting-analytics/scripts/validate.sh +77 -0
- package/v3/assets/skills/verification-quality/SKILL.md +6 -0
- package/v3/assets/skills/verification-quality/evals/verification-quality.yaml +150 -0
- package/v3/assets/skills/verification-quality/schemas/output.json +432 -0
- package/v3/assets/skills/verification-quality/scripts/validate.sh +77 -0
- package/v3/assets/skills/visual-testing-advanced/SKILL.md +6 -0
- package/v3/assets/skills/visual-testing-advanced/evals/visual-testing-advanced.yaml +154 -0
- package/v3/assets/skills/visual-testing-advanced/schemas/output.json +294 -0
- package/v3/assets/skills/visual-testing-advanced/scripts/validate.sh +77 -0
- package/v3/assets/skills/xp-practices/SKILL.md +3 -0
- package/v3/assets/templates/validation-report.md.hbs +139 -0
- package/v3/assets/templates/validation-summary.json +56 -0
- package/v3/dist/cli/bundle.js +7368 -3418
- package/v3/dist/cli/commands/eval.d.ts +18 -0
- package/v3/dist/cli/commands/eval.d.ts.map +1 -0
- package/v3/dist/cli/commands/eval.js +505 -0
- package/v3/dist/cli/commands/eval.js.map +1 -0
- package/v3/dist/cli/commands/validate-swarm.d.ts +16 -0
- package/v3/dist/cli/commands/validate-swarm.d.ts.map +1 -0
- package/v3/dist/cli/commands/validate-swarm.js +251 -0
- package/v3/dist/cli/commands/validate-swarm.js.map +1 -0
- package/v3/dist/cli/commands/validate.d.ts +14 -0
- package/v3/dist/cli/commands/validate.d.ts.map +1 -0
- package/v3/dist/cli/commands/validate.js +408 -0
- package/v3/dist/cli/commands/validate.js.map +1 -0
- package/v3/dist/cli/index.js +6 -0
- package/v3/dist/cli/index.js.map +1 -1
- package/v3/dist/index.d.ts +2 -0
- package/v3/dist/index.d.ts.map +1 -1
- package/v3/dist/index.js +10 -0
- package/v3/dist/index.js.map +1 -1
- package/v3/dist/init/skills-installer.d.ts +6 -0
- package/v3/dist/init/skills-installer.d.ts.map +1 -1
- package/v3/dist/init/skills-installer.js +48 -0
- package/v3/dist/init/skills-installer.js.map +1 -1
- package/v3/dist/learning/index.d.ts +2 -0
- package/v3/dist/learning/index.d.ts.map +1 -1
- package/v3/dist/learning/index.js +4 -0
- package/v3/dist/learning/index.js.map +1 -1
- package/v3/dist/learning/skill-validation-learner.d.ts +264 -0
- package/v3/dist/learning/skill-validation-learner.d.ts.map +1 -0
- package/v3/dist/learning/skill-validation-learner.js +515 -0
- package/v3/dist/learning/skill-validation-learner.js.map +1 -0
- package/v3/dist/validation/index.d.ts +19 -0
- package/v3/dist/validation/index.d.ts.map +1 -0
- package/v3/dist/validation/index.js +31 -0
- package/v3/dist/validation/index.js.map +1 -0
- package/v3/dist/validation/parallel-eval-runner.d.ts +307 -0
- package/v3/dist/validation/parallel-eval-runner.d.ts.map +1 -0
- package/v3/dist/validation/parallel-eval-runner.js +566 -0
- package/v3/dist/validation/parallel-eval-runner.js.map +1 -0
- package/v3/dist/validation/swarm-skill-validator.d.ts +282 -0
- package/v3/dist/validation/swarm-skill-validator.d.ts.map +1 -0
- package/v3/dist/validation/swarm-skill-validator.js +460 -0
- package/v3/dist/validation/swarm-skill-validator.js.map +1 -0
- package/v3/dist/validation/validation-result-aggregator.d.ts +232 -0
- package/v3/dist/validation/validation-result-aggregator.d.ts.map +1 -0
- package/v3/dist/validation/validation-result-aggregator.js +630 -0
- package/v3/dist/validation/validation-result-aggregator.js.map +1 -0
- package/v3/package.json +1 -1
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
{
|
|
2
|
+
"skillName": "performance-testing",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"timestamp": "2026-02-02T10:30:00Z",
|
|
5
|
+
"status": "success",
|
|
6
|
+
"trustTier": 3,
|
|
7
|
+
"output": {
|
|
8
|
+
"summary": "Load test completed successfully with 100 virtual users over 5 minutes. All SLA thresholds met. Response time p95 of 180ms is well within the 300ms target. Throughput of 850 requests per second demonstrates adequate capacity. Error rate of 0.02% is excellent. No significant bottlenecks detected.",
|
|
9
|
+
"testType": "load",
|
|
10
|
+
"score": {
|
|
11
|
+
"value": 92,
|
|
12
|
+
"max": 100,
|
|
13
|
+
"grade": "A",
|
|
14
|
+
"trend": "stable",
|
|
15
|
+
"healthStatus": "healthy"
|
|
16
|
+
},
|
|
17
|
+
"metrics": {
|
|
18
|
+
"responseTime": {
|
|
19
|
+
"min": 15,
|
|
20
|
+
"max": 450,
|
|
21
|
+
"avg": 95,
|
|
22
|
+
"median": 85,
|
|
23
|
+
"p50": 85,
|
|
24
|
+
"p75": 120,
|
|
25
|
+
"p90": 150,
|
|
26
|
+
"p95": 180,
|
|
27
|
+
"p99": 280,
|
|
28
|
+
"stdDev": 45,
|
|
29
|
+
"unit": "ms"
|
|
30
|
+
},
|
|
31
|
+
"throughput": {
|
|
32
|
+
"requestsPerSecond": 850,
|
|
33
|
+
"peakRequestsPerSecond": 920,
|
|
34
|
+
"totalRequests": 255000,
|
|
35
|
+
"successfulRequests": 254949,
|
|
36
|
+
"failedRequests": 51,
|
|
37
|
+
"transactionsPerSecond": 425,
|
|
38
|
+
"iterationsPerSecond": 85
|
|
39
|
+
},
|
|
40
|
+
"errorRate": {
|
|
41
|
+
"percentage": 0.02,
|
|
42
|
+
"totalErrors": 51,
|
|
43
|
+
"errorsByType": {
|
|
44
|
+
"timeout": 30,
|
|
45
|
+
"5xx": 15,
|
|
46
|
+
"connection": 6
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"concurrency": {
|
|
50
|
+
"virtualUsers": 100,
|
|
51
|
+
"peakConcurrentUsers": 100,
|
|
52
|
+
"avgConcurrentUsers": 98,
|
|
53
|
+
"rampUpTime": 60,
|
|
54
|
+
"steadyStateTime": 180,
|
|
55
|
+
"rampDownTime": 60
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"slaCompliance": {
|
|
59
|
+
"overallCompliant": true,
|
|
60
|
+
"compliancePercentage": 100,
|
|
61
|
+
"thresholds": [
|
|
62
|
+
{
|
|
63
|
+
"metric": "p95_response_time",
|
|
64
|
+
"operator": "<",
|
|
65
|
+
"threshold": 300,
|
|
66
|
+
"actual": 180,
|
|
67
|
+
"passed": true,
|
|
68
|
+
"unit": "ms",
|
|
69
|
+
"description": "95th percentile response time must be under 300ms"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"metric": "error_rate",
|
|
73
|
+
"operator": "<",
|
|
74
|
+
"threshold": 1,
|
|
75
|
+
"actual": 0.02,
|
|
76
|
+
"passed": true,
|
|
77
|
+
"unit": "%",
|
|
78
|
+
"description": "Error rate must be below 1%"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"metric": "throughput",
|
|
82
|
+
"operator": ">=",
|
|
83
|
+
"threshold": 500,
|
|
84
|
+
"actual": 850,
|
|
85
|
+
"passed": true,
|
|
86
|
+
"unit": "req/s",
|
|
87
|
+
"description": "Throughput must be at least 500 requests per second"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"violations": []
|
|
91
|
+
},
|
|
92
|
+
"bottlenecks": [],
|
|
93
|
+
"findings": [
|
|
94
|
+
{
|
|
95
|
+
"id": "PERF-001",
|
|
96
|
+
"title": "Excellent response time performance",
|
|
97
|
+
"description": "Response time percentiles are well within acceptable ranges. p95 of 180ms provides 40% headroom below the 300ms SLA threshold.",
|
|
98
|
+
"severity": "info",
|
|
99
|
+
"category": "latency",
|
|
100
|
+
"metric": "p95_response_time",
|
|
101
|
+
"value": 180,
|
|
102
|
+
"threshold": 300,
|
|
103
|
+
"confidence": 0.95
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"id": "PERF-002",
|
|
107
|
+
"title": "Strong throughput capacity",
|
|
108
|
+
"description": "System handled 850 requests per second with minimal degradation. Peak throughput of 920 req/s indicates additional headroom.",
|
|
109
|
+
"severity": "info",
|
|
110
|
+
"category": "throughput",
|
|
111
|
+
"metric": "requests_per_second",
|
|
112
|
+
"value": 850,
|
|
113
|
+
"confidence": 0.92
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"recommendations": [
|
|
117
|
+
{
|
|
118
|
+
"id": "REC-001",
|
|
119
|
+
"title": "Consider stress testing at higher load",
|
|
120
|
+
"description": "Current load test shows system is healthy at 100 VUs. Consider stress testing at 200-300 VUs to identify breaking points and ensure adequate capacity for traffic spikes.",
|
|
121
|
+
"priority": "medium",
|
|
122
|
+
"effort": "low",
|
|
123
|
+
"impact": 7,
|
|
124
|
+
"category": "scaling"
|
|
125
|
+
}
|
|
126
|
+
],
|
|
127
|
+
"scenarios": [
|
|
128
|
+
{
|
|
129
|
+
"name": "standard_load",
|
|
130
|
+
"description": "Standard user load simulation with 100 concurrent users",
|
|
131
|
+
"status": "passed",
|
|
132
|
+
"virtualUsers": 100,
|
|
133
|
+
"duration": 300,
|
|
134
|
+
"thresholdsResult": "passed"
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"resourceUtilization": {
|
|
138
|
+
"cpu": {
|
|
139
|
+
"avg": 45,
|
|
140
|
+
"max": 62,
|
|
141
|
+
"min": 25,
|
|
142
|
+
"p95": 58
|
|
143
|
+
},
|
|
144
|
+
"memory": {
|
|
145
|
+
"avg": 65,
|
|
146
|
+
"max": 72,
|
|
147
|
+
"min": 60,
|
|
148
|
+
"p95": 70
|
|
149
|
+
},
|
|
150
|
+
"database": {
|
|
151
|
+
"connectionPoolUsage": 35,
|
|
152
|
+
"queryTime": 12,
|
|
153
|
+
"activeConnections": 14
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"testConfiguration": {
|
|
157
|
+
"target": "https://api.example.com",
|
|
158
|
+
"tool": "k6",
|
|
159
|
+
"toolVersion": "0.47.0",
|
|
160
|
+
"testType": "load",
|
|
161
|
+
"duration": 300,
|
|
162
|
+
"virtualUsers": 100,
|
|
163
|
+
"rampUp": 60,
|
|
164
|
+
"steadyState": 180,
|
|
165
|
+
"rampDown": 60,
|
|
166
|
+
"thresholds": {
|
|
167
|
+
"http_req_duration": ["p(95)<300"],
|
|
168
|
+
"http_req_failed": ["rate<0.01"]
|
|
169
|
+
},
|
|
170
|
+
"scenarios": ["standard_load"],
|
|
171
|
+
"endpoints": [
|
|
172
|
+
"/api/products",
|
|
173
|
+
"/api/users",
|
|
174
|
+
"/api/orders"
|
|
175
|
+
],
|
|
176
|
+
"environment": "staging"
|
|
177
|
+
},
|
|
178
|
+
"artifacts": [
|
|
179
|
+
{
|
|
180
|
+
"type": "report",
|
|
181
|
+
"path": "reports/load-test-2026-02-02.html",
|
|
182
|
+
"format": "html",
|
|
183
|
+
"description": "Detailed HTML report with charts"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"type": "data",
|
|
187
|
+
"path": "reports/load-test-2026-02-02.json",
|
|
188
|
+
"format": "json",
|
|
189
|
+
"description": "Raw metrics data"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"timeline": [
|
|
193
|
+
{
|
|
194
|
+
"timestamp": "2026-02-02T10:25:00Z",
|
|
195
|
+
"event": "Test initialization started",
|
|
196
|
+
"type": "start",
|
|
197
|
+
"phase": "initialization"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"timestamp": "2026-02-02T10:25:30Z",
|
|
201
|
+
"event": "Ramp-up phase started",
|
|
202
|
+
"type": "ramp-up",
|
|
203
|
+
"phase": "load",
|
|
204
|
+
"virtualUsers": 0
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"timestamp": "2026-02-02T10:26:30Z",
|
|
208
|
+
"event": "Steady state reached",
|
|
209
|
+
"type": "steady-state",
|
|
210
|
+
"phase": "load",
|
|
211
|
+
"virtualUsers": 100
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"timestamp": "2026-02-02T10:29:30Z",
|
|
215
|
+
"event": "Ramp-down started",
|
|
216
|
+
"type": "ramp-down",
|
|
217
|
+
"phase": "load",
|
|
218
|
+
"virtualUsers": 100
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"timestamp": "2026-02-02T10:30:00Z",
|
|
222
|
+
"event": "Test completed successfully",
|
|
223
|
+
"type": "complete",
|
|
224
|
+
"phase": "reporting",
|
|
225
|
+
"virtualUsers": 0
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
},
|
|
229
|
+
"metadata": {
|
|
230
|
+
"executionTimeMs": 305000,
|
|
231
|
+
"toolsUsed": ["k6", "prometheus", "grafana"],
|
|
232
|
+
"agentId": "qe-performance-tester",
|
|
233
|
+
"modelUsed": "claude-3.5-sonnet",
|
|
234
|
+
"targetUrl": "https://api.example.com",
|
|
235
|
+
"environment": "staging"
|
|
236
|
+
},
|
|
237
|
+
"validation": {
|
|
238
|
+
"schemaValid": true,
|
|
239
|
+
"contentValid": true,
|
|
240
|
+
"confidence": 0.95,
|
|
241
|
+
"warnings": [],
|
|
242
|
+
"errors": [],
|
|
243
|
+
"validatorVersion": "1.0.0"
|
|
244
|
+
},
|
|
245
|
+
"learning": {
|
|
246
|
+
"patternsDetected": [
|
|
247
|
+
"healthy-load-test",
|
|
248
|
+
"optimal-response-time"
|
|
249
|
+
],
|
|
250
|
+
"reward": 0.92
|
|
251
|
+
}
|
|
252
|
+
}
|
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://agentic-qe.dev/schemas/skill-output-template.json",
|
|
3
|
+
"skillName": "security-testing",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"timestamp": "2026-02-02T14:30:00.000Z",
|
|
6
|
+
"status": "success",
|
|
7
|
+
"trustTier": 3,
|
|
8
|
+
"output": {
|
|
9
|
+
"summary": "Security assessment completed for target application. Found 3 critical, 5 high, and 12 medium severity vulnerabilities. OWASP Top 10 coverage: 8/10 categories tested. Immediate action required for SQL injection and broken access control findings.",
|
|
10
|
+
"score": {
|
|
11
|
+
"value": 45,
|
|
12
|
+
"max": 100,
|
|
13
|
+
"grade": "F",
|
|
14
|
+
"trend": "stable"
|
|
15
|
+
},
|
|
16
|
+
"findings": [
|
|
17
|
+
{
|
|
18
|
+
"id": "SEC-001",
|
|
19
|
+
"title": "SQL Injection in User Search Endpoint",
|
|
20
|
+
"description": "The /api/users/search endpoint is vulnerable to SQL injection through the 'query' parameter. User input is concatenated directly into SQL query without parameterization.",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "A03:2021-Injection",
|
|
23
|
+
"location": {
|
|
24
|
+
"file": "src/controllers/userController.js",
|
|
25
|
+
"line": 42,
|
|
26
|
+
"column": 15,
|
|
27
|
+
"url": "https://example.com/api/users/search"
|
|
28
|
+
},
|
|
29
|
+
"evidence": "const query = `SELECT * FROM users WHERE name LIKE '%${req.query.query}%'`;",
|
|
30
|
+
"cwe": "CWE-89",
|
|
31
|
+
"cvss": 9.8,
|
|
32
|
+
"owasp": "A03:2021",
|
|
33
|
+
"remediation": "Use parameterized queries: db.query('SELECT * FROM users WHERE name LIKE ?', [`%${query}%`])",
|
|
34
|
+
"falsePositive": false,
|
|
35
|
+
"confidence": 0.98
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"id": "SEC-002",
|
|
39
|
+
"title": "Broken Access Control - Horizontal Privilege Escalation",
|
|
40
|
+
"description": "Users can access other users' orders by manipulating the order ID in the URL. No ownership check is performed.",
|
|
41
|
+
"severity": "critical",
|
|
42
|
+
"category": "A01:2021-Broken-Access-Control",
|
|
43
|
+
"location": {
|
|
44
|
+
"file": "src/controllers/orderController.js",
|
|
45
|
+
"line": 28,
|
|
46
|
+
"url": "https://example.com/api/orders/:id"
|
|
47
|
+
},
|
|
48
|
+
"evidence": "GET /api/orders/12345 returns order data regardless of authenticated user",
|
|
49
|
+
"cwe": "CWE-639",
|
|
50
|
+
"cvss": 8.6,
|
|
51
|
+
"owasp": "A01:2021",
|
|
52
|
+
"remediation": "Add ownership validation: if (order.userId !== req.user.id) return res.status(403)",
|
|
53
|
+
"falsePositive": false,
|
|
54
|
+
"confidence": 0.95
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "SEC-003",
|
|
58
|
+
"title": "Stored XSS in User Comments",
|
|
59
|
+
"description": "User comments are rendered without sanitization, allowing script injection that executes in other users' browsers.",
|
|
60
|
+
"severity": "critical",
|
|
61
|
+
"category": "A03:2021-Injection",
|
|
62
|
+
"location": {
|
|
63
|
+
"file": "src/views/comments.ejs",
|
|
64
|
+
"line": 15,
|
|
65
|
+
"url": "https://example.com/posts/1/comments"
|
|
66
|
+
},
|
|
67
|
+
"evidence": "<div class='comment'><%- comment.text %></div>",
|
|
68
|
+
"cwe": "CWE-79",
|
|
69
|
+
"cvss": 8.2,
|
|
70
|
+
"owasp": "A03:2021",
|
|
71
|
+
"remediation": "Use escaped output: <%= comment.text %> or sanitize with DOMPurify",
|
|
72
|
+
"falsePositive": false,
|
|
73
|
+
"confidence": 0.92
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"id": "SEC-004",
|
|
77
|
+
"title": "Passwords Stored in Plaintext",
|
|
78
|
+
"description": "User passwords are stored in the database without hashing. Database dump would expose all user credentials.",
|
|
79
|
+
"severity": "high",
|
|
80
|
+
"category": "A02:2021-Cryptographic-Failures",
|
|
81
|
+
"location": {
|
|
82
|
+
"file": "src/models/user.js",
|
|
83
|
+
"line": 35
|
|
84
|
+
},
|
|
85
|
+
"evidence": "this.password = password; // No hashing",
|
|
86
|
+
"cwe": "CWE-256",
|
|
87
|
+
"cvss": 7.5,
|
|
88
|
+
"owasp": "A02:2021",
|
|
89
|
+
"remediation": "Hash passwords with bcrypt: this.password = await bcrypt.hash(password, 12)",
|
|
90
|
+
"falsePositive": false,
|
|
91
|
+
"confidence": 0.99
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "SEC-005",
|
|
95
|
+
"title": "Missing Rate Limiting on Login Endpoint",
|
|
96
|
+
"description": "The /api/auth/login endpoint has no rate limiting, allowing brute force password attacks.",
|
|
97
|
+
"severity": "high",
|
|
98
|
+
"category": "A07:2021-Identification-Authentication-Failures",
|
|
99
|
+
"location": {
|
|
100
|
+
"url": "https://example.com/api/auth/login"
|
|
101
|
+
},
|
|
102
|
+
"evidence": "100 login attempts in 10 seconds all returned 401 without blocking",
|
|
103
|
+
"cwe": "CWE-307",
|
|
104
|
+
"cvss": 7.3,
|
|
105
|
+
"owasp": "A07:2021",
|
|
106
|
+
"remediation": "Implement rate limiting with express-rate-limit: max 5 attempts per minute per IP",
|
|
107
|
+
"falsePositive": false,
|
|
108
|
+
"confidence": 0.97
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "SEC-006",
|
|
112
|
+
"title": "Sensitive Data Exposed in API Response",
|
|
113
|
+
"description": "GET /api/users/me returns password hash, SSN, and internal user ID in response.",
|
|
114
|
+
"severity": "high",
|
|
115
|
+
"category": "A01:2021-Broken-Access-Control",
|
|
116
|
+
"location": {
|
|
117
|
+
"file": "src/controllers/userController.js",
|
|
118
|
+
"line": 58,
|
|
119
|
+
"url": "https://example.com/api/users/me"
|
|
120
|
+
},
|
|
121
|
+
"evidence": "Response includes: { password: '$2b$...', ssn: '123-45-6789', internalId: 'INT-12345' }",
|
|
122
|
+
"cwe": "CWE-200",
|
|
123
|
+
"cvss": 6.5,
|
|
124
|
+
"owasp": "A01:2021",
|
|
125
|
+
"remediation": "Use DTOs to filter sensitive fields: return { id, name, email } only",
|
|
126
|
+
"falsePositive": false,
|
|
127
|
+
"confidence": 0.99
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"id": "SEC-007",
|
|
131
|
+
"title": "Verbose Error Messages Expose Stack Traces",
|
|
132
|
+
"description": "Application errors return full stack traces to clients, revealing internal file paths and technology stack.",
|
|
133
|
+
"severity": "medium",
|
|
134
|
+
"category": "A05:2021-Security-Misconfiguration",
|
|
135
|
+
"location": {
|
|
136
|
+
"file": "src/middleware/errorHandler.js",
|
|
137
|
+
"line": 12
|
|
138
|
+
},
|
|
139
|
+
"evidence": "res.status(500).json({ error: err.message, stack: err.stack })",
|
|
140
|
+
"cwe": "CWE-209",
|
|
141
|
+
"cvss": 5.3,
|
|
142
|
+
"owasp": "A05:2021",
|
|
143
|
+
"remediation": "In production: res.status(500).json({ error: 'Internal server error' })",
|
|
144
|
+
"falsePositive": false,
|
|
145
|
+
"confidence": 0.95
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"id": "SEC-008",
|
|
149
|
+
"title": "Outdated npm Dependencies with Known Vulnerabilities",
|
|
150
|
+
"description": "npm audit found 15 vulnerabilities in dependencies: 3 critical, 5 high, 7 moderate.",
|
|
151
|
+
"severity": "high",
|
|
152
|
+
"category": "A06:2021-Vulnerable-Components",
|
|
153
|
+
"location": {
|
|
154
|
+
"file": "package.json"
|
|
155
|
+
},
|
|
156
|
+
"evidence": "lodash@4.17.15 (CVE-2021-23337), axios@0.19.0 (CVE-2021-3749)",
|
|
157
|
+
"cwe": "CWE-1104",
|
|
158
|
+
"cvss": 7.4,
|
|
159
|
+
"owasp": "A06:2021",
|
|
160
|
+
"remediation": "Run npm audit fix --force and manually review breaking changes",
|
|
161
|
+
"falsePositive": false,
|
|
162
|
+
"confidence": 1.0
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"recommendations": [
|
|
166
|
+
{
|
|
167
|
+
"id": "REC-001",
|
|
168
|
+
"title": "Implement Parameterized Queries Throughout Application",
|
|
169
|
+
"description": "Replace all raw SQL queries with parameterized queries using your ORM's query builder or prepared statements. This eliminates SQL injection vulnerabilities.",
|
|
170
|
+
"priority": "critical",
|
|
171
|
+
"effort": "medium",
|
|
172
|
+
"impact": 10,
|
|
173
|
+
"relatedFindings": ["SEC-001"],
|
|
174
|
+
"codeExample": "// Instead of:\nconst query = `SELECT * FROM users WHERE id = ${id}`;\n\n// Use:\nconst user = await User.findByPk(id);\n// Or:\nconst [rows] = await db.query('SELECT * FROM users WHERE id = ?', [id]);",
|
|
175
|
+
"resources": [
|
|
176
|
+
{
|
|
177
|
+
"title": "OWASP SQL Injection Prevention Cheat Sheet",
|
|
178
|
+
"url": "https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"id": "REC-002",
|
|
184
|
+
"title": "Add Authorization Middleware for Resource Access",
|
|
185
|
+
"description": "Implement ownership validation middleware that checks if the authenticated user has permission to access the requested resource.",
|
|
186
|
+
"priority": "critical",
|
|
187
|
+
"effort": "medium",
|
|
188
|
+
"impact": 9,
|
|
189
|
+
"relatedFindings": ["SEC-002", "SEC-006"],
|
|
190
|
+
"codeExample": "const authorizeOwner = (resourceType) => async (req, res, next) => {\n const resource = await db[resourceType].findByPk(req.params.id);\n if (!resource || resource.userId !== req.user.id) {\n return res.status(403).json({ error: 'Forbidden' });\n }\n req.resource = resource;\n next();\n};",
|
|
191
|
+
"resources": [
|
|
192
|
+
{
|
|
193
|
+
"title": "OWASP Authorization Cheat Sheet",
|
|
194
|
+
"url": "https://cheatsheetseries.owasp.org/cheatsheets/Authorization_Cheat_Sheet.html"
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"id": "REC-003",
|
|
200
|
+
"title": "Implement Output Encoding and Content Security Policy",
|
|
201
|
+
"description": "Sanitize all user input before rendering in HTML. Implement CSP headers to prevent XSS even if sanitization is bypassed.",
|
|
202
|
+
"priority": "critical",
|
|
203
|
+
"effort": "medium",
|
|
204
|
+
"impact": 8,
|
|
205
|
+
"relatedFindings": ["SEC-003"],
|
|
206
|
+
"codeExample": "// Use escaped output in EJS:\n<%= comment.text %>\n\n// Add CSP header:\napp.use(helmet.contentSecurityPolicy({\n directives: {\n defaultSrc: [\"'self'\"],\n scriptSrc: [\"'self'\"]\n }\n}));",
|
|
207
|
+
"resources": [
|
|
208
|
+
{
|
|
209
|
+
"title": "OWASP XSS Prevention Cheat Sheet",
|
|
210
|
+
"url": "https://cheatsheetseries.owasp.org/cheatsheets/Cross_Site_Scripting_Prevention_Cheat_Sheet.html"
|
|
211
|
+
}
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"id": "REC-004",
|
|
216
|
+
"title": "Hash Passwords with bcrypt",
|
|
217
|
+
"description": "Never store passwords in plaintext. Use bcrypt with a work factor of at least 12 for password hashing.",
|
|
218
|
+
"priority": "high",
|
|
219
|
+
"effort": "low",
|
|
220
|
+
"impact": 9,
|
|
221
|
+
"relatedFindings": ["SEC-004"],
|
|
222
|
+
"codeExample": "const bcrypt = require('bcrypt');\n\n// When creating user:\nuser.password = await bcrypt.hash(plainPassword, 12);\n\n// When verifying:\nconst match = await bcrypt.compare(plainPassword, user.password);",
|
|
223
|
+
"resources": [
|
|
224
|
+
{
|
|
225
|
+
"title": "OWASP Password Storage Cheat Sheet",
|
|
226
|
+
"url": "https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html"
|
|
227
|
+
}
|
|
228
|
+
]
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"id": "REC-005",
|
|
232
|
+
"title": "Implement Rate Limiting on Authentication Endpoints",
|
|
233
|
+
"description": "Add rate limiting to prevent brute force attacks on login, password reset, and registration endpoints.",
|
|
234
|
+
"priority": "high",
|
|
235
|
+
"effort": "low",
|
|
236
|
+
"impact": 7,
|
|
237
|
+
"relatedFindings": ["SEC-005"],
|
|
238
|
+
"codeExample": "const rateLimit = require('express-rate-limit');\n\nconst authLimiter = rateLimit({\n windowMs: 60 * 1000, // 1 minute\n max: 5,\n message: { error: 'Too many attempts, please try again later' }\n});\n\napp.use('/api/auth', authLimiter);",
|
|
239
|
+
"resources": [
|
|
240
|
+
{
|
|
241
|
+
"title": "OWASP Brute Force Prevention",
|
|
242
|
+
"url": "https://cheatsheetseries.owasp.org/cheatsheets/Authentication_Cheat_Sheet.html#prevent-brute-force-attacks"
|
|
243
|
+
}
|
|
244
|
+
]
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "REC-006",
|
|
248
|
+
"title": "Update All npm Dependencies",
|
|
249
|
+
"description": "Run npm audit and update all packages with known vulnerabilities. Set up automated dependency scanning with Dependabot or Snyk.",
|
|
250
|
+
"priority": "high",
|
|
251
|
+
"effort": "medium",
|
|
252
|
+
"impact": 7,
|
|
253
|
+
"relatedFindings": ["SEC-008"],
|
|
254
|
+
"codeExample": "# Run security audit\nnpm audit\n\n# Auto-fix where possible\nnpm audit fix\n\n# Manual review for breaking changes\nnpm update lodash axios",
|
|
255
|
+
"resources": [
|
|
256
|
+
{
|
|
257
|
+
"title": "npm audit documentation",
|
|
258
|
+
"url": "https://docs.npmjs.com/cli/v8/commands/npm-audit"
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
],
|
|
263
|
+
"metrics": {
|
|
264
|
+
"total": 47,
|
|
265
|
+
"passed": 27,
|
|
266
|
+
"failed": 20,
|
|
267
|
+
"skipped": 0,
|
|
268
|
+
"coverage": 80,
|
|
269
|
+
"duration": 45230,
|
|
270
|
+
"custom": {
|
|
271
|
+
"owaspCategoriesTested": 8,
|
|
272
|
+
"criticalFindings": 3,
|
|
273
|
+
"highFindings": 5,
|
|
274
|
+
"mediumFindings": 12,
|
|
275
|
+
"lowFindings": 0,
|
|
276
|
+
"infoFindings": 0
|
|
277
|
+
}
|
|
278
|
+
},
|
|
279
|
+
"categories": {
|
|
280
|
+
"A01:2021-Broken-Access-Control": {
|
|
281
|
+
"score": 35,
|
|
282
|
+
"weight": 0.15,
|
|
283
|
+
"description": "Restrictions on authenticated users are not properly enforced",
|
|
284
|
+
"grade": "F",
|
|
285
|
+
"findingCount": 2
|
|
286
|
+
},
|
|
287
|
+
"A02:2021-Cryptographic-Failures": {
|
|
288
|
+
"score": 40,
|
|
289
|
+
"weight": 0.12,
|
|
290
|
+
"description": "Failures related to cryptography leading to sensitive data exposure",
|
|
291
|
+
"grade": "F",
|
|
292
|
+
"findingCount": 1
|
|
293
|
+
},
|
|
294
|
+
"A03:2021-Injection": {
|
|
295
|
+
"score": 25,
|
|
296
|
+
"weight": 0.15,
|
|
297
|
+
"description": "User-supplied data not validated, filtered, or sanitized",
|
|
298
|
+
"grade": "F",
|
|
299
|
+
"findingCount": 2
|
|
300
|
+
},
|
|
301
|
+
"A05:2021-Security-Misconfiguration": {
|
|
302
|
+
"score": 60,
|
|
303
|
+
"weight": 0.10,
|
|
304
|
+
"description": "Missing security hardening or improperly configured permissions",
|
|
305
|
+
"grade": "D",
|
|
306
|
+
"findingCount": 1
|
|
307
|
+
},
|
|
308
|
+
"A06:2021-Vulnerable-Components": {
|
|
309
|
+
"score": 45,
|
|
310
|
+
"weight": 0.10,
|
|
311
|
+
"description": "Using components with known vulnerabilities",
|
|
312
|
+
"grade": "F",
|
|
313
|
+
"findingCount": 1
|
|
314
|
+
},
|
|
315
|
+
"A07:2021-Identification-Authentication-Failures": {
|
|
316
|
+
"score": 50,
|
|
317
|
+
"weight": 0.12,
|
|
318
|
+
"description": "Confirmation of user identity, authentication, and session management",
|
|
319
|
+
"grade": "F",
|
|
320
|
+
"findingCount": 1
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"artifacts": [
|
|
324
|
+
{
|
|
325
|
+
"type": "report",
|
|
326
|
+
"path": "tests/reports/security-scan-2026-02-02.html",
|
|
327
|
+
"format": "html",
|
|
328
|
+
"description": "Visual HTML report with OWASP Top 10 breakdown",
|
|
329
|
+
"sizeBytes": 245780,
|
|
330
|
+
"checksum": "sha256:a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4e5f6a1b2"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"type": "data",
|
|
334
|
+
"path": "tests/reports/security-findings-2026-02-02.json",
|
|
335
|
+
"format": "json",
|
|
336
|
+
"description": "Raw findings data for CI/CD integration",
|
|
337
|
+
"sizeBytes": 18432
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"type": "log",
|
|
341
|
+
"path": "tests/reports/security-scan.log",
|
|
342
|
+
"format": "txt",
|
|
343
|
+
"description": "Detailed scan execution log",
|
|
344
|
+
"sizeBytes": 52100
|
|
345
|
+
}
|
|
346
|
+
],
|
|
347
|
+
"timeline": [
|
|
348
|
+
{
|
|
349
|
+
"timestamp": "2026-02-02T14:30:00.000Z",
|
|
350
|
+
"event": "Security scan started",
|
|
351
|
+
"type": "start"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"timestamp": "2026-02-02T14:30:05.000Z",
|
|
355
|
+
"event": "SAST analysis completed",
|
|
356
|
+
"type": "checkpoint",
|
|
357
|
+
"durationMs": 5000
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"timestamp": "2026-02-02T14:30:20.000Z",
|
|
361
|
+
"event": "Dependency audit completed",
|
|
362
|
+
"type": "checkpoint",
|
|
363
|
+
"durationMs": 15000
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"timestamp": "2026-02-02T14:30:35.000Z",
|
|
367
|
+
"event": "DAST scanning completed",
|
|
368
|
+
"type": "checkpoint",
|
|
369
|
+
"durationMs": 15000
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"timestamp": "2026-02-02T14:30:45.000Z",
|
|
373
|
+
"event": "Report generation completed",
|
|
374
|
+
"type": "complete",
|
|
375
|
+
"durationMs": 10000
|
|
376
|
+
}
|
|
377
|
+
]
|
|
378
|
+
},
|
|
379
|
+
"metadata": {
|
|
380
|
+
"executionTimeMs": 45230,
|
|
381
|
+
"toolsUsed": ["semgrep", "npm-audit", "owasp-zap", "trivy"],
|
|
382
|
+
"agentId": "qe-security-scanner",
|
|
383
|
+
"modelUsed": "claude-3.5-sonnet",
|
|
384
|
+
"inputHash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
|
385
|
+
"targetUrl": "https://example.com",
|
|
386
|
+
"targetPath": "src/",
|
|
387
|
+
"environment": "ci",
|
|
388
|
+
"retryCount": 0
|
|
389
|
+
},
|
|
390
|
+
"validation": {
|
|
391
|
+
"schemaValid": true,
|
|
392
|
+
"contentValid": true,
|
|
393
|
+
"confidence": 0.95,
|
|
394
|
+
"warnings": [
|
|
395
|
+
"Some findings may require manual verification"
|
|
396
|
+
],
|
|
397
|
+
"errors": [],
|
|
398
|
+
"validatorVersion": "1.0.0"
|
|
399
|
+
},
|
|
400
|
+
"learning": {
|
|
401
|
+
"patternsDetected": [
|
|
402
|
+
"sql-injection-string-concat",
|
|
403
|
+
"missing-authorization-check",
|
|
404
|
+
"xss-unescaped-output",
|
|
405
|
+
"plaintext-password-storage"
|
|
406
|
+
],
|
|
407
|
+
"reward": 0.85,
|
|
408
|
+
"feedbackLoop": {
|
|
409
|
+
"previousRunId": "550e8400-e29b-41d4-a716-446655440000",
|
|
410
|
+
"improvement": 0.15
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
}
|