agentic-qe 2.5.6 → 2.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/agents/n8n/n8n-base-agent.md +376 -0
- package/.claude/agents/n8n/n8n-bdd-scenario-tester.md +613 -0
- package/.claude/agents/n8n/n8n-chaos-tester.md +654 -0
- package/.claude/agents/n8n/n8n-ci-orchestrator.md +850 -0
- package/.claude/agents/n8n/n8n-compliance-validator.md +685 -0
- package/.claude/agents/n8n/n8n-expression-validator.md +560 -0
- package/.claude/agents/n8n/n8n-integration-test.md +602 -0
- package/.claude/agents/n8n/n8n-monitoring-validator.md +589 -0
- package/.claude/agents/n8n/n8n-node-validator.md +455 -0
- package/.claude/agents/n8n/n8n-performance-tester.md +630 -0
- package/.claude/agents/n8n/n8n-security-auditor.md +786 -0
- package/.claude/agents/n8n/n8n-trigger-test.md +500 -0
- package/.claude/agents/n8n/n8n-unit-tester.md +633 -0
- package/.claude/agents/n8n/n8n-version-comparator.md +567 -0
- package/.claude/agents/n8n/n8n-workflow-executor.md +392 -0
- package/.claude/skills/n8n-expression-testing/SKILL.md +434 -0
- package/.claude/skills/n8n-integration-testing-patterns/SKILL.md +540 -0
- package/.claude/skills/n8n-security-testing/SKILL.md +599 -0
- package/.claude/skills/n8n-trigger-testing-strategies/SKILL.md +541 -0
- package/.claude/skills/n8n-workflow-testing-fundamentals/SKILL.md +447 -0
- package/CHANGELOG.md +41 -0
- package/README.md +7 -4
- package/dist/agents/n8n/N8nAPIClient.d.ts +121 -0
- package/dist/agents/n8n/N8nAPIClient.d.ts.map +1 -0
- package/dist/agents/n8n/N8nAPIClient.js +367 -0
- package/dist/agents/n8n/N8nAPIClient.js.map +1 -0
- package/dist/agents/n8n/N8nAuditPersistence.d.ts +120 -0
- package/dist/agents/n8n/N8nAuditPersistence.d.ts.map +1 -0
- package/dist/agents/n8n/N8nAuditPersistence.js +473 -0
- package/dist/agents/n8n/N8nAuditPersistence.js.map +1 -0
- package/dist/agents/n8n/N8nBDDScenarioTesterAgent.d.ts +159 -0
- package/dist/agents/n8n/N8nBDDScenarioTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nBDDScenarioTesterAgent.js +697 -0
- package/dist/agents/n8n/N8nBDDScenarioTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nBaseAgent.d.ts +126 -0
- package/dist/agents/n8n/N8nBaseAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nBaseAgent.js +446 -0
- package/dist/agents/n8n/N8nBaseAgent.js.map +1 -0
- package/dist/agents/n8n/N8nCIOrchestratorAgent.d.ts +164 -0
- package/dist/agents/n8n/N8nCIOrchestratorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nCIOrchestratorAgent.js +610 -0
- package/dist/agents/n8n/N8nCIOrchestratorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nChaosTesterAgent.d.ts +205 -0
- package/dist/agents/n8n/N8nChaosTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nChaosTesterAgent.js +729 -0
- package/dist/agents/n8n/N8nChaosTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nComplianceValidatorAgent.d.ts +228 -0
- package/dist/agents/n8n/N8nComplianceValidatorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nComplianceValidatorAgent.js +986 -0
- package/dist/agents/n8n/N8nComplianceValidatorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nContractTesterAgent.d.ts +213 -0
- package/dist/agents/n8n/N8nContractTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nContractTesterAgent.js +989 -0
- package/dist/agents/n8n/N8nContractTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nExpressionValidatorAgent.d.ts +99 -0
- package/dist/agents/n8n/N8nExpressionValidatorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nExpressionValidatorAgent.js +632 -0
- package/dist/agents/n8n/N8nExpressionValidatorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nFailureModeTesterAgent.d.ts +238 -0
- package/dist/agents/n8n/N8nFailureModeTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nFailureModeTesterAgent.js +956 -0
- package/dist/agents/n8n/N8nFailureModeTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nIdempotencyTesterAgent.d.ts +242 -0
- package/dist/agents/n8n/N8nIdempotencyTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nIdempotencyTesterAgent.js +992 -0
- package/dist/agents/n8n/N8nIdempotencyTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nIntegrationTestAgent.d.ts +104 -0
- package/dist/agents/n8n/N8nIntegrationTestAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nIntegrationTestAgent.js +653 -0
- package/dist/agents/n8n/N8nIntegrationTestAgent.js.map +1 -0
- package/dist/agents/n8n/N8nMonitoringValidatorAgent.d.ts +210 -0
- package/dist/agents/n8n/N8nMonitoringValidatorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nMonitoringValidatorAgent.js +669 -0
- package/dist/agents/n8n/N8nMonitoringValidatorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nNodeValidatorAgent.d.ts +142 -0
- package/dist/agents/n8n/N8nNodeValidatorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nNodeValidatorAgent.js +1090 -0
- package/dist/agents/n8n/N8nNodeValidatorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nPerformanceTesterAgent.d.ts +198 -0
- package/dist/agents/n8n/N8nPerformanceTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nPerformanceTesterAgent.js +653 -0
- package/dist/agents/n8n/N8nPerformanceTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nReplayabilityTesterAgent.d.ts +245 -0
- package/dist/agents/n8n/N8nReplayabilityTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nReplayabilityTesterAgent.js +952 -0
- package/dist/agents/n8n/N8nReplayabilityTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nSecretsHygieneAuditorAgent.d.ts +325 -0
- package/dist/agents/n8n/N8nSecretsHygieneAuditorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nSecretsHygieneAuditorAgent.js +1187 -0
- package/dist/agents/n8n/N8nSecretsHygieneAuditorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nSecurityAuditorAgent.d.ts +91 -0
- package/dist/agents/n8n/N8nSecurityAuditorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nSecurityAuditorAgent.js +825 -0
- package/dist/agents/n8n/N8nSecurityAuditorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nTestHarness.d.ts +131 -0
- package/dist/agents/n8n/N8nTestHarness.d.ts.map +1 -0
- package/dist/agents/n8n/N8nTestHarness.js +456 -0
- package/dist/agents/n8n/N8nTestHarness.js.map +1 -0
- package/dist/agents/n8n/N8nTriggerTestAgent.d.ts +119 -0
- package/dist/agents/n8n/N8nTriggerTestAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nTriggerTestAgent.js +652 -0
- package/dist/agents/n8n/N8nTriggerTestAgent.js.map +1 -0
- package/dist/agents/n8n/N8nUnitTesterAgent.d.ts +130 -0
- package/dist/agents/n8n/N8nUnitTesterAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nUnitTesterAgent.js +522 -0
- package/dist/agents/n8n/N8nUnitTesterAgent.js.map +1 -0
- package/dist/agents/n8n/N8nVersionComparatorAgent.d.ts +201 -0
- package/dist/agents/n8n/N8nVersionComparatorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nVersionComparatorAgent.js +645 -0
- package/dist/agents/n8n/N8nVersionComparatorAgent.js.map +1 -0
- package/dist/agents/n8n/N8nWorkflowExecutorAgent.d.ts +120 -0
- package/dist/agents/n8n/N8nWorkflowExecutorAgent.d.ts.map +1 -0
- package/dist/agents/n8n/N8nWorkflowExecutorAgent.js +347 -0
- package/dist/agents/n8n/N8nWorkflowExecutorAgent.js.map +1 -0
- package/dist/agents/n8n/index.d.ts +119 -0
- package/dist/agents/n8n/index.d.ts.map +1 -0
- package/dist/agents/n8n/index.js +298 -0
- package/dist/agents/n8n/index.js.map +1 -0
- package/dist/agents/n8n/types.d.ts +486 -0
- package/dist/agents/n8n/types.d.ts.map +1 -0
- package/dist/agents/n8n/types.js +8 -0
- package/dist/agents/n8n/types.js.map +1 -0
- package/dist/cli/init/agents.d.ts.map +1 -1
- package/dist/cli/init/agents.js +29 -0
- package/dist/cli/init/agents.js.map +1 -1
- package/dist/cli/init/skills.d.ts.map +1 -1
- package/dist/cli/init/skills.js +7 -1
- package/dist/cli/init/skills.js.map +1 -1
- package/dist/core/memory/HNSWVectorMemory.js +1 -1
- package/dist/mcp/server-instructions.d.ts +1 -1
- package/dist/mcp/server-instructions.js +1 -1
- package/docs/reference/agents.md +91 -2
- package/docs/reference/skills.md +97 -2
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const SERVER_INSTRUCTIONS = "\n# Agentic QE Fleet - MCP Tool Guide\n\n## Overview\nAgentic QE provides 96 specialized quality engineering tools organized into a hierarchical system for efficient context usage.\n\n## Quick Start\n1. **Discover available tools:** Use `tools_discover` to see all domains\n2. **Load domain tools:** Use `tools_load_domain` to load specialized tools\n3. **Auto-loading:** Domain tools auto-load when relevant keywords are detected\n\n---\n\n## Core Tools (Always Available - 14 tools)\n\n### Fleet Management\n- `fleet_init` - Initialize QE fleet with topology\n- `agent_spawn` - Spawn specialized QE agent\n- `fleet_status` - Get fleet and agent status\n\n### Testing\n- `test_generate_enhanced` - AI test generation with pattern recognition\n- `test_execute_parallel` - Parallel test execution with retry\n- `test_report_comprehensive` - Multi-format test reports\n\n### Memory & Coordination\n- `memory_store` - Store data with TTL & namespacing\n- `memory_retrieve` - Retrieve stored data\n- `memory_query` - Pattern-based memory search\n\n### Quality & Orchestration\n- `quality_analyze` - Analyze quality metrics\n- `task_orchestrate` - Orchestrate tasks across agents\n- `task_status` - Check task progress\n\n### Discovery\n- `tools_discover` - List available tool domains\n- `tools_load_domain` - Load tools for a domain\n\n---\n\n## Domain Tools (Load as Needed)\n\n| Domain | Keywords | Tools | Use Case |\n|--------|----------|-------|----------|\n| **Security** | security, vulnerability, audit, owasp | 4 tools | Security scanning, vulnerability detection |\n| **Performance** | benchmark, bottleneck, profiling | 4 tools | Performance testing, bottleneck analysis |\n| **Coverage** | coverage, gap, uncovered | 5 tools | Coverage analysis, gap detection |\n| **Quality** | quality gate, deploy, release | 6 tools | Quality gates, deployment readiness |\n| **Flaky** | flaky, unstable, retry | 3 tools | Flaky test detection and stabilization |\n| **Visual** | screenshot, accessibility, wcag | 3 tools | Visual regression, accessibility testing |\n| **Requirements** | bdd, gherkin, acceptance | 2 tools | Requirements validation, BDD generation |\n\n### Loading Domain Tools\n```\n# Explicit load\ntools_load_domain({ domain: 'security' })\n\n# Auto-load: Just mention keywords in your request\n\"I need to run a security scan\" \u2192 Security tools auto-load\n```\n\n---\n\n## Specialized Tools (Expert Use)\n\n### Learning Domain (4 tools)\nFor persistent learning and pattern storage across sessions.\nLoad with: `tools_load_domain({ domain: 'learning' })`\n\n### Advanced Domain (7 tools)\nFor mutation testing, API contract validation, production incident replay.\nLoad with: `tools_load_domain({ domain: 'advanced' })`\n\n---\n\n## Best Practices\n\n1. **Start with core tools** - They handle 80% of use cases\n2. **Let auto-load work** - Mention keywords naturally\n3. **Use tools_discover** - When unsure what's available\n4. **Batch operations** - Use parallel execution for speed\n5. **Check fleet_status** - Monitor agent health\n\n---\n\n## Common Workflows\n\n### Test Generation & Execution\n1. `test_generate_enhanced` - Generate tests\n2. `test_execute_parallel` - Run tests\n3. `test_report_comprehensive` - Generate report\n\n### Quality Gate Check\n1. Load quality domain if not auto-loaded\n2. `quality_analyze` - Analyze metrics\n3. `qe_qualitygate_evaluate` - Make go/no-go decision\n\n### Security Audit\n1. `tools_load_domain({ domain: 'security' })`\n2. `qe_security_scan_comprehensive` - Full scan\n3. `qe_security_detect_vulnerabilities` - Detailed analysis\n\n---\n\n## Tool Naming Convention\nAll tools follow: `mcp__agentic_qe__<tool_name>`\n\nExample: `mcp__agentic_qe__test_generate_enhanced`\n";
|
|
8
8
|
export declare const SERVER_NAME = "agentic-qe";
|
|
9
|
-
export declare const SERVER_VERSION = "2.5.
|
|
9
|
+
export declare const SERVER_VERSION = "2.5.7";
|
|
10
10
|
/**
|
|
11
11
|
* Get formatted server info for MCP initialization
|
|
12
12
|
*/
|
|
@@ -119,7 +119,7 @@ All tools follow: \`mcp__agentic_qe__<tool_name>\`
|
|
|
119
119
|
Example: \`mcp__agentic_qe__test_generate_enhanced\`
|
|
120
120
|
`;
|
|
121
121
|
exports.SERVER_NAME = 'agentic-qe';
|
|
122
|
-
exports.SERVER_VERSION = '2.5.
|
|
122
|
+
exports.SERVER_VERSION = '2.5.7';
|
|
123
123
|
/**
|
|
124
124
|
* Get formatted server info for MCP initialization
|
|
125
125
|
*/
|
package/docs/reference/agents.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Agentic QE Fleet - Agent Reference
|
|
2
2
|
|
|
3
|
-
This document provides comprehensive reference for all 20 QE agents in the Agentic Quality Engineering Fleet.
|
|
3
|
+
This document provides comprehensive reference for all 20 QE agents, 15 n8n workflow testing agents, and 11 subagents in the Agentic Quality Engineering Fleet.
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
@@ -412,6 +412,95 @@ Task("Remediation", "Fix accessibility issues with code suggestions", "qe-a11y-a
|
|
|
412
412
|
|
|
413
413
|
---
|
|
414
414
|
|
|
415
|
+
## n8n Workflow Testing Agents (15 agents)
|
|
416
|
+
*Contributed by [@fndlalit](https://github.com/fndlalit)*
|
|
417
|
+
|
|
418
|
+
The n8n workflow testing agents provide comprehensive testing capabilities for n8n automation workflows.
|
|
419
|
+
|
|
420
|
+
### n8n-workflow-executor
|
|
421
|
+
**Execute and validate n8n workflows programmatically**
|
|
422
|
+
|
|
423
|
+
**Capabilities:**
|
|
424
|
+
- Execute workflows via n8n REST API
|
|
425
|
+
- Inject test data at workflow start or specific nodes
|
|
426
|
+
- Validate node-to-node data flow
|
|
427
|
+
- Assert expected outputs per node
|
|
428
|
+
- Measure execution time and resource usage
|
|
429
|
+
|
|
430
|
+
**Usage:**
|
|
431
|
+
```javascript
|
|
432
|
+
Task("Execute n8n workflow", "Test workflow with sample data", "n8n-workflow-executor")
|
|
433
|
+
```
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
437
|
+
### n8n-chaos-tester
|
|
438
|
+
**Fault injection and resilience testing for n8n workflows**
|
|
439
|
+
|
|
440
|
+
**Capabilities:**
|
|
441
|
+
- Controlled fault injection using N8nTestHarness
|
|
442
|
+
- Network failure simulation
|
|
443
|
+
- Node timeout testing
|
|
444
|
+
- Error propagation validation
|
|
445
|
+
- Recovery path verification
|
|
446
|
+
|
|
447
|
+
---
|
|
448
|
+
|
|
449
|
+
### n8n-security-auditor
|
|
450
|
+
**Security scanning for n8n workflows**
|
|
451
|
+
|
|
452
|
+
**Capabilities:**
|
|
453
|
+
- 40+ secret patterns detection
|
|
454
|
+
- Runtime credential leak detection
|
|
455
|
+
- API key exposure scanning
|
|
456
|
+
- Node permission validation
|
|
457
|
+
- OWASP compliance checking
|
|
458
|
+
|
|
459
|
+
---
|
|
460
|
+
|
|
461
|
+
### n8n-performance-tester
|
|
462
|
+
**Load and stress testing for n8n workflows**
|
|
463
|
+
|
|
464
|
+
**Capabilities:**
|
|
465
|
+
- Concurrent execution testing
|
|
466
|
+
- Timing metrics and percentiles
|
|
467
|
+
- Bottleneck identification
|
|
468
|
+
- Resource usage monitoring
|
|
469
|
+
- SLA validation
|
|
470
|
+
|
|
471
|
+
---
|
|
472
|
+
|
|
473
|
+
### n8n-compliance-validator
|
|
474
|
+
**GDPR/HIPAA/SOC2/PCI-DSS compliance validation**
|
|
475
|
+
|
|
476
|
+
**Capabilities:**
|
|
477
|
+
- Data handling compliance checks
|
|
478
|
+
- PII detection and tracing
|
|
479
|
+
- Audit trail validation
|
|
480
|
+
- Regulatory mapping
|
|
481
|
+
- Compliance reporting
|
|
482
|
+
|
|
483
|
+
---
|
|
484
|
+
|
|
485
|
+
### Additional n8n Agents
|
|
486
|
+
|
|
487
|
+
| Agent | Purpose |
|
|
488
|
+
|-------|---------|
|
|
489
|
+
| **n8n-bdd-scenario-tester** | Cucumber-style BDD testing with real execution |
|
|
490
|
+
| **n8n-expression-validator** | Safe expression validation using pattern matching |
|
|
491
|
+
| **n8n-integration-test** | Real API connectivity testing via workflow execution |
|
|
492
|
+
| **n8n-trigger-test** | Webhook testing with correct n8n URL patterns |
|
|
493
|
+
| **n8n-monitoring-validator** | SLA compliance checking with runtime metrics |
|
|
494
|
+
| **n8n-node-validator** | Node configuration validation |
|
|
495
|
+
| **n8n-unit-tester** | Unit testing for individual workflow nodes |
|
|
496
|
+
| **n8n-version-comparator** | Version compatibility analysis |
|
|
497
|
+
| **n8n-ci-orchestrator** | CI/CD pipeline integration for n8n workflows |
|
|
498
|
+
| **n8n-base-agent** | Base agent with common n8n testing functionality |
|
|
499
|
+
|
|
500
|
+
**Setup Guide:** [n8n Real Instance Setup](../guides/n8n-real-instance-setup.md)
|
|
501
|
+
|
|
502
|
+
---
|
|
503
|
+
|
|
415
504
|
## MCP Tool Discovery System
|
|
416
505
|
|
|
417
506
|
The Agentic QE Fleet uses **lazy-loaded MCP tools** to reduce initial context by 87%.
|
|
@@ -471,7 +560,7 @@ Task("Performance Test", "Load test critical paths", "qe-performance-tester")
|
|
|
471
560
|
---
|
|
472
561
|
|
|
473
562
|
**Related Documentation:**
|
|
474
|
-
- [Skills Reference](skills.md) - All
|
|
563
|
+
- [Skills Reference](skills.md) - All 46 QE skills
|
|
475
564
|
- [Usage Guide](usage.md) - Complete usage examples
|
|
476
565
|
- [AQE Hooks](../architecture/AQE-HOOKS.md) - Agent coordination details
|
|
477
566
|
|
package/docs/reference/skills.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Agentic QE Fleet - Skills Reference
|
|
2
2
|
|
|
3
|
-
This document provides comprehensive reference for all
|
|
3
|
+
This document provides comprehensive reference for all 46 specialized QE skills available to agents.
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
@@ -811,6 +811,101 @@ AUTO_OPEN=false node .claude/skills/testability-scoring/scripts/generate-html-re
|
|
|
811
811
|
|
|
812
812
|
---
|
|
813
813
|
|
|
814
|
+
## n8n Workflow Testing Skills (5 skills)
|
|
815
|
+
*Contributed by [@fndlalit](https://github.com/fndlalit)*
|
|
816
|
+
|
|
817
|
+
These skills provide specialized knowledge for testing n8n automation workflows.
|
|
818
|
+
|
|
819
|
+
### n8n-workflow-testing-fundamentals
|
|
820
|
+
**Core concepts for testing n8n workflows**
|
|
821
|
+
|
|
822
|
+
Understanding workflow structure, node types, and data flow patterns in n8n.
|
|
823
|
+
|
|
824
|
+
**Key Topics:**
|
|
825
|
+
- Workflow anatomy
|
|
826
|
+
- Node configuration testing
|
|
827
|
+
- Data transformation validation
|
|
828
|
+
- Error handling patterns
|
|
829
|
+
|
|
830
|
+
**Usage:**
|
|
831
|
+
```javascript
|
|
832
|
+
Skill("n8n-workflow-testing-fundamentals")
|
|
833
|
+
```
|
|
834
|
+
|
|
835
|
+
---
|
|
836
|
+
|
|
837
|
+
### n8n-security-testing
|
|
838
|
+
**Security testing for n8n workflows**
|
|
839
|
+
|
|
840
|
+
Credential management, secret detection, and API security in n8n.
|
|
841
|
+
|
|
842
|
+
**Key Topics:**
|
|
843
|
+
- Credential auditing
|
|
844
|
+
- Secret pattern detection
|
|
845
|
+
- API key management
|
|
846
|
+
- Permission validation
|
|
847
|
+
|
|
848
|
+
**Usage:**
|
|
849
|
+
```javascript
|
|
850
|
+
Skill("n8n-security-testing")
|
|
851
|
+
```
|
|
852
|
+
|
|
853
|
+
---
|
|
854
|
+
|
|
855
|
+
### n8n-integration-testing-patterns
|
|
856
|
+
**Integration testing strategies for n8n**
|
|
857
|
+
|
|
858
|
+
Testing external API connections and webhook interactions.
|
|
859
|
+
|
|
860
|
+
**Key Topics:**
|
|
861
|
+
- API connectivity testing
|
|
862
|
+
- Webhook validation
|
|
863
|
+
- Mock server patterns
|
|
864
|
+
- Contract testing
|
|
865
|
+
|
|
866
|
+
**Usage:**
|
|
867
|
+
```javascript
|
|
868
|
+
Skill("n8n-integration-testing-patterns")
|
|
869
|
+
```
|
|
870
|
+
|
|
871
|
+
---
|
|
872
|
+
|
|
873
|
+
### n8n-expression-testing
|
|
874
|
+
**Testing n8n expressions safely**
|
|
875
|
+
|
|
876
|
+
Validating JavaScript expressions in n8n nodes without unsafe eval.
|
|
877
|
+
|
|
878
|
+
**Key Topics:**
|
|
879
|
+
- Expression patterns
|
|
880
|
+
- Safe validation
|
|
881
|
+
- Data access testing
|
|
882
|
+
- Error handling
|
|
883
|
+
|
|
884
|
+
**Usage:**
|
|
885
|
+
```javascript
|
|
886
|
+
Skill("n8n-expression-testing")
|
|
887
|
+
```
|
|
888
|
+
|
|
889
|
+
---
|
|
890
|
+
|
|
891
|
+
### n8n-trigger-testing-strategies
|
|
892
|
+
**Testing n8n workflow triggers**
|
|
893
|
+
|
|
894
|
+
Webhook, schedule, and event-based trigger testing.
|
|
895
|
+
|
|
896
|
+
**Key Topics:**
|
|
897
|
+
- Webhook testing
|
|
898
|
+
- Schedule validation
|
|
899
|
+
- Event triggers
|
|
900
|
+
- URL patterns
|
|
901
|
+
|
|
902
|
+
**Usage:**
|
|
903
|
+
```javascript
|
|
904
|
+
Skill("n8n-trigger-testing-strategies")
|
|
905
|
+
```
|
|
906
|
+
|
|
907
|
+
---
|
|
908
|
+
|
|
814
909
|
## Using Skills
|
|
815
910
|
|
|
816
911
|
### Via CLI
|
|
@@ -851,7 +946,7 @@ All QE agents automatically have access to relevant skills based on their specia
|
|
|
851
946
|
---
|
|
852
947
|
|
|
853
948
|
**Related Documentation:**
|
|
854
|
-
- [Agent Reference](agents.md) - All 19 QE agents
|
|
949
|
+
- [Agent Reference](agents.md) - All 19 QE agents + 15 n8n agents + 11 subagents
|
|
855
950
|
- [Usage Guide](usage.md) - Complete usage examples
|
|
856
951
|
|
|
857
952
|
**Related Policies:**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "2.5.
|
|
4
|
-
"description": "Agentic Quality Engineering Fleet System - AI-driven quality management platform with
|
|
3
|
+
"version": "2.5.7",
|
|
4
|
+
"description": "Agentic Quality Engineering Fleet System - AI-driven quality management platform with 46 QE skills, n8n workflow testing agents, learning, pattern reuse, ML-based flaky detection, Multi-Model Router (70-81% cost savings), streaming progress updates, 85 MCP tools with lazy loading (87% context reduction), and native TypeScript hooks",
|
|
5
5
|
"main": "dist/cli/index.js",
|
|
6
6
|
"types": "dist/cli/index.d.ts",
|
|
7
7
|
"bin": {
|