agentic-qe 2.5.5 → 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 +111 -0
- package/README.md +7 -4
- package/dist/adapters/MemoryStoreAdapter.d.ts +75 -123
- package/dist/adapters/MemoryStoreAdapter.d.ts.map +1 -1
- package/dist/adapters/MemoryStoreAdapter.js +204 -219
- package/dist/adapters/MemoryStoreAdapter.js.map +1 -1
- package/dist/agents/AccessibilityAllyAgent.d.ts.map +1 -1
- package/dist/agents/AccessibilityAllyAgent.js +17 -1
- package/dist/agents/AccessibilityAllyAgent.js.map +1 -1
- package/dist/agents/BaseAgent.d.ts +18 -250
- package/dist/agents/BaseAgent.d.ts.map +1 -1
- package/dist/agents/BaseAgent.js +122 -520
- package/dist/agents/BaseAgent.js.map +1 -1
- 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/agents/utils/generators.d.ts +30 -0
- package/dist/agents/utils/generators.d.ts.map +1 -0
- package/dist/agents/utils/generators.js +44 -0
- package/dist/agents/utils/generators.js.map +1 -0
- package/dist/agents/utils/index.d.ts +10 -0
- package/dist/agents/utils/index.d.ts.map +1 -0
- package/dist/agents/utils/index.js +19 -0
- package/dist/agents/utils/index.js.map +1 -0
- package/dist/agents/utils/validation.d.ts +72 -0
- package/dist/agents/utils/validation.d.ts.map +1 -0
- package/dist/agents/utils/validation.js +75 -0
- package/dist/agents/utils/validation.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/core/memory/SwarmMemoryManager.d.ts +114 -90
- package/dist/core/memory/SwarmMemoryManager.d.ts.map +1 -1
- package/dist/core/memory/SwarmMemoryManager.js +277 -235
- package/dist/core/memory/SwarmMemoryManager.js.map +1 -1
- package/dist/learning/baselines/StandardTaskSuite.d.ts.map +1 -1
- package/dist/learning/baselines/StandardTaskSuite.js +38 -0
- package/dist/learning/baselines/StandardTaskSuite.js.map +1 -1
- package/dist/mcp/server-instructions.d.ts +1 -1
- package/dist/mcp/server-instructions.js +1 -1
- package/dist/types/memory-interfaces.d.ts +76 -68
- package/dist/types/memory-interfaces.d.ts.map +1 -1
- package/dist/types/memory-interfaces.js +3 -0
- package/dist/types/memory-interfaces.js.map +1 -1
- package/docs/reference/agents.md +91 -2
- package/docs/reference/skills.md +97 -2
- package/package.json +2 -2
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Memory interfaces for type-safe memory store implementations
|
|
3
3
|
*
|
|
4
|
+
* Issue #65: Updated to reflect synchronous better-sqlite3 API.
|
|
5
|
+
* All methods except initialize() and store/retrieve (which have auto-init) are now synchronous.
|
|
6
|
+
*
|
|
4
7
|
* These interfaces define the contract for memory stores used across the system.
|
|
5
8
|
* They enable adapter patterns and dependency injection for better testability.
|
|
6
9
|
*/
|
|
@@ -8,29 +11,34 @@ import { StoreOptions, RetrieveOptions, DeleteOptions, MemoryEntry, Hint, Event,
|
|
|
8
11
|
/**
|
|
9
12
|
* Base memory operations interface
|
|
10
13
|
* Minimal interface required for verification hooks
|
|
14
|
+
*
|
|
15
|
+
* NOTE: initialize(), store(), and retrieve() remain async for auto-initialization.
|
|
16
|
+
* All other operations are synchronous (better-sqlite3 is intentionally sync).
|
|
11
17
|
*/
|
|
12
18
|
export interface IMemoryStore {
|
|
13
19
|
initialize(): Promise<void>;
|
|
14
20
|
store(key: string, value: any, options?: StoreOptions): Promise<void>;
|
|
15
21
|
retrieve(key: string, options?: RetrieveOptions): Promise<any>;
|
|
16
|
-
query(pattern: string, options?: RetrieveOptions):
|
|
17
|
-
delete(key: string, partition?: string, options?: DeleteOptions):
|
|
18
|
-
clear(partition?: string):
|
|
22
|
+
query(pattern: string, options?: RetrieveOptions): MemoryEntry[];
|
|
23
|
+
delete(key: string, partition?: string, options?: DeleteOptions): void;
|
|
24
|
+
clear(partition?: string): void;
|
|
19
25
|
postHint(hint: {
|
|
20
26
|
key: string;
|
|
21
27
|
value: any;
|
|
22
28
|
ttl?: number;
|
|
23
|
-
}):
|
|
24
|
-
readHints(pattern: string):
|
|
25
|
-
cleanExpired():
|
|
26
|
-
close():
|
|
29
|
+
}): void;
|
|
30
|
+
readHints(pattern: string): Hint[];
|
|
31
|
+
cleanExpired(): number;
|
|
32
|
+
close(): void;
|
|
27
33
|
}
|
|
28
34
|
/**
|
|
29
35
|
* Extended memory operations interface
|
|
30
36
|
* Includes specialized table operations
|
|
37
|
+
*
|
|
38
|
+
* Issue #65: All methods are now synchronous except initialize() and store/retrieve.
|
|
31
39
|
*/
|
|
32
40
|
export interface ISwarmMemoryManager extends IMemoryStore {
|
|
33
|
-
stats():
|
|
41
|
+
stats(): {
|
|
34
42
|
totalEntries: number;
|
|
35
43
|
totalHints: number;
|
|
36
44
|
totalEvents: number;
|
|
@@ -47,58 +55,58 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
47
55
|
totalOODACycles: number;
|
|
48
56
|
partitions: string[];
|
|
49
57
|
accessLevels: Record<string, number>;
|
|
50
|
-
}
|
|
51
|
-
storeEvent(event: Event):
|
|
52
|
-
queryEvents(type: string):
|
|
53
|
-
getEventsBySource(source: string):
|
|
54
|
-
storeWorkflowState(workflow: WorkflowState):
|
|
55
|
-
getWorkflowState(id: string):
|
|
56
|
-
updateWorkflowState(id: string, updates: Partial<WorkflowState>):
|
|
57
|
-
queryWorkflowsByStatus(status: string):
|
|
58
|
-
storePattern(pattern: Pattern):
|
|
59
|
-
getPattern(patternName: string):
|
|
60
|
-
incrementPatternUsage(patternName: string):
|
|
61
|
-
queryPatternsByConfidence(threshold: number):
|
|
62
|
-
createConsensusProposal(proposal: ConsensusProposal):
|
|
63
|
-
getConsensusProposal(id: string):
|
|
64
|
-
voteOnConsensus(proposalId: string, agentId: string):
|
|
65
|
-
queryConsensusProposals(status: string):
|
|
66
|
-
storePerformanceMetric(metric: PerformanceMetric):
|
|
67
|
-
queryPerformanceMetrics(metricName: string):
|
|
68
|
-
getMetricsByAgent(agentId: string):
|
|
69
|
-
getAverageMetric(metricName: string):
|
|
70
|
-
createArtifact(artifact: Artifact):
|
|
71
|
-
getArtifact(id: string):
|
|
72
|
-
queryArtifactsByKind(kind: string):
|
|
73
|
-
queryArtifactsByTag(tag: string):
|
|
74
|
-
createSession(session: Session):
|
|
75
|
-
getSession(id: string):
|
|
76
|
-
addSessionCheckpoint(sessionId: string, checkpoint: Checkpoint):
|
|
77
|
-
getLatestCheckpoint(sessionId: string):
|
|
78
|
-
markSessionResumed(sessionId: string):
|
|
79
|
-
registerAgent(agent: AgentRegistration):
|
|
80
|
-
getAgent(id: string):
|
|
81
|
-
updateAgentStatus(agentId: string, status: 'active' | 'idle' | 'terminated'):
|
|
82
|
-
queryAgentsByStatus(status: string):
|
|
83
|
-
updateAgentPerformance(agentId: string, performance: any):
|
|
84
|
-
storeGOAPGoal(goal: GOAPGoal):
|
|
85
|
-
getGOAPGoal(id: string):
|
|
86
|
-
storeGOAPAction(action: GOAPAction):
|
|
87
|
-
getGOAPAction(id: string):
|
|
88
|
-
storeGOAPPlan(plan: GOAPPlan):
|
|
89
|
-
getGOAPPlan(id: string):
|
|
90
|
-
storeOODACycle(cycle: OODACycle):
|
|
91
|
-
getOODACycle(id: string):
|
|
92
|
-
updateOODAPhase(cycleId: string, phase: OODACycle['phase'], data: any):
|
|
93
|
-
completeOODACycle(cycleId: string, result: any):
|
|
94
|
-
queryOODACyclesByPhase(phase: string):
|
|
95
|
-
storeACL(acl: any):
|
|
96
|
-
getACL(resourceId: string):
|
|
97
|
-
updateACL(resourceId: string, updates: any):
|
|
98
|
-
grantPermission(resourceId: string, agentId: string, permissions: any[]):
|
|
99
|
-
revokePermission(resourceId: string, agentId: string, permissions: any[]):
|
|
100
|
-
blockAgent(resourceId: string, agentId: string):
|
|
101
|
-
unblockAgent(resourceId: string, agentId: string):
|
|
58
|
+
};
|
|
59
|
+
storeEvent(event: Event): string;
|
|
60
|
+
queryEvents(type: string): Event[];
|
|
61
|
+
getEventsBySource(source: string): Event[];
|
|
62
|
+
storeWorkflowState(workflow: WorkflowState): void;
|
|
63
|
+
getWorkflowState(id: string): WorkflowState;
|
|
64
|
+
updateWorkflowState(id: string, updates: Partial<WorkflowState>): void;
|
|
65
|
+
queryWorkflowsByStatus(status: string): WorkflowState[];
|
|
66
|
+
storePattern(pattern: Pattern): string;
|
|
67
|
+
getPattern(patternName: string): Pattern;
|
|
68
|
+
incrementPatternUsage(patternName: string): void;
|
|
69
|
+
queryPatternsByConfidence(threshold: number): Pattern[];
|
|
70
|
+
createConsensusProposal(proposal: ConsensusProposal): void;
|
|
71
|
+
getConsensusProposal(id: string): ConsensusProposal;
|
|
72
|
+
voteOnConsensus(proposalId: string, agentId: string): boolean;
|
|
73
|
+
queryConsensusProposals(status: string): ConsensusProposal[];
|
|
74
|
+
storePerformanceMetric(metric: PerformanceMetric): string;
|
|
75
|
+
queryPerformanceMetrics(metricName: string): PerformanceMetric[];
|
|
76
|
+
getMetricsByAgent(agentId: string): PerformanceMetric[];
|
|
77
|
+
getAverageMetric(metricName: string): number;
|
|
78
|
+
createArtifact(artifact: Artifact): void;
|
|
79
|
+
getArtifact(id: string): Artifact;
|
|
80
|
+
queryArtifactsByKind(kind: string): Artifact[];
|
|
81
|
+
queryArtifactsByTag(tag: string): Artifact[];
|
|
82
|
+
createSession(session: Session): void;
|
|
83
|
+
getSession(id: string): Session;
|
|
84
|
+
addSessionCheckpoint(sessionId: string, checkpoint: Checkpoint): void;
|
|
85
|
+
getLatestCheckpoint(sessionId: string): Checkpoint | undefined;
|
|
86
|
+
markSessionResumed(sessionId: string): void;
|
|
87
|
+
registerAgent(agent: AgentRegistration): void;
|
|
88
|
+
getAgent(id: string): AgentRegistration;
|
|
89
|
+
updateAgentStatus(agentId: string, status: 'active' | 'idle' | 'terminated'): void;
|
|
90
|
+
queryAgentsByStatus(status: string): AgentRegistration[];
|
|
91
|
+
updateAgentPerformance(agentId: string, performance: any): void;
|
|
92
|
+
storeGOAPGoal(goal: GOAPGoal): void;
|
|
93
|
+
getGOAPGoal(id: string): GOAPGoal;
|
|
94
|
+
storeGOAPAction(action: GOAPAction): void;
|
|
95
|
+
getGOAPAction(id: string): GOAPAction;
|
|
96
|
+
storeGOAPPlan(plan: GOAPPlan): void;
|
|
97
|
+
getGOAPPlan(id: string): GOAPPlan;
|
|
98
|
+
storeOODACycle(cycle: OODACycle): void;
|
|
99
|
+
getOODACycle(id: string): OODACycle;
|
|
100
|
+
updateOODAPhase(cycleId: string, phase: OODACycle['phase'], data: any): void;
|
|
101
|
+
completeOODACycle(cycleId: string, result: any): void;
|
|
102
|
+
queryOODACyclesByPhase(phase: string): OODACycle[];
|
|
103
|
+
storeACL(acl: any): void;
|
|
104
|
+
getACL(resourceId: string): any | null;
|
|
105
|
+
updateACL(resourceId: string, updates: any): void;
|
|
106
|
+
grantPermission(resourceId: string, agentId: string, permissions: any[]): void;
|
|
107
|
+
revokePermission(resourceId: string, agentId: string, permissions: any[]): void;
|
|
108
|
+
blockAgent(resourceId: string, agentId: string): void;
|
|
109
|
+
unblockAgent(resourceId: string, agentId: string): void;
|
|
102
110
|
getAccessControl(): any;
|
|
103
111
|
/**
|
|
104
112
|
* Store a learning experience for Q-learning
|
|
@@ -113,7 +121,7 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
113
121
|
reward: number;
|
|
114
122
|
nextState: string;
|
|
115
123
|
episodeId?: string;
|
|
116
|
-
}):
|
|
124
|
+
}): void;
|
|
117
125
|
/**
|
|
118
126
|
* Upsert a Q-value for a state-action pair
|
|
119
127
|
* @param agentId The agent ID
|
|
@@ -121,18 +129,18 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
121
129
|
* @param actionKey The action key
|
|
122
130
|
* @param qValue The Q-value
|
|
123
131
|
*/
|
|
124
|
-
upsertQValue(agentId: string, stateKey: string, actionKey: string, qValue: number):
|
|
132
|
+
upsertQValue(agentId: string, stateKey: string, actionKey: string, qValue: number): void;
|
|
125
133
|
/**
|
|
126
134
|
* Get all Q-values for an agent
|
|
127
135
|
* @param agentId The agent ID
|
|
128
136
|
* @returns Array of Q-values with state/action keys
|
|
129
137
|
*/
|
|
130
|
-
getAllQValues(agentId: string):
|
|
138
|
+
getAllQValues(agentId: string): Array<{
|
|
131
139
|
state_key: string;
|
|
132
140
|
action_key: string;
|
|
133
141
|
q_value: number;
|
|
134
142
|
update_count: number;
|
|
135
|
-
}
|
|
143
|
+
}>;
|
|
136
144
|
/**
|
|
137
145
|
* Get Q-value for a specific state-action pair
|
|
138
146
|
* @param agentId The agent ID
|
|
@@ -140,7 +148,7 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
140
148
|
* @param actionKey The action key
|
|
141
149
|
* @returns The Q-value or null if not found
|
|
142
150
|
*/
|
|
143
|
-
getQValue(agentId: string, stateKey: string, actionKey: string):
|
|
151
|
+
getQValue(agentId: string, stateKey: string, actionKey: string): number | null;
|
|
144
152
|
/**
|
|
145
153
|
* Store a learning performance snapshot
|
|
146
154
|
* @param snapshot The learning snapshot containing metrics and performance data
|
|
@@ -152,14 +160,14 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
152
160
|
improvementRate?: number;
|
|
153
161
|
totalExperiences?: number;
|
|
154
162
|
explorationRate?: number;
|
|
155
|
-
}):
|
|
163
|
+
}): void;
|
|
156
164
|
/**
|
|
157
165
|
* Get learning history for an agent
|
|
158
166
|
* @param agentId The agent ID
|
|
159
167
|
* @param limit Maximum number of records to return
|
|
160
168
|
* @returns Array of learning history records
|
|
161
169
|
*/
|
|
162
|
-
getLearningHistory(agentId: string, limit?: number):
|
|
170
|
+
getLearningHistory(agentId: string, limit?: number): Array<{
|
|
163
171
|
id: number;
|
|
164
172
|
agent_id: string;
|
|
165
173
|
pattern_id?: string;
|
|
@@ -170,6 +178,6 @@ export interface ISwarmMemoryManager extends IMemoryStore {
|
|
|
170
178
|
q_value?: number;
|
|
171
179
|
episode?: number;
|
|
172
180
|
timestamp: string;
|
|
173
|
-
}
|
|
181
|
+
}>;
|
|
174
182
|
}
|
|
175
183
|
//# sourceMappingURL=memory-interfaces.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"memory-interfaces.d.ts","sourceRoot":"","sources":["../../src/types/memory-interfaces.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"memory-interfaces.d.ts","sourceRoot":"","sources":["../../src/types/memory-interfaces.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Memory interfaces for type-safe memory store implementations
|
|
4
4
|
*
|
|
5
|
+
* Issue #65: Updated to reflect synchronous better-sqlite3 API.
|
|
6
|
+
* All methods except initialize() and store/retrieve (which have auto-init) are now synchronous.
|
|
7
|
+
*
|
|
5
8
|
* These interfaces define the contract for memory stores used across the system.
|
|
6
9
|
* They enable adapter patterns and dependency injection for better testability.
|
|
7
10
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"memory-interfaces.js","sourceRoot":"","sources":["../../src/types/memory-interfaces.ts"],"names":[],"mappings":";AAAA
|
|
1
|
+
{"version":3,"file":"memory-interfaces.js","sourceRoot":"","sources":["../../src/types/memory-interfaces.ts"],"names":[],"mappings":";AAAA;;;;;;;;GAQG"}
|
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": {
|