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,2333 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://agentic-qe.dev/schemas/skill-manifest.json",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"generatedAt": "2026-02-02T10:30:07.654Z",
|
|
5
|
+
"generator": "scripts/update-skill-manifest.ts",
|
|
6
|
+
"trustTierPolicy": "ADR-056",
|
|
7
|
+
"summary": {
|
|
8
|
+
"tier0": 39,
|
|
9
|
+
"tier1": 5,
|
|
10
|
+
"tier2": 7,
|
|
11
|
+
"tier3": 46,
|
|
12
|
+
"total": 97
|
|
13
|
+
},
|
|
14
|
+
"validationStatus": {
|
|
15
|
+
"passing": 46,
|
|
16
|
+
"failing": 0,
|
|
17
|
+
"unknown": 12,
|
|
18
|
+
"skipped": 39
|
|
19
|
+
},
|
|
20
|
+
"skillsByTier": {
|
|
21
|
+
"tier3": [
|
|
22
|
+
{
|
|
23
|
+
"name": "a11y-ally",
|
|
24
|
+
"category": "specialized-testing",
|
|
25
|
+
"validation": {
|
|
26
|
+
"status": "passing",
|
|
27
|
+
"schemaPath": "schemas/output.json",
|
|
28
|
+
"validatorPath": "scripts/validate.sh",
|
|
29
|
+
"evalPath": "evals/a11y-ally.yaml"
|
|
30
|
+
},
|
|
31
|
+
"file": "a11y-ally/SKILL.md"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "accessibility-testing",
|
|
35
|
+
"category": "specialized-testing",
|
|
36
|
+
"validation": {
|
|
37
|
+
"status": "passing",
|
|
38
|
+
"schemaPath": "schemas/output.json",
|
|
39
|
+
"validatorPath": "scripts/validate.sh",
|
|
40
|
+
"evalPath": "evals/accessibility-testing.yaml"
|
|
41
|
+
},
|
|
42
|
+
"file": "accessibility-testing/SKILL.md"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "api-testing-patterns",
|
|
46
|
+
"category": "testing-methodologies",
|
|
47
|
+
"validation": {
|
|
48
|
+
"status": "passing",
|
|
49
|
+
"schemaPath": "schemas/output.json",
|
|
50
|
+
"validatorPath": "scripts/validate.sh",
|
|
51
|
+
"evalPath": "evals/api-testing-patterns.yaml"
|
|
52
|
+
},
|
|
53
|
+
"file": "api-testing-patterns/SKILL.md"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "chaos-engineering-resilience",
|
|
57
|
+
"category": "specialized-testing",
|
|
58
|
+
"validation": {
|
|
59
|
+
"status": "passing",
|
|
60
|
+
"schemaPath": "schemas/output.json",
|
|
61
|
+
"validatorPath": "scripts/validate.sh",
|
|
62
|
+
"evalPath": "evals/chaos-engineering-resilience.yaml"
|
|
63
|
+
},
|
|
64
|
+
"file": "chaos-engineering-resilience/SKILL.md"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "cicd-pipeline-qe-orchestrator",
|
|
68
|
+
"category": "infrastructure",
|
|
69
|
+
"validation": {
|
|
70
|
+
"status": "passing",
|
|
71
|
+
"schemaPath": "schemas/output.json",
|
|
72
|
+
"validatorPath": "scripts/validate.sh",
|
|
73
|
+
"evalPath": "evals/cicd-pipeline-qe-orchestrator.yaml"
|
|
74
|
+
},
|
|
75
|
+
"file": "cicd-pipeline-qe-orchestrator/SKILL.md"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "compatibility-testing",
|
|
79
|
+
"category": "specialized-testing",
|
|
80
|
+
"validation": {
|
|
81
|
+
"status": "passing",
|
|
82
|
+
"schemaPath": "schemas/output.json",
|
|
83
|
+
"validatorPath": "scripts/validate.sh",
|
|
84
|
+
"evalPath": "evals/compatibility-testing.yaml"
|
|
85
|
+
},
|
|
86
|
+
"file": "compatibility-testing/SKILL.md"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "compliance-testing",
|
|
90
|
+
"category": "specialized-testing",
|
|
91
|
+
"validation": {
|
|
92
|
+
"status": "passing",
|
|
93
|
+
"schemaPath": "schemas/output.json",
|
|
94
|
+
"validatorPath": "scripts/validate.sh",
|
|
95
|
+
"evalPath": "evals/compliance-testing.yaml"
|
|
96
|
+
},
|
|
97
|
+
"file": "compliance-testing/SKILL.md"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "contract-testing",
|
|
101
|
+
"category": "testing-methodologies",
|
|
102
|
+
"validation": {
|
|
103
|
+
"status": "passing",
|
|
104
|
+
"schemaPath": "schemas/output.json",
|
|
105
|
+
"validatorPath": "scripts/validate.sh",
|
|
106
|
+
"evalPath": "evals/contract-testing.yaml"
|
|
107
|
+
},
|
|
108
|
+
"file": "contract-testing/SKILL.md"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "database-testing",
|
|
112
|
+
"category": "specialized-testing",
|
|
113
|
+
"validation": {
|
|
114
|
+
"status": "passing",
|
|
115
|
+
"schemaPath": "schemas/output.json",
|
|
116
|
+
"validatorPath": "scripts/validate.sh",
|
|
117
|
+
"evalPath": "evals/database-testing.yaml"
|
|
118
|
+
},
|
|
119
|
+
"file": "database-testing/SKILL.md"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "localization-testing",
|
|
123
|
+
"category": "specialized-testing",
|
|
124
|
+
"validation": {
|
|
125
|
+
"status": "passing",
|
|
126
|
+
"schemaPath": "schemas/output.json",
|
|
127
|
+
"validatorPath": "scripts/validate.sh",
|
|
128
|
+
"evalPath": "evals/localization-testing.yaml"
|
|
129
|
+
},
|
|
130
|
+
"file": "localization-testing/SKILL.md"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "mobile-testing",
|
|
134
|
+
"category": "specialized-testing",
|
|
135
|
+
"validation": {
|
|
136
|
+
"status": "passing",
|
|
137
|
+
"schemaPath": "schemas/output.json",
|
|
138
|
+
"validatorPath": "scripts/validate.sh",
|
|
139
|
+
"evalPath": "evals/mobile-testing.yaml"
|
|
140
|
+
},
|
|
141
|
+
"file": "mobile-testing/SKILL.md"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "mutation-testing",
|
|
145
|
+
"category": "specialized-testing",
|
|
146
|
+
"validation": {
|
|
147
|
+
"status": "passing",
|
|
148
|
+
"schemaPath": "schemas/output.json",
|
|
149
|
+
"validatorPath": "scripts/validate.sh",
|
|
150
|
+
"evalPath": "evals/mutation-testing.yaml"
|
|
151
|
+
},
|
|
152
|
+
"file": "mutation-testing/SKILL.md"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "n8n-expression-testing",
|
|
156
|
+
"category": "n8n-testing",
|
|
157
|
+
"validation": {
|
|
158
|
+
"status": "passing",
|
|
159
|
+
"schemaPath": "schemas/output.json",
|
|
160
|
+
"validatorPath": "scripts/validate.sh",
|
|
161
|
+
"evalPath": "evals/n8n-expression-testing.yaml"
|
|
162
|
+
},
|
|
163
|
+
"file": "n8n-expression-testing/SKILL.md"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "n8n-integration-testing-patterns",
|
|
167
|
+
"category": "n8n-testing",
|
|
168
|
+
"validation": {
|
|
169
|
+
"status": "passing",
|
|
170
|
+
"schemaPath": "schemas/output.json",
|
|
171
|
+
"validatorPath": "scripts/validate.sh",
|
|
172
|
+
"evalPath": "evals/n8n-integration-testing-patterns.yaml"
|
|
173
|
+
},
|
|
174
|
+
"file": "n8n-integration-testing-patterns/SKILL.md"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "n8n-security-testing",
|
|
178
|
+
"category": "n8n-testing",
|
|
179
|
+
"validation": {
|
|
180
|
+
"status": "passing",
|
|
181
|
+
"schemaPath": "schemas/output.json",
|
|
182
|
+
"validatorPath": "scripts/validate.sh",
|
|
183
|
+
"evalPath": "evals/n8n-security-testing.yaml"
|
|
184
|
+
},
|
|
185
|
+
"file": "n8n-security-testing/SKILL.md"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "n8n-trigger-testing-strategies",
|
|
189
|
+
"category": "n8n-testing",
|
|
190
|
+
"validation": {
|
|
191
|
+
"status": "passing",
|
|
192
|
+
"schemaPath": "schemas/output.json",
|
|
193
|
+
"validatorPath": "scripts/validate.sh",
|
|
194
|
+
"evalPath": "evals/n8n-trigger-testing-strategies.yaml"
|
|
195
|
+
},
|
|
196
|
+
"file": "n8n-trigger-testing-strategies/SKILL.md"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "n8n-workflow-testing-fundamentals",
|
|
200
|
+
"category": "n8n-testing",
|
|
201
|
+
"validation": {
|
|
202
|
+
"status": "passing",
|
|
203
|
+
"schemaPath": "schemas/output.json",
|
|
204
|
+
"validatorPath": "scripts/validate.sh",
|
|
205
|
+
"evalPath": "evals/n8n-workflow-testing-fundamentals.yaml"
|
|
206
|
+
},
|
|
207
|
+
"file": "n8n-workflow-testing-fundamentals/SKILL.md"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "performance-analysis",
|
|
211
|
+
"category": "monitoring",
|
|
212
|
+
"validation": {
|
|
213
|
+
"status": "passing",
|
|
214
|
+
"schemaPath": "schemas/output.json",
|
|
215
|
+
"validatorPath": "scripts/validate.sh",
|
|
216
|
+
"evalPath": "evals/performance-analysis.yaml"
|
|
217
|
+
},
|
|
218
|
+
"file": "performance-analysis/SKILL.md"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "performance-testing",
|
|
222
|
+
"category": "specialized-testing",
|
|
223
|
+
"validation": {
|
|
224
|
+
"status": "passing",
|
|
225
|
+
"schemaPath": "schemas/output.json",
|
|
226
|
+
"validatorPath": "scripts/validate.sh",
|
|
227
|
+
"evalPath": "evals/performance-testing.yaml"
|
|
228
|
+
},
|
|
229
|
+
"file": "performance-testing/SKILL.md"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "qcsd-ideation-swarm",
|
|
233
|
+
"category": "qcsd-phases",
|
|
234
|
+
"validation": {
|
|
235
|
+
"status": "passing",
|
|
236
|
+
"schemaPath": "schemas/output.json",
|
|
237
|
+
"validatorPath": "scripts/validate.sh",
|
|
238
|
+
"evalPath": "evals/qcsd-ideation-swarm.yaml"
|
|
239
|
+
},
|
|
240
|
+
"file": "qcsd-ideation-swarm/SKILL.md"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "qe-chaos-resilience",
|
|
244
|
+
"validation": {
|
|
245
|
+
"status": "passing",
|
|
246
|
+
"schemaPath": "schemas/output.json",
|
|
247
|
+
"validatorPath": "scripts/validate.sh",
|
|
248
|
+
"evalPath": "evals/qe-chaos-resilience.yaml"
|
|
249
|
+
},
|
|
250
|
+
"file": "qe-chaos-resilience/SKILL.md"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "qe-code-intelligence",
|
|
254
|
+
"validation": {
|
|
255
|
+
"status": "passing",
|
|
256
|
+
"schemaPath": "schemas/output.json",
|
|
257
|
+
"validatorPath": "scripts/validate.sh",
|
|
258
|
+
"evalPath": "evals/qe-code-intelligence.yaml"
|
|
259
|
+
},
|
|
260
|
+
"file": "qe-code-intelligence/SKILL.md"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "qe-contract-testing",
|
|
264
|
+
"validation": {
|
|
265
|
+
"status": "passing",
|
|
266
|
+
"schemaPath": "schemas/output.json",
|
|
267
|
+
"validatorPath": "scripts/validate.sh",
|
|
268
|
+
"evalPath": "evals/qe-contract-testing.yaml"
|
|
269
|
+
},
|
|
270
|
+
"file": "qe-contract-testing/SKILL.md"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "qe-coverage-analysis",
|
|
274
|
+
"validation": {
|
|
275
|
+
"status": "passing",
|
|
276
|
+
"schemaPath": "schemas/output.json",
|
|
277
|
+
"validatorPath": "scripts/validate.sh",
|
|
278
|
+
"evalPath": "evals/qe-coverage-analysis.yaml"
|
|
279
|
+
},
|
|
280
|
+
"file": "qe-coverage-analysis/SKILL.md"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "qe-defect-intelligence",
|
|
284
|
+
"validation": {
|
|
285
|
+
"status": "passing",
|
|
286
|
+
"schemaPath": "schemas/output.json",
|
|
287
|
+
"validatorPath": "scripts/validate.sh",
|
|
288
|
+
"evalPath": "evals/qe-defect-intelligence.yaml"
|
|
289
|
+
},
|
|
290
|
+
"file": "qe-defect-intelligence/SKILL.md"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "qe-learning-optimization",
|
|
294
|
+
"validation": {
|
|
295
|
+
"status": "passing",
|
|
296
|
+
"schemaPath": "schemas/output.json",
|
|
297
|
+
"validatorPath": "scripts/validate.sh",
|
|
298
|
+
"evalPath": "evals/qe-learning-optimization.yaml"
|
|
299
|
+
},
|
|
300
|
+
"file": "qe-learning-optimization/SKILL.md"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "qe-quality-assessment",
|
|
304
|
+
"validation": {
|
|
305
|
+
"status": "passing",
|
|
306
|
+
"schemaPath": "schemas/output.json",
|
|
307
|
+
"validatorPath": "scripts/validate.sh",
|
|
308
|
+
"evalPath": "evals/qe-quality-assessment.yaml"
|
|
309
|
+
},
|
|
310
|
+
"file": "qe-quality-assessment/SKILL.md"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"name": "qe-requirements-validation",
|
|
314
|
+
"validation": {
|
|
315
|
+
"status": "passing",
|
|
316
|
+
"schemaPath": "schemas/output.json",
|
|
317
|
+
"validatorPath": "scripts/validate.sh",
|
|
318
|
+
"evalPath": "evals/qe-requirements-validation.yaml"
|
|
319
|
+
},
|
|
320
|
+
"file": "qe-requirements-validation/SKILL.md"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"name": "qe-security-compliance",
|
|
324
|
+
"validation": {
|
|
325
|
+
"status": "passing",
|
|
326
|
+
"schemaPath": "schemas/output.json",
|
|
327
|
+
"validatorPath": "scripts/validate.sh",
|
|
328
|
+
"evalPath": "evals/qe-security-compliance.yaml"
|
|
329
|
+
},
|
|
330
|
+
"file": "qe-security-compliance/SKILL.md"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"name": "qe-test-execution",
|
|
334
|
+
"validation": {
|
|
335
|
+
"status": "passing",
|
|
336
|
+
"schemaPath": "schemas/output.json",
|
|
337
|
+
"validatorPath": "scripts/validate.sh",
|
|
338
|
+
"evalPath": "evals/qe-test-execution.yaml"
|
|
339
|
+
},
|
|
340
|
+
"file": "qe-test-execution/SKILL.md"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "qe-test-generation",
|
|
344
|
+
"validation": {
|
|
345
|
+
"status": "passing",
|
|
346
|
+
"schemaPath": "schemas/output.json",
|
|
347
|
+
"validatorPath": "scripts/validate.sh",
|
|
348
|
+
"evalPath": "evals/qe-test-generation.yaml"
|
|
349
|
+
},
|
|
350
|
+
"file": "qe-test-generation/SKILL.md"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"name": "qe-visual-accessibility",
|
|
354
|
+
"validation": {
|
|
355
|
+
"status": "passing",
|
|
356
|
+
"schemaPath": "schemas/output.json",
|
|
357
|
+
"validatorPath": "scripts/validate.sh",
|
|
358
|
+
"evalPath": "evals/qe-visual-accessibility.yaml"
|
|
359
|
+
},
|
|
360
|
+
"file": "qe-visual-accessibility/SKILL.md"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "quality-metrics",
|
|
364
|
+
"category": "testing-methodologies",
|
|
365
|
+
"validation": {
|
|
366
|
+
"status": "passing",
|
|
367
|
+
"schemaPath": "schemas/output.json",
|
|
368
|
+
"validatorPath": "scripts/validate.sh",
|
|
369
|
+
"evalPath": "evals/quality-metrics.yaml"
|
|
370
|
+
},
|
|
371
|
+
"file": "quality-metrics/SKILL.md"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "regression-testing",
|
|
375
|
+
"category": "specialized-testing",
|
|
376
|
+
"validation": {
|
|
377
|
+
"status": "passing",
|
|
378
|
+
"schemaPath": "schemas/output.json",
|
|
379
|
+
"validatorPath": "scripts/validate.sh",
|
|
380
|
+
"evalPath": "evals/regression-testing.yaml"
|
|
381
|
+
},
|
|
382
|
+
"file": "regression-testing/SKILL.md"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"name": "risk-based-testing",
|
|
386
|
+
"category": "testing-methodologies",
|
|
387
|
+
"validation": {
|
|
388
|
+
"status": "passing",
|
|
389
|
+
"schemaPath": "schemas/output.json",
|
|
390
|
+
"validatorPath": "scripts/validate.sh",
|
|
391
|
+
"evalPath": "evals/risk-based-testing.yaml"
|
|
392
|
+
},
|
|
393
|
+
"file": "risk-based-testing/SKILL.md"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "security-testing",
|
|
397
|
+
"category": "specialized-testing",
|
|
398
|
+
"validation": {
|
|
399
|
+
"status": "passing",
|
|
400
|
+
"schemaPath": "schemas/output.json",
|
|
401
|
+
"validatorPath": "scripts/validate.sh",
|
|
402
|
+
"evalPath": "evals/security-testing.yaml"
|
|
403
|
+
},
|
|
404
|
+
"file": "security-testing/SKILL.md"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "security-visual-testing",
|
|
408
|
+
"category": "specialized-testing",
|
|
409
|
+
"validation": {
|
|
410
|
+
"status": "passing",
|
|
411
|
+
"schemaPath": "schemas/output.json",
|
|
412
|
+
"validatorPath": "scripts/validate.sh",
|
|
413
|
+
"evalPath": "evals/security-visual-testing.yaml"
|
|
414
|
+
},
|
|
415
|
+
"file": "security-visual-testing/SKILL.md"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"name": "shift-left-testing",
|
|
419
|
+
"category": "testing-methodologies",
|
|
420
|
+
"validation": {
|
|
421
|
+
"status": "passing",
|
|
422
|
+
"schemaPath": "schemas/output.json",
|
|
423
|
+
"validatorPath": "scripts/validate.sh",
|
|
424
|
+
"evalPath": "evals/shift-left-testing.yaml"
|
|
425
|
+
},
|
|
426
|
+
"file": "shift-left-testing/SKILL.md"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"name": "shift-right-testing",
|
|
430
|
+
"category": "testing-methodologies",
|
|
431
|
+
"validation": {
|
|
432
|
+
"status": "passing",
|
|
433
|
+
"schemaPath": "schemas/output.json",
|
|
434
|
+
"validatorPath": "scripts/validate.sh",
|
|
435
|
+
"evalPath": "evals/shift-right-testing.yaml"
|
|
436
|
+
},
|
|
437
|
+
"file": "shift-right-testing/SKILL.md"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "test-automation-strategy",
|
|
441
|
+
"category": "testing-methodologies",
|
|
442
|
+
"validation": {
|
|
443
|
+
"status": "passing",
|
|
444
|
+
"schemaPath": "schemas/output.json",
|
|
445
|
+
"validatorPath": "scripts/validate.sh",
|
|
446
|
+
"evalPath": "evals/test-automation-strategy.yaml"
|
|
447
|
+
},
|
|
448
|
+
"file": "test-automation-strategy/SKILL.md"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"name": "test-data-management",
|
|
452
|
+
"category": "specialized-testing",
|
|
453
|
+
"validation": {
|
|
454
|
+
"status": "passing",
|
|
455
|
+
"schemaPath": "schemas/output.json",
|
|
456
|
+
"validatorPath": "scripts/validate.sh",
|
|
457
|
+
"evalPath": "evals/test-data-management.yaml"
|
|
458
|
+
},
|
|
459
|
+
"file": "test-data-management/SKILL.md"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "test-design-techniques",
|
|
463
|
+
"category": "specialized-testing",
|
|
464
|
+
"validation": {
|
|
465
|
+
"status": "passing",
|
|
466
|
+
"schemaPath": "schemas/output.json",
|
|
467
|
+
"validatorPath": "scripts/validate.sh",
|
|
468
|
+
"evalPath": "evals/test-design-techniques.yaml"
|
|
469
|
+
},
|
|
470
|
+
"file": "test-design-techniques/SKILL.md"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "test-reporting-analytics",
|
|
474
|
+
"category": "analytics",
|
|
475
|
+
"validation": {
|
|
476
|
+
"status": "passing",
|
|
477
|
+
"schemaPath": "schemas/output.json",
|
|
478
|
+
"validatorPath": "scripts/validate.sh",
|
|
479
|
+
"evalPath": "evals/test-reporting-analytics.yaml"
|
|
480
|
+
},
|
|
481
|
+
"file": "test-reporting-analytics/SKILL.md"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "testability-scoring",
|
|
485
|
+
"category": "testing-methodologies",
|
|
486
|
+
"validation": {
|
|
487
|
+
"status": "passing",
|
|
488
|
+
"schemaPath": "schemas/output.json",
|
|
489
|
+
"validatorPath": "scripts/validate.sh",
|
|
490
|
+
"evalPath": "evals/testability-scoring.yaml"
|
|
491
|
+
},
|
|
492
|
+
"file": "testability-scoring/SKILL.md"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"name": "verification-quality",
|
|
496
|
+
"category": "quality-assurance",
|
|
497
|
+
"validation": {
|
|
498
|
+
"status": "passing",
|
|
499
|
+
"schemaPath": "schemas/output.json",
|
|
500
|
+
"validatorPath": "scripts/validate.sh",
|
|
501
|
+
"evalPath": "evals/verification-quality.yaml"
|
|
502
|
+
},
|
|
503
|
+
"file": "verification-quality/SKILL.md"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "visual-testing-advanced",
|
|
507
|
+
"category": "specialized-testing",
|
|
508
|
+
"validation": {
|
|
509
|
+
"status": "passing",
|
|
510
|
+
"schemaPath": "schemas/output.json",
|
|
511
|
+
"validatorPath": "scripts/validate.sh",
|
|
512
|
+
"evalPath": "evals/visual-testing-advanced.yaml"
|
|
513
|
+
},
|
|
514
|
+
"file": "visual-testing-advanced/SKILL.md"
|
|
515
|
+
}
|
|
516
|
+
],
|
|
517
|
+
"tier2": [
|
|
518
|
+
{
|
|
519
|
+
"name": "brutal-honesty-review",
|
|
520
|
+
"category": "quality-review",
|
|
521
|
+
"validation": {
|
|
522
|
+
"status": "unknown",
|
|
523
|
+
"schemaPath": "schemas/output.json",
|
|
524
|
+
"validatorPath": "scripts/validate.sh"
|
|
525
|
+
},
|
|
526
|
+
"file": "brutal-honesty-review/SKILL.md"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "bug-reporting-excellence",
|
|
530
|
+
"category": "quality-communication",
|
|
531
|
+
"validation": {
|
|
532
|
+
"status": "unknown",
|
|
533
|
+
"schemaPath": "schemas/output.json",
|
|
534
|
+
"validatorPath": "scripts/validate.sh"
|
|
535
|
+
},
|
|
536
|
+
"file": "bug-reporting-excellence/SKILL.md"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
"name": "code-review-quality",
|
|
540
|
+
"category": "development-practices",
|
|
541
|
+
"validation": {
|
|
542
|
+
"status": "unknown",
|
|
543
|
+
"schemaPath": "schemas/output.json",
|
|
544
|
+
"validatorPath": "scripts/validate.sh"
|
|
545
|
+
},
|
|
546
|
+
"file": "code-review-quality/SKILL.md"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"name": "qe-iterative-loop",
|
|
550
|
+
"validation": {
|
|
551
|
+
"status": "unknown",
|
|
552
|
+
"schemaPath": "schemas/output.json",
|
|
553
|
+
"validatorPath": "scripts/validate.sh"
|
|
554
|
+
},
|
|
555
|
+
"file": "qe-iterative-loop/SKILL.md"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "refactoring-patterns",
|
|
559
|
+
"category": "development-practices",
|
|
560
|
+
"validation": {
|
|
561
|
+
"status": "unknown",
|
|
562
|
+
"schemaPath": "schemas/output.json",
|
|
563
|
+
"validatorPath": "scripts/validate.sh"
|
|
564
|
+
},
|
|
565
|
+
"file": "refactoring-patterns/SKILL.md"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "sherlock-review",
|
|
569
|
+
"category": "quality-review",
|
|
570
|
+
"validation": {
|
|
571
|
+
"status": "unknown",
|
|
572
|
+
"schemaPath": "schemas/output.json",
|
|
573
|
+
"validatorPath": "scripts/validate.sh"
|
|
574
|
+
},
|
|
575
|
+
"file": "sherlock-review/SKILL.md"
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "tdd-london-chicago",
|
|
579
|
+
"category": "development-practices",
|
|
580
|
+
"validation": {
|
|
581
|
+
"status": "unknown",
|
|
582
|
+
"schemaPath": "schemas/output.json",
|
|
583
|
+
"validatorPath": "scripts/validate.sh"
|
|
584
|
+
},
|
|
585
|
+
"file": "tdd-london-chicago/SKILL.md"
|
|
586
|
+
}
|
|
587
|
+
],
|
|
588
|
+
"tier1": [
|
|
589
|
+
{
|
|
590
|
+
"name": "agentic-quality-engineering",
|
|
591
|
+
"category": "qe-core",
|
|
592
|
+
"validation": {
|
|
593
|
+
"status": "unknown",
|
|
594
|
+
"schemaPath": "schemas/output.json"
|
|
595
|
+
},
|
|
596
|
+
"file": "agentic-quality-engineering/SKILL.md"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"name": "aqe-v2-v3-migration",
|
|
600
|
+
"validation": {
|
|
601
|
+
"status": "unknown",
|
|
602
|
+
"schemaPath": "schemas/output.json"
|
|
603
|
+
},
|
|
604
|
+
"file": "aqe-v2-v3-migration/SKILL.md"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "consultancy-practices",
|
|
608
|
+
"category": "professional-practice",
|
|
609
|
+
"validation": {
|
|
610
|
+
"status": "unknown",
|
|
611
|
+
"schemaPath": "schemas/output.json"
|
|
612
|
+
},
|
|
613
|
+
"file": "consultancy-practices/SKILL.md"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"name": "technical-writing",
|
|
617
|
+
"category": "communication",
|
|
618
|
+
"validation": {
|
|
619
|
+
"status": "unknown",
|
|
620
|
+
"schemaPath": "schemas/output.json"
|
|
621
|
+
},
|
|
622
|
+
"file": "technical-writing/SKILL.md"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "test-environment-management",
|
|
626
|
+
"category": "specialized-testing",
|
|
627
|
+
"validation": {
|
|
628
|
+
"status": "unknown",
|
|
629
|
+
"schemaPath": "schemas/output.json"
|
|
630
|
+
},
|
|
631
|
+
"file": "test-environment-management/SKILL.md"
|
|
632
|
+
}
|
|
633
|
+
],
|
|
634
|
+
"tier0": [
|
|
635
|
+
{
|
|
636
|
+
"name": "agentdb-advanced",
|
|
637
|
+
"file": "agentdb-advanced/SKILL.md"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "agentdb-learning",
|
|
641
|
+
"file": "agentdb-learning/SKILL.md"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "agentdb-memory-patterns",
|
|
645
|
+
"file": "agentdb-memory-patterns/SKILL.md"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"name": "agentdb-optimization",
|
|
649
|
+
"file": "agentdb-optimization/SKILL.md"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"name": "agentdb-vector-search",
|
|
653
|
+
"file": "agentdb-vector-search/SKILL.md"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"name": "agentic-jujutsu",
|
|
657
|
+
"file": "agentic-jujutsu/SKILL.md"
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"name": "context-driven-testing",
|
|
661
|
+
"category": "testing-methodologies",
|
|
662
|
+
"file": "context-driven-testing/SKILL.md"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "exploratory-testing-advanced",
|
|
666
|
+
"category": "testing-methodologies",
|
|
667
|
+
"file": "exploratory-testing-advanced/SKILL.md"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "flow-nexus-neural",
|
|
671
|
+
"category": "ai-ml",
|
|
672
|
+
"file": "flow-nexus-neural/SKILL.md"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "flow-nexus-platform",
|
|
676
|
+
"category": "platform",
|
|
677
|
+
"file": "flow-nexus-platform/SKILL.md"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"name": "flow-nexus-swarm",
|
|
681
|
+
"category": "orchestration",
|
|
682
|
+
"file": "flow-nexus-swarm/SKILL.md"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"name": "github-code-review",
|
|
686
|
+
"category": "github",
|
|
687
|
+
"file": "github-code-review/SKILL.md"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"name": "github-multi-repo",
|
|
691
|
+
"category": "github-integration",
|
|
692
|
+
"file": "github-multi-repo/SKILL.md"
|
|
693
|
+
},
|
|
694
|
+
{
|
|
695
|
+
"name": "github-project-management",
|
|
696
|
+
"category": "github",
|
|
697
|
+
"file": "github-project-management/SKILL.md"
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "github-release-management",
|
|
701
|
+
"category": "github",
|
|
702
|
+
"file": "github-release-management/SKILL.md"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"name": "github-workflow-automation",
|
|
706
|
+
"category": "github",
|
|
707
|
+
"file": "github-workflow-automation/SKILL.md"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "hive-mind-advanced",
|
|
711
|
+
"category": "coordination",
|
|
712
|
+
"file": "hive-mind-advanced/SKILL.md"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"name": "holistic-testing-pact",
|
|
716
|
+
"category": "testing-methodologies",
|
|
717
|
+
"file": "holistic-testing-pact/SKILL.md"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"name": "hooks-automation",
|
|
721
|
+
"file": "hooks-automation/SKILL.md"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "iterative-loop",
|
|
725
|
+
"file": "iterative-loop/SKILL.md"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"name": "pair-programming",
|
|
729
|
+
"file": "pair-programming/SKILL.md"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "reasoningbank-agentdb",
|
|
733
|
+
"file": "reasoningbank-agentdb/SKILL.md"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
"name": "reasoningbank-intelligence",
|
|
737
|
+
"file": "reasoningbank-intelligence/SKILL.md"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"name": "six-thinking-hats",
|
|
741
|
+
"category": "methodology",
|
|
742
|
+
"file": "six-thinking-hats/SKILL.md"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"name": "skill-builder",
|
|
746
|
+
"file": "skill-builder/SKILL.md"
|
|
747
|
+
},
|
|
748
|
+
{
|
|
749
|
+
"name": "sparc-methodology",
|
|
750
|
+
"category": "development",
|
|
751
|
+
"file": "sparc-methodology/SKILL.md"
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"name": "stream-chain",
|
|
755
|
+
"category": "workflow",
|
|
756
|
+
"file": "stream-chain/SKILL.md"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "swarm-advanced",
|
|
760
|
+
"category": "orchestration",
|
|
761
|
+
"file": "swarm-advanced/SKILL.md"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"name": "swarm-orchestration",
|
|
765
|
+
"file": "swarm-orchestration/SKILL.md"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"name": "v3-cli-modernization",
|
|
769
|
+
"file": "v3-cli-modernization/SKILL.md"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"name": "v3-core-implementation",
|
|
773
|
+
"file": "v3-core-implementation/SKILL.md"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "v3-ddd-architecture",
|
|
777
|
+
"file": "v3-ddd-architecture/SKILL.md"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"name": "v3-integration-deep",
|
|
781
|
+
"file": "v3-integration-deep/SKILL.md"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"name": "v3-mcp-optimization",
|
|
785
|
+
"file": "v3-mcp-optimization/SKILL.md"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"name": "v3-memory-unification",
|
|
789
|
+
"file": "v3-memory-unification/SKILL.md"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"name": "v3-performance-optimization",
|
|
793
|
+
"file": "v3-performance-optimization/SKILL.md"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"name": "v3-security-overhaul",
|
|
797
|
+
"file": "v3-security-overhaul/SKILL.md"
|
|
798
|
+
},
|
|
799
|
+
{
|
|
800
|
+
"name": "v3-swarm-coordination",
|
|
801
|
+
"file": "v3-swarm-coordination/SKILL.md"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"name": "xp-practices",
|
|
805
|
+
"category": "methodology",
|
|
806
|
+
"file": "xp-practices/SKILL.md"
|
|
807
|
+
}
|
|
808
|
+
]
|
|
809
|
+
},
|
|
810
|
+
"skills": {
|
|
811
|
+
"a11y-ally": {
|
|
812
|
+
"trustTier": 3,
|
|
813
|
+
"category": "specialized-testing",
|
|
814
|
+
"priority": "critical",
|
|
815
|
+
"validation": {
|
|
816
|
+
"status": "passing",
|
|
817
|
+
"schemaPath": "schemas/output.json",
|
|
818
|
+
"validatorPath": "scripts/validate.sh",
|
|
819
|
+
"evalPath": "evals/a11y-ally.yaml"
|
|
820
|
+
},
|
|
821
|
+
"file": "a11y-ally/SKILL.md",
|
|
822
|
+
"tokenEstimate": 10000,
|
|
823
|
+
"tags": [
|
|
824
|
+
"accessibility",
|
|
825
|
+
"wcag",
|
|
826
|
+
"a11y",
|
|
827
|
+
"video",
|
|
828
|
+
"captions",
|
|
829
|
+
"audiodesc",
|
|
830
|
+
"vtt",
|
|
831
|
+
"eu-compliance",
|
|
832
|
+
"context-aware",
|
|
833
|
+
"remediation",
|
|
834
|
+
"axe-core",
|
|
835
|
+
"pa11y",
|
|
836
|
+
"lighthouse",
|
|
837
|
+
"parallel",
|
|
838
|
+
"resilient",
|
|
839
|
+
"graceful-degradation",
|
|
840
|
+
"retry"
|
|
841
|
+
],
|
|
842
|
+
"lastUpdated": "2026-01-26"
|
|
843
|
+
},
|
|
844
|
+
"accessibility-testing": {
|
|
845
|
+
"trustTier": 3,
|
|
846
|
+
"category": "specialized-testing",
|
|
847
|
+
"priority": "high",
|
|
848
|
+
"validation": {
|
|
849
|
+
"status": "passing",
|
|
850
|
+
"schemaPath": "schemas/output.json",
|
|
851
|
+
"validatorPath": "scripts/validate.sh",
|
|
852
|
+
"evalPath": "evals/accessibility-testing.yaml"
|
|
853
|
+
},
|
|
854
|
+
"file": "accessibility-testing/SKILL.md",
|
|
855
|
+
"tokenEstimate": 1100,
|
|
856
|
+
"tags": [
|
|
857
|
+
"accessibility",
|
|
858
|
+
"wcag",
|
|
859
|
+
"a11y",
|
|
860
|
+
"screen-reader",
|
|
861
|
+
"ada",
|
|
862
|
+
"section-508",
|
|
863
|
+
"inclusive"
|
|
864
|
+
],
|
|
865
|
+
"lastUpdated": "2025-12-02"
|
|
866
|
+
},
|
|
867
|
+
"api-testing-patterns": {
|
|
868
|
+
"trustTier": 3,
|
|
869
|
+
"category": "testing-methodologies",
|
|
870
|
+
"priority": "high",
|
|
871
|
+
"validation": {
|
|
872
|
+
"status": "passing",
|
|
873
|
+
"schemaPath": "schemas/output.json",
|
|
874
|
+
"validatorPath": "scripts/validate.sh",
|
|
875
|
+
"evalPath": "evals/api-testing-patterns.yaml"
|
|
876
|
+
},
|
|
877
|
+
"file": "api-testing-patterns/SKILL.md",
|
|
878
|
+
"tokenEstimate": 1200,
|
|
879
|
+
"tags": [
|
|
880
|
+
"api",
|
|
881
|
+
"rest",
|
|
882
|
+
"graphql",
|
|
883
|
+
"contract-testing",
|
|
884
|
+
"pact",
|
|
885
|
+
"integration",
|
|
886
|
+
"microservices"
|
|
887
|
+
],
|
|
888
|
+
"lastUpdated": "2025-12-02"
|
|
889
|
+
},
|
|
890
|
+
"chaos-engineering-resilience": {
|
|
891
|
+
"trustTier": 3,
|
|
892
|
+
"category": "specialized-testing",
|
|
893
|
+
"priority": "high",
|
|
894
|
+
"validation": {
|
|
895
|
+
"status": "passing",
|
|
896
|
+
"schemaPath": "schemas/output.json",
|
|
897
|
+
"validatorPath": "scripts/validate.sh",
|
|
898
|
+
"evalPath": "evals/chaos-engineering-resilience.yaml"
|
|
899
|
+
},
|
|
900
|
+
"file": "chaos-engineering-resilience/SKILL.md",
|
|
901
|
+
"tokenEstimate": 900,
|
|
902
|
+
"tags": [
|
|
903
|
+
"chaos",
|
|
904
|
+
"resilience",
|
|
905
|
+
"fault-injection",
|
|
906
|
+
"distributed-systems",
|
|
907
|
+
"recovery",
|
|
908
|
+
"netflix"
|
|
909
|
+
],
|
|
910
|
+
"lastUpdated": "2025-12-02"
|
|
911
|
+
},
|
|
912
|
+
"cicd-pipeline-qe-orchestrator": {
|
|
913
|
+
"trustTier": 3,
|
|
914
|
+
"category": "infrastructure",
|
|
915
|
+
"priority": "critical",
|
|
916
|
+
"validation": {
|
|
917
|
+
"status": "passing",
|
|
918
|
+
"schemaPath": "schemas/output.json",
|
|
919
|
+
"validatorPath": "scripts/validate.sh",
|
|
920
|
+
"evalPath": "evals/cicd-pipeline-qe-orchestrator.yaml"
|
|
921
|
+
},
|
|
922
|
+
"file": "cicd-pipeline-qe-orchestrator/SKILL.md",
|
|
923
|
+
"tokenEstimate": 1300,
|
|
924
|
+
"tags": [
|
|
925
|
+
"cicd",
|
|
926
|
+
"pipeline",
|
|
927
|
+
"orchestration",
|
|
928
|
+
"quality-gates",
|
|
929
|
+
"shift-left",
|
|
930
|
+
"shift-right",
|
|
931
|
+
"fleet"
|
|
932
|
+
],
|
|
933
|
+
"lastUpdated": "2025-12-02"
|
|
934
|
+
},
|
|
935
|
+
"compatibility-testing": {
|
|
936
|
+
"trustTier": 3,
|
|
937
|
+
"category": "specialized-testing",
|
|
938
|
+
"priority": "medium",
|
|
939
|
+
"validation": {
|
|
940
|
+
"status": "passing",
|
|
941
|
+
"schemaPath": "schemas/output.json",
|
|
942
|
+
"validatorPath": "scripts/validate.sh",
|
|
943
|
+
"evalPath": "evals/compatibility-testing.yaml"
|
|
944
|
+
},
|
|
945
|
+
"file": "compatibility-testing/SKILL.md",
|
|
946
|
+
"tokenEstimate": 800,
|
|
947
|
+
"tags": [
|
|
948
|
+
"compatibility",
|
|
949
|
+
"cross-browser",
|
|
950
|
+
"responsive",
|
|
951
|
+
"browserstack",
|
|
952
|
+
"playwright",
|
|
953
|
+
"devices"
|
|
954
|
+
],
|
|
955
|
+
"lastUpdated": "2025-12-02"
|
|
956
|
+
},
|
|
957
|
+
"compliance-testing": {
|
|
958
|
+
"trustTier": 3,
|
|
959
|
+
"category": "specialized-testing",
|
|
960
|
+
"priority": "high",
|
|
961
|
+
"validation": {
|
|
962
|
+
"status": "passing",
|
|
963
|
+
"schemaPath": "schemas/output.json",
|
|
964
|
+
"validatorPath": "scripts/validate.sh",
|
|
965
|
+
"evalPath": "evals/compliance-testing.yaml"
|
|
966
|
+
},
|
|
967
|
+
"file": "compliance-testing/SKILL.md",
|
|
968
|
+
"tokenEstimate": 900,
|
|
969
|
+
"tags": [
|
|
970
|
+
"compliance",
|
|
971
|
+
"gdpr",
|
|
972
|
+
"hipaa",
|
|
973
|
+
"pci-dss",
|
|
974
|
+
"ccpa",
|
|
975
|
+
"soc2",
|
|
976
|
+
"privacy",
|
|
977
|
+
"audit"
|
|
978
|
+
],
|
|
979
|
+
"lastUpdated": "2025-12-02"
|
|
980
|
+
},
|
|
981
|
+
"contract-testing": {
|
|
982
|
+
"trustTier": 3,
|
|
983
|
+
"category": "testing-methodologies",
|
|
984
|
+
"priority": "high",
|
|
985
|
+
"validation": {
|
|
986
|
+
"status": "passing",
|
|
987
|
+
"schemaPath": "schemas/output.json",
|
|
988
|
+
"validatorPath": "scripts/validate.sh",
|
|
989
|
+
"evalPath": "evals/contract-testing.yaml"
|
|
990
|
+
},
|
|
991
|
+
"file": "contract-testing/SKILL.md",
|
|
992
|
+
"tokenEstimate": 900,
|
|
993
|
+
"tags": [
|
|
994
|
+
"contract",
|
|
995
|
+
"pact",
|
|
996
|
+
"consumer-driven",
|
|
997
|
+
"api",
|
|
998
|
+
"microservices",
|
|
999
|
+
"schema-validation"
|
|
1000
|
+
],
|
|
1001
|
+
"lastUpdated": "2025-12-02"
|
|
1002
|
+
},
|
|
1003
|
+
"database-testing": {
|
|
1004
|
+
"trustTier": 3,
|
|
1005
|
+
"category": "specialized-testing",
|
|
1006
|
+
"priority": "high",
|
|
1007
|
+
"validation": {
|
|
1008
|
+
"status": "passing",
|
|
1009
|
+
"schemaPath": "schemas/output.json",
|
|
1010
|
+
"validatorPath": "scripts/validate.sh",
|
|
1011
|
+
"evalPath": "evals/database-testing.yaml"
|
|
1012
|
+
},
|
|
1013
|
+
"file": "database-testing/SKILL.md",
|
|
1014
|
+
"tokenEstimate": 900,
|
|
1015
|
+
"tags": [
|
|
1016
|
+
"database",
|
|
1017
|
+
"schema",
|
|
1018
|
+
"migration",
|
|
1019
|
+
"transactions",
|
|
1020
|
+
"integrity",
|
|
1021
|
+
"sql",
|
|
1022
|
+
"performance"
|
|
1023
|
+
],
|
|
1024
|
+
"lastUpdated": "2025-12-02"
|
|
1025
|
+
},
|
|
1026
|
+
"localization-testing": {
|
|
1027
|
+
"trustTier": 3,
|
|
1028
|
+
"category": "specialized-testing",
|
|
1029
|
+
"priority": "medium",
|
|
1030
|
+
"validation": {
|
|
1031
|
+
"status": "passing",
|
|
1032
|
+
"schemaPath": "schemas/output.json",
|
|
1033
|
+
"validatorPath": "scripts/validate.sh",
|
|
1034
|
+
"evalPath": "evals/localization-testing.yaml"
|
|
1035
|
+
},
|
|
1036
|
+
"file": "localization-testing/SKILL.md",
|
|
1037
|
+
"tokenEstimate": 800,
|
|
1038
|
+
"tags": [
|
|
1039
|
+
"localization",
|
|
1040
|
+
"i18n",
|
|
1041
|
+
"l10n",
|
|
1042
|
+
"translation",
|
|
1043
|
+
"rtl",
|
|
1044
|
+
"unicode",
|
|
1045
|
+
"locale"
|
|
1046
|
+
],
|
|
1047
|
+
"lastUpdated": "2025-12-02"
|
|
1048
|
+
},
|
|
1049
|
+
"mobile-testing": {
|
|
1050
|
+
"trustTier": 3,
|
|
1051
|
+
"category": "specialized-testing",
|
|
1052
|
+
"priority": "high",
|
|
1053
|
+
"validation": {
|
|
1054
|
+
"status": "passing",
|
|
1055
|
+
"schemaPath": "schemas/output.json",
|
|
1056
|
+
"validatorPath": "scripts/validate.sh",
|
|
1057
|
+
"evalPath": "evals/mobile-testing.yaml"
|
|
1058
|
+
},
|
|
1059
|
+
"file": "mobile-testing/SKILL.md",
|
|
1060
|
+
"tokenEstimate": 1000,
|
|
1061
|
+
"tags": [
|
|
1062
|
+
"mobile",
|
|
1063
|
+
"ios",
|
|
1064
|
+
"android",
|
|
1065
|
+
"appium",
|
|
1066
|
+
"gestures",
|
|
1067
|
+
"device-fragmentation",
|
|
1068
|
+
"sensors"
|
|
1069
|
+
],
|
|
1070
|
+
"lastUpdated": "2025-12-02"
|
|
1071
|
+
},
|
|
1072
|
+
"mutation-testing": {
|
|
1073
|
+
"trustTier": 3,
|
|
1074
|
+
"category": "specialized-testing",
|
|
1075
|
+
"priority": "high",
|
|
1076
|
+
"validation": {
|
|
1077
|
+
"status": "passing",
|
|
1078
|
+
"schemaPath": "schemas/output.json",
|
|
1079
|
+
"validatorPath": "scripts/validate.sh",
|
|
1080
|
+
"evalPath": "evals/mutation-testing.yaml"
|
|
1081
|
+
},
|
|
1082
|
+
"file": "mutation-testing/SKILL.md",
|
|
1083
|
+
"tokenEstimate": 900,
|
|
1084
|
+
"tags": [
|
|
1085
|
+
"mutation",
|
|
1086
|
+
"stryker",
|
|
1087
|
+
"test-quality",
|
|
1088
|
+
"kill-rate",
|
|
1089
|
+
"assertions",
|
|
1090
|
+
"effectiveness"
|
|
1091
|
+
],
|
|
1092
|
+
"lastUpdated": "2025-12-02"
|
|
1093
|
+
},
|
|
1094
|
+
"n8n-expression-testing": {
|
|
1095
|
+
"trustTier": 3,
|
|
1096
|
+
"category": "n8n-testing",
|
|
1097
|
+
"priority": "high",
|
|
1098
|
+
"validation": {
|
|
1099
|
+
"status": "passing",
|
|
1100
|
+
"schemaPath": "schemas/output.json",
|
|
1101
|
+
"validatorPath": "scripts/validate.sh",
|
|
1102
|
+
"evalPath": "evals/n8n-expression-testing.yaml"
|
|
1103
|
+
},
|
|
1104
|
+
"file": "n8n-expression-testing/SKILL.md",
|
|
1105
|
+
"tokenEstimate": 1000,
|
|
1106
|
+
"tags": [
|
|
1107
|
+
"n8n",
|
|
1108
|
+
"expressions",
|
|
1109
|
+
"javascript",
|
|
1110
|
+
"data-transformation",
|
|
1111
|
+
"validation"
|
|
1112
|
+
],
|
|
1113
|
+
"lastUpdated": "2025-12-15"
|
|
1114
|
+
},
|
|
1115
|
+
"n8n-integration-testing-patterns": {
|
|
1116
|
+
"trustTier": 3,
|
|
1117
|
+
"category": "n8n-testing",
|
|
1118
|
+
"priority": "high",
|
|
1119
|
+
"validation": {
|
|
1120
|
+
"status": "passing",
|
|
1121
|
+
"schemaPath": "schemas/output.json",
|
|
1122
|
+
"validatorPath": "scripts/validate.sh",
|
|
1123
|
+
"evalPath": "evals/n8n-integration-testing-patterns.yaml"
|
|
1124
|
+
},
|
|
1125
|
+
"file": "n8n-integration-testing-patterns/SKILL.md",
|
|
1126
|
+
"tokenEstimate": 1100,
|
|
1127
|
+
"tags": [
|
|
1128
|
+
"n8n",
|
|
1129
|
+
"integration",
|
|
1130
|
+
"api",
|
|
1131
|
+
"authentication",
|
|
1132
|
+
"oauth",
|
|
1133
|
+
"rate-limiting",
|
|
1134
|
+
"testing"
|
|
1135
|
+
],
|
|
1136
|
+
"lastUpdated": "2025-12-15"
|
|
1137
|
+
},
|
|
1138
|
+
"n8n-security-testing": {
|
|
1139
|
+
"trustTier": 3,
|
|
1140
|
+
"category": "n8n-testing",
|
|
1141
|
+
"priority": "critical",
|
|
1142
|
+
"validation": {
|
|
1143
|
+
"status": "passing",
|
|
1144
|
+
"schemaPath": "schemas/output.json",
|
|
1145
|
+
"validatorPath": "scripts/validate.sh",
|
|
1146
|
+
"evalPath": "evals/n8n-security-testing.yaml"
|
|
1147
|
+
},
|
|
1148
|
+
"file": "n8n-security-testing/SKILL.md",
|
|
1149
|
+
"tokenEstimate": 1100,
|
|
1150
|
+
"tags": [
|
|
1151
|
+
"n8n",
|
|
1152
|
+
"security",
|
|
1153
|
+
"credentials",
|
|
1154
|
+
"oauth",
|
|
1155
|
+
"api-keys",
|
|
1156
|
+
"encryption",
|
|
1157
|
+
"testing"
|
|
1158
|
+
],
|
|
1159
|
+
"lastUpdated": "2025-12-15"
|
|
1160
|
+
},
|
|
1161
|
+
"n8n-trigger-testing-strategies": {
|
|
1162
|
+
"trustTier": 3,
|
|
1163
|
+
"category": "n8n-testing",
|
|
1164
|
+
"priority": "high",
|
|
1165
|
+
"validation": {
|
|
1166
|
+
"status": "passing",
|
|
1167
|
+
"schemaPath": "schemas/output.json",
|
|
1168
|
+
"validatorPath": "scripts/validate.sh",
|
|
1169
|
+
"evalPath": "evals/n8n-trigger-testing-strategies.yaml"
|
|
1170
|
+
},
|
|
1171
|
+
"file": "n8n-trigger-testing-strategies/SKILL.md",
|
|
1172
|
+
"tokenEstimate": 1000,
|
|
1173
|
+
"tags": [
|
|
1174
|
+
"n8n",
|
|
1175
|
+
"triggers",
|
|
1176
|
+
"webhook",
|
|
1177
|
+
"schedule",
|
|
1178
|
+
"cron",
|
|
1179
|
+
"polling",
|
|
1180
|
+
"testing"
|
|
1181
|
+
],
|
|
1182
|
+
"lastUpdated": "2025-12-15"
|
|
1183
|
+
},
|
|
1184
|
+
"n8n-workflow-testing-fundamentals": {
|
|
1185
|
+
"trustTier": 3,
|
|
1186
|
+
"category": "n8n-testing",
|
|
1187
|
+
"priority": "high",
|
|
1188
|
+
"validation": {
|
|
1189
|
+
"status": "passing",
|
|
1190
|
+
"schemaPath": "schemas/output.json",
|
|
1191
|
+
"validatorPath": "scripts/validate.sh",
|
|
1192
|
+
"evalPath": "evals/n8n-workflow-testing-fundamentals.yaml"
|
|
1193
|
+
},
|
|
1194
|
+
"file": "n8n-workflow-testing-fundamentals/SKILL.md",
|
|
1195
|
+
"tokenEstimate": 1200,
|
|
1196
|
+
"tags": [
|
|
1197
|
+
"n8n",
|
|
1198
|
+
"workflow",
|
|
1199
|
+
"automation",
|
|
1200
|
+
"testing",
|
|
1201
|
+
"data-flow",
|
|
1202
|
+
"nodes",
|
|
1203
|
+
"triggers"
|
|
1204
|
+
],
|
|
1205
|
+
"lastUpdated": "2025-12-15"
|
|
1206
|
+
},
|
|
1207
|
+
"performance-analysis": {
|
|
1208
|
+
"trustTier": 3,
|
|
1209
|
+
"category": "monitoring",
|
|
1210
|
+
"validation": {
|
|
1211
|
+
"status": "passing",
|
|
1212
|
+
"schemaPath": "schemas/output.json",
|
|
1213
|
+
"validatorPath": "scripts/validate.sh",
|
|
1214
|
+
"evalPath": "evals/performance-analysis.yaml"
|
|
1215
|
+
},
|
|
1216
|
+
"file": "performance-analysis/SKILL.md",
|
|
1217
|
+
"tags": [
|
|
1218
|
+
"performance",
|
|
1219
|
+
"bottleneck",
|
|
1220
|
+
"optimization",
|
|
1221
|
+
"profiling",
|
|
1222
|
+
"metrics",
|
|
1223
|
+
"analysis"
|
|
1224
|
+
]
|
|
1225
|
+
},
|
|
1226
|
+
"performance-testing": {
|
|
1227
|
+
"trustTier": 3,
|
|
1228
|
+
"category": "specialized-testing",
|
|
1229
|
+
"priority": "high",
|
|
1230
|
+
"validation": {
|
|
1231
|
+
"status": "passing",
|
|
1232
|
+
"schemaPath": "schemas/output.json",
|
|
1233
|
+
"validatorPath": "scripts/validate.sh",
|
|
1234
|
+
"evalPath": "evals/performance-testing.yaml"
|
|
1235
|
+
},
|
|
1236
|
+
"file": "performance-testing/SKILL.md",
|
|
1237
|
+
"tokenEstimate": 1100,
|
|
1238
|
+
"tags": [
|
|
1239
|
+
"performance",
|
|
1240
|
+
"load-testing",
|
|
1241
|
+
"stress-testing",
|
|
1242
|
+
"scalability",
|
|
1243
|
+
"k6",
|
|
1244
|
+
"bottlenecks"
|
|
1245
|
+
],
|
|
1246
|
+
"lastUpdated": "2025-12-02"
|
|
1247
|
+
},
|
|
1248
|
+
"qcsd-ideation-swarm": {
|
|
1249
|
+
"trustTier": 3,
|
|
1250
|
+
"category": "qcsd-phases",
|
|
1251
|
+
"priority": "critical",
|
|
1252
|
+
"validation": {
|
|
1253
|
+
"status": "passing",
|
|
1254
|
+
"schemaPath": "schemas/output.json",
|
|
1255
|
+
"validatorPath": "scripts/validate.sh",
|
|
1256
|
+
"evalPath": "evals/qcsd-ideation-swarm.yaml"
|
|
1257
|
+
},
|
|
1258
|
+
"file": "qcsd-ideation-swarm/SKILL.md",
|
|
1259
|
+
"tokenEstimate": 3500,
|
|
1260
|
+
"tags": [
|
|
1261
|
+
"qcsd",
|
|
1262
|
+
"ideation",
|
|
1263
|
+
"htsm",
|
|
1264
|
+
"quality-criteria",
|
|
1265
|
+
"risk-storming",
|
|
1266
|
+
"testability",
|
|
1267
|
+
"swarm",
|
|
1268
|
+
"parallel",
|
|
1269
|
+
"ddd"
|
|
1270
|
+
],
|
|
1271
|
+
"lastUpdated": "2026-01-28"
|
|
1272
|
+
},
|
|
1273
|
+
"qe-chaos-resilience": {
|
|
1274
|
+
"trustTier": 3,
|
|
1275
|
+
"validation": {
|
|
1276
|
+
"status": "passing",
|
|
1277
|
+
"schemaPath": "schemas/output.json",
|
|
1278
|
+
"validatorPath": "scripts/validate.sh",
|
|
1279
|
+
"evalPath": "evals/qe-chaos-resilience.yaml"
|
|
1280
|
+
},
|
|
1281
|
+
"file": "qe-chaos-resilience/SKILL.md"
|
|
1282
|
+
},
|
|
1283
|
+
"qe-code-intelligence": {
|
|
1284
|
+
"trustTier": 3,
|
|
1285
|
+
"validation": {
|
|
1286
|
+
"status": "passing",
|
|
1287
|
+
"schemaPath": "schemas/output.json",
|
|
1288
|
+
"validatorPath": "scripts/validate.sh",
|
|
1289
|
+
"evalPath": "evals/qe-code-intelligence.yaml"
|
|
1290
|
+
},
|
|
1291
|
+
"file": "qe-code-intelligence/SKILL.md"
|
|
1292
|
+
},
|
|
1293
|
+
"qe-contract-testing": {
|
|
1294
|
+
"trustTier": 3,
|
|
1295
|
+
"validation": {
|
|
1296
|
+
"status": "passing",
|
|
1297
|
+
"schemaPath": "schemas/output.json",
|
|
1298
|
+
"validatorPath": "scripts/validate.sh",
|
|
1299
|
+
"evalPath": "evals/qe-contract-testing.yaml"
|
|
1300
|
+
},
|
|
1301
|
+
"file": "qe-contract-testing/SKILL.md"
|
|
1302
|
+
},
|
|
1303
|
+
"qe-coverage-analysis": {
|
|
1304
|
+
"trustTier": 3,
|
|
1305
|
+
"validation": {
|
|
1306
|
+
"status": "passing",
|
|
1307
|
+
"schemaPath": "schemas/output.json",
|
|
1308
|
+
"validatorPath": "scripts/validate.sh",
|
|
1309
|
+
"evalPath": "evals/qe-coverage-analysis.yaml"
|
|
1310
|
+
},
|
|
1311
|
+
"file": "qe-coverage-analysis/SKILL.md"
|
|
1312
|
+
},
|
|
1313
|
+
"qe-defect-intelligence": {
|
|
1314
|
+
"trustTier": 3,
|
|
1315
|
+
"validation": {
|
|
1316
|
+
"status": "passing",
|
|
1317
|
+
"schemaPath": "schemas/output.json",
|
|
1318
|
+
"validatorPath": "scripts/validate.sh",
|
|
1319
|
+
"evalPath": "evals/qe-defect-intelligence.yaml"
|
|
1320
|
+
},
|
|
1321
|
+
"file": "qe-defect-intelligence/SKILL.md"
|
|
1322
|
+
},
|
|
1323
|
+
"qe-learning-optimization": {
|
|
1324
|
+
"trustTier": 3,
|
|
1325
|
+
"validation": {
|
|
1326
|
+
"status": "passing",
|
|
1327
|
+
"schemaPath": "schemas/output.json",
|
|
1328
|
+
"validatorPath": "scripts/validate.sh",
|
|
1329
|
+
"evalPath": "evals/qe-learning-optimization.yaml"
|
|
1330
|
+
},
|
|
1331
|
+
"file": "qe-learning-optimization/SKILL.md"
|
|
1332
|
+
},
|
|
1333
|
+
"qe-quality-assessment": {
|
|
1334
|
+
"trustTier": 3,
|
|
1335
|
+
"validation": {
|
|
1336
|
+
"status": "passing",
|
|
1337
|
+
"schemaPath": "schemas/output.json",
|
|
1338
|
+
"validatorPath": "scripts/validate.sh",
|
|
1339
|
+
"evalPath": "evals/qe-quality-assessment.yaml"
|
|
1340
|
+
},
|
|
1341
|
+
"file": "qe-quality-assessment/SKILL.md"
|
|
1342
|
+
},
|
|
1343
|
+
"qe-requirements-validation": {
|
|
1344
|
+
"trustTier": 3,
|
|
1345
|
+
"validation": {
|
|
1346
|
+
"status": "passing",
|
|
1347
|
+
"schemaPath": "schemas/output.json",
|
|
1348
|
+
"validatorPath": "scripts/validate.sh",
|
|
1349
|
+
"evalPath": "evals/qe-requirements-validation.yaml"
|
|
1350
|
+
},
|
|
1351
|
+
"file": "qe-requirements-validation/SKILL.md"
|
|
1352
|
+
},
|
|
1353
|
+
"qe-security-compliance": {
|
|
1354
|
+
"trustTier": 3,
|
|
1355
|
+
"validation": {
|
|
1356
|
+
"status": "passing",
|
|
1357
|
+
"schemaPath": "schemas/output.json",
|
|
1358
|
+
"validatorPath": "scripts/validate.sh",
|
|
1359
|
+
"evalPath": "evals/qe-security-compliance.yaml"
|
|
1360
|
+
},
|
|
1361
|
+
"file": "qe-security-compliance/SKILL.md"
|
|
1362
|
+
},
|
|
1363
|
+
"qe-test-execution": {
|
|
1364
|
+
"trustTier": 3,
|
|
1365
|
+
"validation": {
|
|
1366
|
+
"status": "passing",
|
|
1367
|
+
"schemaPath": "schemas/output.json",
|
|
1368
|
+
"validatorPath": "scripts/validate.sh",
|
|
1369
|
+
"evalPath": "evals/qe-test-execution.yaml"
|
|
1370
|
+
},
|
|
1371
|
+
"file": "qe-test-execution/SKILL.md"
|
|
1372
|
+
},
|
|
1373
|
+
"qe-test-generation": {
|
|
1374
|
+
"trustTier": 3,
|
|
1375
|
+
"validation": {
|
|
1376
|
+
"status": "passing",
|
|
1377
|
+
"schemaPath": "schemas/output.json",
|
|
1378
|
+
"validatorPath": "scripts/validate.sh",
|
|
1379
|
+
"evalPath": "evals/qe-test-generation.yaml"
|
|
1380
|
+
},
|
|
1381
|
+
"file": "qe-test-generation/SKILL.md"
|
|
1382
|
+
},
|
|
1383
|
+
"qe-visual-accessibility": {
|
|
1384
|
+
"trustTier": 3,
|
|
1385
|
+
"validation": {
|
|
1386
|
+
"status": "passing",
|
|
1387
|
+
"schemaPath": "schemas/output.json",
|
|
1388
|
+
"validatorPath": "scripts/validate.sh",
|
|
1389
|
+
"evalPath": "evals/qe-visual-accessibility.yaml"
|
|
1390
|
+
},
|
|
1391
|
+
"file": "qe-visual-accessibility/SKILL.md"
|
|
1392
|
+
},
|
|
1393
|
+
"quality-metrics": {
|
|
1394
|
+
"trustTier": 3,
|
|
1395
|
+
"category": "testing-methodologies",
|
|
1396
|
+
"priority": "high",
|
|
1397
|
+
"validation": {
|
|
1398
|
+
"status": "passing",
|
|
1399
|
+
"schemaPath": "schemas/output.json",
|
|
1400
|
+
"validatorPath": "scripts/validate.sh",
|
|
1401
|
+
"evalPath": "evals/quality-metrics.yaml"
|
|
1402
|
+
},
|
|
1403
|
+
"file": "quality-metrics/SKILL.md",
|
|
1404
|
+
"tokenEstimate": 900,
|
|
1405
|
+
"tags": [
|
|
1406
|
+
"metrics",
|
|
1407
|
+
"dora",
|
|
1408
|
+
"quality-gates",
|
|
1409
|
+
"dashboards",
|
|
1410
|
+
"kpis",
|
|
1411
|
+
"measurement"
|
|
1412
|
+
],
|
|
1413
|
+
"lastUpdated": "2025-12-02"
|
|
1414
|
+
},
|
|
1415
|
+
"regression-testing": {
|
|
1416
|
+
"trustTier": 3,
|
|
1417
|
+
"category": "specialized-testing",
|
|
1418
|
+
"priority": "high",
|
|
1419
|
+
"validation": {
|
|
1420
|
+
"status": "passing",
|
|
1421
|
+
"schemaPath": "schemas/output.json",
|
|
1422
|
+
"validatorPath": "scripts/validate.sh",
|
|
1423
|
+
"evalPath": "evals/regression-testing.yaml"
|
|
1424
|
+
},
|
|
1425
|
+
"file": "regression-testing/SKILL.md",
|
|
1426
|
+
"tokenEstimate": 1000,
|
|
1427
|
+
"tags": [
|
|
1428
|
+
"regression",
|
|
1429
|
+
"test-selection",
|
|
1430
|
+
"impact-analysis",
|
|
1431
|
+
"ci-cd",
|
|
1432
|
+
"change-based",
|
|
1433
|
+
"risk-based"
|
|
1434
|
+
],
|
|
1435
|
+
"lastUpdated": "2025-12-02"
|
|
1436
|
+
},
|
|
1437
|
+
"risk-based-testing": {
|
|
1438
|
+
"trustTier": 3,
|
|
1439
|
+
"category": "testing-methodologies",
|
|
1440
|
+
"priority": "high",
|
|
1441
|
+
"validation": {
|
|
1442
|
+
"status": "passing",
|
|
1443
|
+
"schemaPath": "schemas/output.json",
|
|
1444
|
+
"validatorPath": "scripts/validate.sh",
|
|
1445
|
+
"evalPath": "evals/risk-based-testing.yaml"
|
|
1446
|
+
},
|
|
1447
|
+
"file": "risk-based-testing/SKILL.md",
|
|
1448
|
+
"tokenEstimate": 1000,
|
|
1449
|
+
"tags": [
|
|
1450
|
+
"risk",
|
|
1451
|
+
"prioritization",
|
|
1452
|
+
"test-planning",
|
|
1453
|
+
"coverage",
|
|
1454
|
+
"impact-analysis"
|
|
1455
|
+
],
|
|
1456
|
+
"lastUpdated": "2025-12-02"
|
|
1457
|
+
},
|
|
1458
|
+
"security-testing": {
|
|
1459
|
+
"trustTier": 3,
|
|
1460
|
+
"category": "specialized-testing",
|
|
1461
|
+
"priority": "critical",
|
|
1462
|
+
"validation": {
|
|
1463
|
+
"status": "passing",
|
|
1464
|
+
"schemaPath": "schemas/output.json",
|
|
1465
|
+
"validatorPath": "scripts/validate.sh",
|
|
1466
|
+
"evalPath": "evals/security-testing.yaml"
|
|
1467
|
+
},
|
|
1468
|
+
"file": "security-testing/SKILL.md",
|
|
1469
|
+
"tokenEstimate": 1200,
|
|
1470
|
+
"tags": [
|
|
1471
|
+
"security",
|
|
1472
|
+
"owasp",
|
|
1473
|
+
"sast",
|
|
1474
|
+
"dast",
|
|
1475
|
+
"vulnerabilities",
|
|
1476
|
+
"auth",
|
|
1477
|
+
"injection"
|
|
1478
|
+
],
|
|
1479
|
+
"lastUpdated": "2025-12-02"
|
|
1480
|
+
},
|
|
1481
|
+
"security-visual-testing": {
|
|
1482
|
+
"trustTier": 3,
|
|
1483
|
+
"category": "specialized-testing",
|
|
1484
|
+
"priority": "high",
|
|
1485
|
+
"validation": {
|
|
1486
|
+
"status": "passing",
|
|
1487
|
+
"schemaPath": "schemas/output.json",
|
|
1488
|
+
"validatorPath": "scripts/validate.sh",
|
|
1489
|
+
"evalPath": "evals/security-visual-testing.yaml"
|
|
1490
|
+
},
|
|
1491
|
+
"file": "security-visual-testing/SKILL.md",
|
|
1492
|
+
"tokenEstimate": 1400,
|
|
1493
|
+
"tags": [
|
|
1494
|
+
"security",
|
|
1495
|
+
"visual-testing",
|
|
1496
|
+
"pii",
|
|
1497
|
+
"accessibility",
|
|
1498
|
+
"wcag",
|
|
1499
|
+
"parallel-viewport",
|
|
1500
|
+
"regression"
|
|
1501
|
+
],
|
|
1502
|
+
"lastUpdated": "2026-01-21"
|
|
1503
|
+
},
|
|
1504
|
+
"shift-left-testing": {
|
|
1505
|
+
"trustTier": 3,
|
|
1506
|
+
"category": "testing-methodologies",
|
|
1507
|
+
"priority": "high",
|
|
1508
|
+
"validation": {
|
|
1509
|
+
"status": "passing",
|
|
1510
|
+
"schemaPath": "schemas/output.json",
|
|
1511
|
+
"validatorPath": "scripts/validate.sh",
|
|
1512
|
+
"evalPath": "evals/shift-left-testing.yaml"
|
|
1513
|
+
},
|
|
1514
|
+
"file": "shift-left-testing/SKILL.md",
|
|
1515
|
+
"tokenEstimate": 900,
|
|
1516
|
+
"tags": [
|
|
1517
|
+
"shift-left",
|
|
1518
|
+
"early-testing",
|
|
1519
|
+
"tdd",
|
|
1520
|
+
"bdd",
|
|
1521
|
+
"ci-cd",
|
|
1522
|
+
"prevention"
|
|
1523
|
+
],
|
|
1524
|
+
"lastUpdated": "2025-12-02"
|
|
1525
|
+
},
|
|
1526
|
+
"shift-right-testing": {
|
|
1527
|
+
"trustTier": 3,
|
|
1528
|
+
"category": "testing-methodologies",
|
|
1529
|
+
"priority": "high",
|
|
1530
|
+
"validation": {
|
|
1531
|
+
"status": "passing",
|
|
1532
|
+
"schemaPath": "schemas/output.json",
|
|
1533
|
+
"validatorPath": "scripts/validate.sh",
|
|
1534
|
+
"evalPath": "evals/shift-right-testing.yaml"
|
|
1535
|
+
},
|
|
1536
|
+
"file": "shift-right-testing/SKILL.md",
|
|
1537
|
+
"tokenEstimate": 1000,
|
|
1538
|
+
"tags": [
|
|
1539
|
+
"shift-right",
|
|
1540
|
+
"production-testing",
|
|
1541
|
+
"canary",
|
|
1542
|
+
"feature-flags",
|
|
1543
|
+
"chaos-engineering",
|
|
1544
|
+
"monitoring"
|
|
1545
|
+
],
|
|
1546
|
+
"lastUpdated": "2025-12-02"
|
|
1547
|
+
},
|
|
1548
|
+
"test-automation-strategy": {
|
|
1549
|
+
"trustTier": 3,
|
|
1550
|
+
"category": "testing-methodologies",
|
|
1551
|
+
"priority": "high",
|
|
1552
|
+
"validation": {
|
|
1553
|
+
"status": "passing",
|
|
1554
|
+
"schemaPath": "schemas/output.json",
|
|
1555
|
+
"validatorPath": "scripts/validate.sh",
|
|
1556
|
+
"evalPath": "evals/test-automation-strategy.yaml"
|
|
1557
|
+
},
|
|
1558
|
+
"file": "test-automation-strategy/SKILL.md",
|
|
1559
|
+
"tokenEstimate": 1000,
|
|
1560
|
+
"tags": [
|
|
1561
|
+
"automation",
|
|
1562
|
+
"test-pyramid",
|
|
1563
|
+
"page-object",
|
|
1564
|
+
"first-principles",
|
|
1565
|
+
"ci-cd",
|
|
1566
|
+
"flaky-tests"
|
|
1567
|
+
],
|
|
1568
|
+
"lastUpdated": "2025-12-02"
|
|
1569
|
+
},
|
|
1570
|
+
"test-data-management": {
|
|
1571
|
+
"trustTier": 3,
|
|
1572
|
+
"category": "specialized-testing",
|
|
1573
|
+
"priority": "high",
|
|
1574
|
+
"validation": {
|
|
1575
|
+
"status": "passing",
|
|
1576
|
+
"schemaPath": "schemas/output.json",
|
|
1577
|
+
"validatorPath": "scripts/validate.sh",
|
|
1578
|
+
"evalPath": "evals/test-data-management.yaml"
|
|
1579
|
+
},
|
|
1580
|
+
"file": "test-data-management/SKILL.md",
|
|
1581
|
+
"tokenEstimate": 1000,
|
|
1582
|
+
"tags": [
|
|
1583
|
+
"test-data",
|
|
1584
|
+
"faker",
|
|
1585
|
+
"synthetic",
|
|
1586
|
+
"gdpr",
|
|
1587
|
+
"pii",
|
|
1588
|
+
"anonymization",
|
|
1589
|
+
"factories"
|
|
1590
|
+
],
|
|
1591
|
+
"lastUpdated": "2025-12-02"
|
|
1592
|
+
},
|
|
1593
|
+
"test-design-techniques": {
|
|
1594
|
+
"trustTier": 3,
|
|
1595
|
+
"category": "specialized-testing",
|
|
1596
|
+
"priority": "high",
|
|
1597
|
+
"validation": {
|
|
1598
|
+
"status": "passing",
|
|
1599
|
+
"schemaPath": "schemas/output.json",
|
|
1600
|
+
"validatorPath": "scripts/validate.sh",
|
|
1601
|
+
"evalPath": "evals/test-design-techniques.yaml"
|
|
1602
|
+
},
|
|
1603
|
+
"file": "test-design-techniques/SKILL.md",
|
|
1604
|
+
"tokenEstimate": 900,
|
|
1605
|
+
"tags": [
|
|
1606
|
+
"test-design",
|
|
1607
|
+
"bva",
|
|
1608
|
+
"equivalence-partitioning",
|
|
1609
|
+
"decision-tables",
|
|
1610
|
+
"pairwise",
|
|
1611
|
+
"state-transition"
|
|
1612
|
+
],
|
|
1613
|
+
"lastUpdated": "2025-12-02"
|
|
1614
|
+
},
|
|
1615
|
+
"test-reporting-analytics": {
|
|
1616
|
+
"trustTier": 3,
|
|
1617
|
+
"category": "analytics",
|
|
1618
|
+
"priority": "high",
|
|
1619
|
+
"validation": {
|
|
1620
|
+
"status": "passing",
|
|
1621
|
+
"schemaPath": "schemas/output.json",
|
|
1622
|
+
"validatorPath": "scripts/validate.sh",
|
|
1623
|
+
"evalPath": "evals/test-reporting-analytics.yaml"
|
|
1624
|
+
},
|
|
1625
|
+
"file": "test-reporting-analytics/SKILL.md",
|
|
1626
|
+
"tokenEstimate": 850,
|
|
1627
|
+
"tags": [
|
|
1628
|
+
"reporting",
|
|
1629
|
+
"analytics",
|
|
1630
|
+
"dashboards",
|
|
1631
|
+
"metrics",
|
|
1632
|
+
"trends",
|
|
1633
|
+
"predictive"
|
|
1634
|
+
],
|
|
1635
|
+
"lastUpdated": "2025-12-03"
|
|
1636
|
+
},
|
|
1637
|
+
"testability-scoring": {
|
|
1638
|
+
"trustTier": 3,
|
|
1639
|
+
"category": "testing-methodologies",
|
|
1640
|
+
"priority": "high",
|
|
1641
|
+
"validation": {
|
|
1642
|
+
"status": "passing",
|
|
1643
|
+
"schemaPath": "schemas/output.json",
|
|
1644
|
+
"validatorPath": "scripts/validate.sh",
|
|
1645
|
+
"evalPath": "evals/testability-scoring.yaml"
|
|
1646
|
+
},
|
|
1647
|
+
"file": "testability-scoring/SKILL.md",
|
|
1648
|
+
"tokenEstimate": 1100,
|
|
1649
|
+
"tags": [
|
|
1650
|
+
"testability",
|
|
1651
|
+
"scoring",
|
|
1652
|
+
"playwright",
|
|
1653
|
+
"vibium",
|
|
1654
|
+
"assessment",
|
|
1655
|
+
"10-principles",
|
|
1656
|
+
"intrinsic-testability",
|
|
1657
|
+
"james-bach",
|
|
1658
|
+
"michael-bolton"
|
|
1659
|
+
],
|
|
1660
|
+
"lastUpdated": "2025-12-12"
|
|
1661
|
+
},
|
|
1662
|
+
"verification-quality": {
|
|
1663
|
+
"trustTier": 3,
|
|
1664
|
+
"category": "quality-assurance",
|
|
1665
|
+
"validation": {
|
|
1666
|
+
"status": "passing",
|
|
1667
|
+
"schemaPath": "schemas/output.json",
|
|
1668
|
+
"validatorPath": "scripts/validate.sh",
|
|
1669
|
+
"evalPath": "evals/verification-quality.yaml"
|
|
1670
|
+
},
|
|
1671
|
+
"file": "verification-quality/SKILL.md",
|
|
1672
|
+
"tags": [
|
|
1673
|
+
"verification",
|
|
1674
|
+
"truth-scoring",
|
|
1675
|
+
"quality",
|
|
1676
|
+
"rollback",
|
|
1677
|
+
"metrics",
|
|
1678
|
+
"ci-cd"
|
|
1679
|
+
]
|
|
1680
|
+
},
|
|
1681
|
+
"visual-testing-advanced": {
|
|
1682
|
+
"trustTier": 3,
|
|
1683
|
+
"category": "specialized-testing",
|
|
1684
|
+
"priority": "high",
|
|
1685
|
+
"validation": {
|
|
1686
|
+
"status": "passing",
|
|
1687
|
+
"schemaPath": "schemas/output.json",
|
|
1688
|
+
"validatorPath": "scripts/validate.sh",
|
|
1689
|
+
"evalPath": "evals/visual-testing-advanced.yaml"
|
|
1690
|
+
},
|
|
1691
|
+
"file": "visual-testing-advanced/SKILL.md",
|
|
1692
|
+
"tokenEstimate": 900,
|
|
1693
|
+
"tags": [
|
|
1694
|
+
"visual",
|
|
1695
|
+
"regression",
|
|
1696
|
+
"screenshot",
|
|
1697
|
+
"pixel-diff",
|
|
1698
|
+
"percy",
|
|
1699
|
+
"playwright",
|
|
1700
|
+
"responsive"
|
|
1701
|
+
],
|
|
1702
|
+
"lastUpdated": "2025-12-02"
|
|
1703
|
+
},
|
|
1704
|
+
"brutal-honesty-review": {
|
|
1705
|
+
"trustTier": 2,
|
|
1706
|
+
"category": "quality-review",
|
|
1707
|
+
"priority": "high",
|
|
1708
|
+
"validation": {
|
|
1709
|
+
"status": "unknown",
|
|
1710
|
+
"schemaPath": "schemas/output.json",
|
|
1711
|
+
"validatorPath": "scripts/validate.sh"
|
|
1712
|
+
},
|
|
1713
|
+
"file": "brutal-honesty-review/SKILL.md",
|
|
1714
|
+
"tokenEstimate": 1200,
|
|
1715
|
+
"tags": [
|
|
1716
|
+
"code-review",
|
|
1717
|
+
"honesty",
|
|
1718
|
+
"critical-thinking",
|
|
1719
|
+
"technical-criticism",
|
|
1720
|
+
"quality"
|
|
1721
|
+
],
|
|
1722
|
+
"lastUpdated": "2025-12-03"
|
|
1723
|
+
},
|
|
1724
|
+
"bug-reporting-excellence": {
|
|
1725
|
+
"trustTier": 2,
|
|
1726
|
+
"category": "quality-communication",
|
|
1727
|
+
"priority": "high",
|
|
1728
|
+
"validation": {
|
|
1729
|
+
"status": "unknown",
|
|
1730
|
+
"schemaPath": "schemas/output.json",
|
|
1731
|
+
"validatorPath": "scripts/validate.sh"
|
|
1732
|
+
},
|
|
1733
|
+
"file": "bug-reporting-excellence/SKILL.md",
|
|
1734
|
+
"tokenEstimate": 900,
|
|
1735
|
+
"tags": [
|
|
1736
|
+
"bugs",
|
|
1737
|
+
"reporting",
|
|
1738
|
+
"communication",
|
|
1739
|
+
"triage",
|
|
1740
|
+
"quality"
|
|
1741
|
+
],
|
|
1742
|
+
"lastUpdated": "2025-12-03"
|
|
1743
|
+
},
|
|
1744
|
+
"code-review-quality": {
|
|
1745
|
+
"trustTier": 2,
|
|
1746
|
+
"category": "development-practices",
|
|
1747
|
+
"priority": "high",
|
|
1748
|
+
"validation": {
|
|
1749
|
+
"status": "unknown",
|
|
1750
|
+
"schemaPath": "schemas/output.json",
|
|
1751
|
+
"validatorPath": "scripts/validate.sh"
|
|
1752
|
+
},
|
|
1753
|
+
"file": "code-review-quality/SKILL.md",
|
|
1754
|
+
"tokenEstimate": 900,
|
|
1755
|
+
"tags": [
|
|
1756
|
+
"code-review",
|
|
1757
|
+
"feedback",
|
|
1758
|
+
"quality",
|
|
1759
|
+
"testability",
|
|
1760
|
+
"maintainability",
|
|
1761
|
+
"pr-review"
|
|
1762
|
+
],
|
|
1763
|
+
"lastUpdated": "2025-12-02"
|
|
1764
|
+
},
|
|
1765
|
+
"qe-iterative-loop": {
|
|
1766
|
+
"trustTier": 2,
|
|
1767
|
+
"validation": {
|
|
1768
|
+
"status": "unknown",
|
|
1769
|
+
"schemaPath": "schemas/output.json",
|
|
1770
|
+
"validatorPath": "scripts/validate.sh"
|
|
1771
|
+
},
|
|
1772
|
+
"file": "qe-iterative-loop/SKILL.md"
|
|
1773
|
+
},
|
|
1774
|
+
"refactoring-patterns": {
|
|
1775
|
+
"trustTier": 2,
|
|
1776
|
+
"category": "development-practices",
|
|
1777
|
+
"priority": "medium",
|
|
1778
|
+
"validation": {
|
|
1779
|
+
"status": "unknown",
|
|
1780
|
+
"schemaPath": "schemas/output.json",
|
|
1781
|
+
"validatorPath": "scripts/validate.sh"
|
|
1782
|
+
},
|
|
1783
|
+
"file": "refactoring-patterns/SKILL.md",
|
|
1784
|
+
"tokenEstimate": 1000,
|
|
1785
|
+
"tags": [
|
|
1786
|
+
"refactoring",
|
|
1787
|
+
"code-quality",
|
|
1788
|
+
"technical-debt",
|
|
1789
|
+
"maintainability",
|
|
1790
|
+
"clean-code"
|
|
1791
|
+
],
|
|
1792
|
+
"lastUpdated": "2025-12-03"
|
|
1793
|
+
},
|
|
1794
|
+
"sherlock-review": {
|
|
1795
|
+
"trustTier": 2,
|
|
1796
|
+
"category": "quality-review",
|
|
1797
|
+
"priority": "high",
|
|
1798
|
+
"validation": {
|
|
1799
|
+
"status": "unknown",
|
|
1800
|
+
"schemaPath": "schemas/output.json",
|
|
1801
|
+
"validatorPath": "scripts/validate.sh"
|
|
1802
|
+
},
|
|
1803
|
+
"file": "sherlock-review/SKILL.md",
|
|
1804
|
+
"tokenEstimate": 1100,
|
|
1805
|
+
"tags": [
|
|
1806
|
+
"investigation",
|
|
1807
|
+
"evidence-based",
|
|
1808
|
+
"code-review",
|
|
1809
|
+
"root-cause",
|
|
1810
|
+
"deduction"
|
|
1811
|
+
],
|
|
1812
|
+
"lastUpdated": "2025-12-03"
|
|
1813
|
+
},
|
|
1814
|
+
"tdd-london-chicago": {
|
|
1815
|
+
"trustTier": 2,
|
|
1816
|
+
"category": "development-practices",
|
|
1817
|
+
"priority": "high",
|
|
1818
|
+
"validation": {
|
|
1819
|
+
"status": "unknown",
|
|
1820
|
+
"schemaPath": "schemas/output.json",
|
|
1821
|
+
"validatorPath": "scripts/validate.sh"
|
|
1822
|
+
},
|
|
1823
|
+
"file": "tdd-london-chicago/SKILL.md",
|
|
1824
|
+
"tokenEstimate": 1100,
|
|
1825
|
+
"tags": [
|
|
1826
|
+
"tdd",
|
|
1827
|
+
"testing",
|
|
1828
|
+
"london-school",
|
|
1829
|
+
"chicago-school",
|
|
1830
|
+
"red-green-refactor",
|
|
1831
|
+
"mocks"
|
|
1832
|
+
],
|
|
1833
|
+
"lastUpdated": "2025-12-02"
|
|
1834
|
+
},
|
|
1835
|
+
"agentic-quality-engineering": {
|
|
1836
|
+
"trustTier": 1,
|
|
1837
|
+
"category": "qe-core",
|
|
1838
|
+
"priority": "critical",
|
|
1839
|
+
"validation": {
|
|
1840
|
+
"status": "unknown",
|
|
1841
|
+
"schemaPath": "schemas/output.json"
|
|
1842
|
+
},
|
|
1843
|
+
"file": "agentic-quality-engineering/SKILL.md",
|
|
1844
|
+
"tokenEstimate": 1400,
|
|
1845
|
+
"tags": [
|
|
1846
|
+
"pact",
|
|
1847
|
+
"agents",
|
|
1848
|
+
"fleet",
|
|
1849
|
+
"coordination",
|
|
1850
|
+
"autonomous",
|
|
1851
|
+
"foundational"
|
|
1852
|
+
],
|
|
1853
|
+
"lastUpdated": "2025-12-02"
|
|
1854
|
+
},
|
|
1855
|
+
"aqe-v2-v3-migration": {
|
|
1856
|
+
"trustTier": 1,
|
|
1857
|
+
"validation": {
|
|
1858
|
+
"status": "unknown",
|
|
1859
|
+
"schemaPath": "schemas/output.json"
|
|
1860
|
+
},
|
|
1861
|
+
"file": "aqe-v2-v3-migration/SKILL.md"
|
|
1862
|
+
},
|
|
1863
|
+
"consultancy-practices": {
|
|
1864
|
+
"trustTier": 1,
|
|
1865
|
+
"category": "professional-practice",
|
|
1866
|
+
"priority": "medium",
|
|
1867
|
+
"validation": {
|
|
1868
|
+
"status": "unknown",
|
|
1869
|
+
"schemaPath": "schemas/output.json"
|
|
1870
|
+
},
|
|
1871
|
+
"file": "consultancy-practices/SKILL.md",
|
|
1872
|
+
"tokenEstimate": 950,
|
|
1873
|
+
"tags": [
|
|
1874
|
+
"consulting",
|
|
1875
|
+
"advisory",
|
|
1876
|
+
"client-engagement",
|
|
1877
|
+
"quality-assessment",
|
|
1878
|
+
"transformation"
|
|
1879
|
+
],
|
|
1880
|
+
"lastUpdated": "2025-12-03"
|
|
1881
|
+
},
|
|
1882
|
+
"technical-writing": {
|
|
1883
|
+
"trustTier": 1,
|
|
1884
|
+
"category": "communication",
|
|
1885
|
+
"priority": "medium",
|
|
1886
|
+
"validation": {
|
|
1887
|
+
"status": "unknown",
|
|
1888
|
+
"schemaPath": "schemas/output.json"
|
|
1889
|
+
},
|
|
1890
|
+
"file": "technical-writing/SKILL.md",
|
|
1891
|
+
"tokenEstimate": 800,
|
|
1892
|
+
"tags": [
|
|
1893
|
+
"writing",
|
|
1894
|
+
"documentation",
|
|
1895
|
+
"communication",
|
|
1896
|
+
"blogs",
|
|
1897
|
+
"tutorials"
|
|
1898
|
+
],
|
|
1899
|
+
"lastUpdated": "2025-12-03"
|
|
1900
|
+
},
|
|
1901
|
+
"test-environment-management": {
|
|
1902
|
+
"trustTier": 1,
|
|
1903
|
+
"category": "specialized-testing",
|
|
1904
|
+
"priority": "medium",
|
|
1905
|
+
"validation": {
|
|
1906
|
+
"status": "unknown",
|
|
1907
|
+
"schemaPath": "schemas/output.json"
|
|
1908
|
+
},
|
|
1909
|
+
"file": "test-environment-management/SKILL.md",
|
|
1910
|
+
"tokenEstimate": 900,
|
|
1911
|
+
"tags": [
|
|
1912
|
+
"environment",
|
|
1913
|
+
"docker",
|
|
1914
|
+
"kubernetes",
|
|
1915
|
+
"infrastructure",
|
|
1916
|
+
"parity",
|
|
1917
|
+
"cost-optimization"
|
|
1918
|
+
],
|
|
1919
|
+
"lastUpdated": "2025-12-02"
|
|
1920
|
+
},
|
|
1921
|
+
"agentdb-advanced": {
|
|
1922
|
+
"trustTier": 0,
|
|
1923
|
+
"validation": {
|
|
1924
|
+
"status": "skipped"
|
|
1925
|
+
},
|
|
1926
|
+
"file": "agentdb-advanced/SKILL.md"
|
|
1927
|
+
},
|
|
1928
|
+
"agentdb-learning": {
|
|
1929
|
+
"trustTier": 0,
|
|
1930
|
+
"validation": {
|
|
1931
|
+
"status": "skipped"
|
|
1932
|
+
},
|
|
1933
|
+
"file": "agentdb-learning/SKILL.md"
|
|
1934
|
+
},
|
|
1935
|
+
"agentdb-memory-patterns": {
|
|
1936
|
+
"trustTier": 0,
|
|
1937
|
+
"validation": {
|
|
1938
|
+
"status": "skipped"
|
|
1939
|
+
},
|
|
1940
|
+
"file": "agentdb-memory-patterns/SKILL.md"
|
|
1941
|
+
},
|
|
1942
|
+
"agentdb-optimization": {
|
|
1943
|
+
"trustTier": 0,
|
|
1944
|
+
"validation": {
|
|
1945
|
+
"status": "skipped"
|
|
1946
|
+
},
|
|
1947
|
+
"file": "agentdb-optimization/SKILL.md"
|
|
1948
|
+
},
|
|
1949
|
+
"agentdb-vector-search": {
|
|
1950
|
+
"trustTier": 0,
|
|
1951
|
+
"validation": {
|
|
1952
|
+
"status": "skipped"
|
|
1953
|
+
},
|
|
1954
|
+
"file": "agentdb-vector-search/SKILL.md"
|
|
1955
|
+
},
|
|
1956
|
+
"agentic-jujutsu": {
|
|
1957
|
+
"trustTier": 0,
|
|
1958
|
+
"validation": {
|
|
1959
|
+
"status": "skipped"
|
|
1960
|
+
},
|
|
1961
|
+
"file": "agentic-jujutsu/SKILL.md"
|
|
1962
|
+
},
|
|
1963
|
+
"context-driven-testing": {
|
|
1964
|
+
"trustTier": 0,
|
|
1965
|
+
"category": "testing-methodologies",
|
|
1966
|
+
"priority": "high",
|
|
1967
|
+
"validation": {
|
|
1968
|
+
"status": "skipped"
|
|
1969
|
+
},
|
|
1970
|
+
"file": "context-driven-testing/SKILL.md",
|
|
1971
|
+
"tokenEstimate": 1100,
|
|
1972
|
+
"tags": [
|
|
1973
|
+
"context-driven",
|
|
1974
|
+
"rst",
|
|
1975
|
+
"exploratory",
|
|
1976
|
+
"heuristics",
|
|
1977
|
+
"oracles",
|
|
1978
|
+
"skilled-testing"
|
|
1979
|
+
],
|
|
1980
|
+
"lastUpdated": "2025-12-02"
|
|
1981
|
+
},
|
|
1982
|
+
"exploratory-testing-advanced": {
|
|
1983
|
+
"trustTier": 0,
|
|
1984
|
+
"category": "testing-methodologies",
|
|
1985
|
+
"priority": "high",
|
|
1986
|
+
"validation": {
|
|
1987
|
+
"status": "skipped"
|
|
1988
|
+
},
|
|
1989
|
+
"file": "exploratory-testing-advanced/SKILL.md",
|
|
1990
|
+
"tokenEstimate": 1000,
|
|
1991
|
+
"tags": [
|
|
1992
|
+
"exploratory",
|
|
1993
|
+
"sbtm",
|
|
1994
|
+
"rst",
|
|
1995
|
+
"heuristics",
|
|
1996
|
+
"test-tours",
|
|
1997
|
+
"session-based"
|
|
1998
|
+
],
|
|
1999
|
+
"lastUpdated": "2025-12-02"
|
|
2000
|
+
},
|
|
2001
|
+
"flow-nexus-neural": {
|
|
2002
|
+
"trustTier": 0,
|
|
2003
|
+
"category": "ai-ml",
|
|
2004
|
+
"validation": {
|
|
2005
|
+
"status": "skipped"
|
|
2006
|
+
},
|
|
2007
|
+
"file": "flow-nexus-neural/SKILL.md"
|
|
2008
|
+
},
|
|
2009
|
+
"flow-nexus-platform": {
|
|
2010
|
+
"trustTier": 0,
|
|
2011
|
+
"category": "platform",
|
|
2012
|
+
"validation": {
|
|
2013
|
+
"status": "skipped"
|
|
2014
|
+
},
|
|
2015
|
+
"file": "flow-nexus-platform/SKILL.md",
|
|
2016
|
+
"tags": [
|
|
2017
|
+
"authentication",
|
|
2018
|
+
"sandboxes",
|
|
2019
|
+
"deployment",
|
|
2020
|
+
"payments",
|
|
2021
|
+
"gamification",
|
|
2022
|
+
"cloud"
|
|
2023
|
+
]
|
|
2024
|
+
},
|
|
2025
|
+
"flow-nexus-swarm": {
|
|
2026
|
+
"trustTier": 0,
|
|
2027
|
+
"category": "orchestration",
|
|
2028
|
+
"validation": {
|
|
2029
|
+
"status": "skipped"
|
|
2030
|
+
},
|
|
2031
|
+
"file": "flow-nexus-swarm/SKILL.md",
|
|
2032
|
+
"tags": [
|
|
2033
|
+
"swarm",
|
|
2034
|
+
"workflow",
|
|
2035
|
+
"cloud",
|
|
2036
|
+
"agents",
|
|
2037
|
+
"automation",
|
|
2038
|
+
"message-queue"
|
|
2039
|
+
]
|
|
2040
|
+
},
|
|
2041
|
+
"github-code-review": {
|
|
2042
|
+
"trustTier": 0,
|
|
2043
|
+
"category": "github",
|
|
2044
|
+
"validation": {
|
|
2045
|
+
"status": "skipped"
|
|
2046
|
+
},
|
|
2047
|
+
"file": "github-code-review/SKILL.md",
|
|
2048
|
+
"tags": [
|
|
2049
|
+
"code-review",
|
|
2050
|
+
"github",
|
|
2051
|
+
"swarm",
|
|
2052
|
+
"pr-management",
|
|
2053
|
+
"automation"
|
|
2054
|
+
]
|
|
2055
|
+
},
|
|
2056
|
+
"github-multi-repo": {
|
|
2057
|
+
"trustTier": 0,
|
|
2058
|
+
"category": "github-integration",
|
|
2059
|
+
"validation": {
|
|
2060
|
+
"status": "skipped"
|
|
2061
|
+
},
|
|
2062
|
+
"file": "github-multi-repo/SKILL.md",
|
|
2063
|
+
"tags": [
|
|
2064
|
+
"multi-repo",
|
|
2065
|
+
"synchronization",
|
|
2066
|
+
"architecture",
|
|
2067
|
+
"coordination",
|
|
2068
|
+
"github"
|
|
2069
|
+
]
|
|
2070
|
+
},
|
|
2071
|
+
"github-project-management": {
|
|
2072
|
+
"trustTier": 0,
|
|
2073
|
+
"category": "github",
|
|
2074
|
+
"validation": {
|
|
2075
|
+
"status": "skipped"
|
|
2076
|
+
},
|
|
2077
|
+
"file": "github-project-management/SKILL.md"
|
|
2078
|
+
},
|
|
2079
|
+
"github-release-management": {
|
|
2080
|
+
"trustTier": 0,
|
|
2081
|
+
"category": "github",
|
|
2082
|
+
"validation": {
|
|
2083
|
+
"status": "skipped"
|
|
2084
|
+
},
|
|
2085
|
+
"file": "github-release-management/SKILL.md",
|
|
2086
|
+
"tags": [
|
|
2087
|
+
"release",
|
|
2088
|
+
"deployment",
|
|
2089
|
+
"versioning",
|
|
2090
|
+
"automation",
|
|
2091
|
+
"ci-cd",
|
|
2092
|
+
"swarm",
|
|
2093
|
+
"orchestration"
|
|
2094
|
+
]
|
|
2095
|
+
},
|
|
2096
|
+
"github-workflow-automation": {
|
|
2097
|
+
"trustTier": 0,
|
|
2098
|
+
"category": "github",
|
|
2099
|
+
"priority": "high",
|
|
2100
|
+
"validation": {
|
|
2101
|
+
"status": "skipped"
|
|
2102
|
+
},
|
|
2103
|
+
"file": "github-workflow-automation/SKILL.md"
|
|
2104
|
+
},
|
|
2105
|
+
"hive-mind-advanced": {
|
|
2106
|
+
"trustTier": 0,
|
|
2107
|
+
"category": "coordination",
|
|
2108
|
+
"validation": {
|
|
2109
|
+
"status": "skipped"
|
|
2110
|
+
},
|
|
2111
|
+
"file": "hive-mind-advanced/SKILL.md",
|
|
2112
|
+
"tags": [
|
|
2113
|
+
"hive-mind",
|
|
2114
|
+
"swarm",
|
|
2115
|
+
"queen-worker",
|
|
2116
|
+
"consensus",
|
|
2117
|
+
"collective-intelligence",
|
|
2118
|
+
"multi-agent",
|
|
2119
|
+
"coordination"
|
|
2120
|
+
]
|
|
2121
|
+
},
|
|
2122
|
+
"holistic-testing-pact": {
|
|
2123
|
+
"trustTier": 0,
|
|
2124
|
+
"category": "testing-methodologies",
|
|
2125
|
+
"priority": "critical",
|
|
2126
|
+
"validation": {
|
|
2127
|
+
"status": "skipped"
|
|
2128
|
+
},
|
|
2129
|
+
"file": "holistic-testing-pact/SKILL.md",
|
|
2130
|
+
"tokenEstimate": 1100,
|
|
2131
|
+
"tags": [
|
|
2132
|
+
"holistic",
|
|
2133
|
+
"pact",
|
|
2134
|
+
"quality",
|
|
2135
|
+
"whole-team",
|
|
2136
|
+
"proactive",
|
|
2137
|
+
"autonomous",
|
|
2138
|
+
"collaborative",
|
|
2139
|
+
"targeted"
|
|
2140
|
+
],
|
|
2141
|
+
"lastUpdated": "2025-12-02"
|
|
2142
|
+
},
|
|
2143
|
+
"hooks-automation": {
|
|
2144
|
+
"trustTier": 0,
|
|
2145
|
+
"validation": {
|
|
2146
|
+
"status": "skipped"
|
|
2147
|
+
},
|
|
2148
|
+
"file": "hooks-automation/SKILL.md"
|
|
2149
|
+
},
|
|
2150
|
+
"iterative-loop": {
|
|
2151
|
+
"trustTier": 0,
|
|
2152
|
+
"validation": {
|
|
2153
|
+
"status": "skipped"
|
|
2154
|
+
},
|
|
2155
|
+
"file": "iterative-loop/SKILL.md"
|
|
2156
|
+
},
|
|
2157
|
+
"pair-programming": {
|
|
2158
|
+
"trustTier": 0,
|
|
2159
|
+
"validation": {
|
|
2160
|
+
"status": "skipped"
|
|
2161
|
+
},
|
|
2162
|
+
"file": "pair-programming/SKILL.md"
|
|
2163
|
+
},
|
|
2164
|
+
"reasoningbank-agentdb": {
|
|
2165
|
+
"trustTier": 0,
|
|
2166
|
+
"validation": {
|
|
2167
|
+
"status": "skipped"
|
|
2168
|
+
},
|
|
2169
|
+
"file": "reasoningbank-agentdb/SKILL.md"
|
|
2170
|
+
},
|
|
2171
|
+
"reasoningbank-intelligence": {
|
|
2172
|
+
"trustTier": 0,
|
|
2173
|
+
"validation": {
|
|
2174
|
+
"status": "skipped"
|
|
2175
|
+
},
|
|
2176
|
+
"file": "reasoningbank-intelligence/SKILL.md"
|
|
2177
|
+
},
|
|
2178
|
+
"six-thinking-hats": {
|
|
2179
|
+
"trustTier": 0,
|
|
2180
|
+
"category": "methodology",
|
|
2181
|
+
"priority": "medium",
|
|
2182
|
+
"validation": {
|
|
2183
|
+
"status": "skipped"
|
|
2184
|
+
},
|
|
2185
|
+
"file": "six-thinking-hats/SKILL.md",
|
|
2186
|
+
"tokenEstimate": 1100,
|
|
2187
|
+
"tags": [
|
|
2188
|
+
"thinking",
|
|
2189
|
+
"methodology",
|
|
2190
|
+
"decision-making",
|
|
2191
|
+
"collaboration",
|
|
2192
|
+
"analysis"
|
|
2193
|
+
],
|
|
2194
|
+
"lastUpdated": "2025-12-03"
|
|
2195
|
+
},
|
|
2196
|
+
"skill-builder": {
|
|
2197
|
+
"trustTier": 0,
|
|
2198
|
+
"validation": {
|
|
2199
|
+
"status": "skipped"
|
|
2200
|
+
},
|
|
2201
|
+
"file": "skill-builder/SKILL.md"
|
|
2202
|
+
},
|
|
2203
|
+
"sparc-methodology": {
|
|
2204
|
+
"trustTier": 0,
|
|
2205
|
+
"category": "development",
|
|
2206
|
+
"validation": {
|
|
2207
|
+
"status": "skipped"
|
|
2208
|
+
},
|
|
2209
|
+
"file": "sparc-methodology/SKILL.md"
|
|
2210
|
+
},
|
|
2211
|
+
"stream-chain": {
|
|
2212
|
+
"trustTier": 0,
|
|
2213
|
+
"category": "workflow",
|
|
2214
|
+
"validation": {
|
|
2215
|
+
"status": "skipped"
|
|
2216
|
+
},
|
|
2217
|
+
"file": "stream-chain/SKILL.md",
|
|
2218
|
+
"tags": [
|
|
2219
|
+
"streaming",
|
|
2220
|
+
"pipeline",
|
|
2221
|
+
"chaining",
|
|
2222
|
+
"multi-agent",
|
|
2223
|
+
"workflow"
|
|
2224
|
+
]
|
|
2225
|
+
},
|
|
2226
|
+
"swarm-advanced": {
|
|
2227
|
+
"trustTier": 0,
|
|
2228
|
+
"category": "orchestration",
|
|
2229
|
+
"validation": {
|
|
2230
|
+
"status": "skipped"
|
|
2231
|
+
},
|
|
2232
|
+
"file": "swarm-advanced/SKILL.md",
|
|
2233
|
+
"tags": [
|
|
2234
|
+
"swarm",
|
|
2235
|
+
"distributed",
|
|
2236
|
+
"parallel",
|
|
2237
|
+
"research",
|
|
2238
|
+
"testing",
|
|
2239
|
+
"development",
|
|
2240
|
+
"coordination"
|
|
2241
|
+
]
|
|
2242
|
+
},
|
|
2243
|
+
"swarm-orchestration": {
|
|
2244
|
+
"trustTier": 0,
|
|
2245
|
+
"validation": {
|
|
2246
|
+
"status": "skipped"
|
|
2247
|
+
},
|
|
2248
|
+
"file": "swarm-orchestration/SKILL.md"
|
|
2249
|
+
},
|
|
2250
|
+
"v3-cli-modernization": {
|
|
2251
|
+
"trustTier": 0,
|
|
2252
|
+
"validation": {
|
|
2253
|
+
"status": "skipped"
|
|
2254
|
+
},
|
|
2255
|
+
"file": "v3-cli-modernization/SKILL.md"
|
|
2256
|
+
},
|
|
2257
|
+
"v3-core-implementation": {
|
|
2258
|
+
"trustTier": 0,
|
|
2259
|
+
"validation": {
|
|
2260
|
+
"status": "skipped"
|
|
2261
|
+
},
|
|
2262
|
+
"file": "v3-core-implementation/SKILL.md"
|
|
2263
|
+
},
|
|
2264
|
+
"v3-ddd-architecture": {
|
|
2265
|
+
"trustTier": 0,
|
|
2266
|
+
"validation": {
|
|
2267
|
+
"status": "skipped"
|
|
2268
|
+
},
|
|
2269
|
+
"file": "v3-ddd-architecture/SKILL.md"
|
|
2270
|
+
},
|
|
2271
|
+
"v3-integration-deep": {
|
|
2272
|
+
"trustTier": 0,
|
|
2273
|
+
"validation": {
|
|
2274
|
+
"status": "skipped"
|
|
2275
|
+
},
|
|
2276
|
+
"file": "v3-integration-deep/SKILL.md"
|
|
2277
|
+
},
|
|
2278
|
+
"v3-mcp-optimization": {
|
|
2279
|
+
"trustTier": 0,
|
|
2280
|
+
"validation": {
|
|
2281
|
+
"status": "skipped"
|
|
2282
|
+
},
|
|
2283
|
+
"file": "v3-mcp-optimization/SKILL.md"
|
|
2284
|
+
},
|
|
2285
|
+
"v3-memory-unification": {
|
|
2286
|
+
"trustTier": 0,
|
|
2287
|
+
"validation": {
|
|
2288
|
+
"status": "skipped"
|
|
2289
|
+
},
|
|
2290
|
+
"file": "v3-memory-unification/SKILL.md"
|
|
2291
|
+
},
|
|
2292
|
+
"v3-performance-optimization": {
|
|
2293
|
+
"trustTier": 0,
|
|
2294
|
+
"validation": {
|
|
2295
|
+
"status": "skipped"
|
|
2296
|
+
},
|
|
2297
|
+
"file": "v3-performance-optimization/SKILL.md"
|
|
2298
|
+
},
|
|
2299
|
+
"v3-security-overhaul": {
|
|
2300
|
+
"trustTier": 0,
|
|
2301
|
+
"validation": {
|
|
2302
|
+
"status": "skipped"
|
|
2303
|
+
},
|
|
2304
|
+
"file": "v3-security-overhaul/SKILL.md"
|
|
2305
|
+
},
|
|
2306
|
+
"v3-swarm-coordination": {
|
|
2307
|
+
"trustTier": 0,
|
|
2308
|
+
"validation": {
|
|
2309
|
+
"status": "skipped"
|
|
2310
|
+
},
|
|
2311
|
+
"file": "v3-swarm-coordination/SKILL.md"
|
|
2312
|
+
},
|
|
2313
|
+
"xp-practices": {
|
|
2314
|
+
"trustTier": 0,
|
|
2315
|
+
"category": "methodology",
|
|
2316
|
+
"priority": "medium",
|
|
2317
|
+
"validation": {
|
|
2318
|
+
"status": "skipped"
|
|
2319
|
+
},
|
|
2320
|
+
"file": "xp-practices/SKILL.md",
|
|
2321
|
+
"tokenEstimate": 1000,
|
|
2322
|
+
"tags": [
|
|
2323
|
+
"xp",
|
|
2324
|
+
"agile",
|
|
2325
|
+
"pair-programming",
|
|
2326
|
+
"tdd",
|
|
2327
|
+
"continuous-integration",
|
|
2328
|
+
"collaboration"
|
|
2329
|
+
],
|
|
2330
|
+
"lastUpdated": "2025-12-03"
|
|
2331
|
+
}
|
|
2332
|
+
}
|
|
2333
|
+
}
|