agentic-qe 2.0.0 → 2.1.1

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.
Files changed (144) hide show
  1. package/.claude/agents/qx-partner.md +17 -4
  2. package/.claude/skills/accessibility-testing/SKILL.md +144 -692
  3. package/.claude/skills/agentic-quality-engineering/SKILL.md +176 -529
  4. package/.claude/skills/api-testing-patterns/SKILL.md +180 -560
  5. package/.claude/skills/brutal-honesty-review/SKILL.md +113 -603
  6. package/.claude/skills/bug-reporting-excellence/SKILL.md +116 -517
  7. package/.claude/skills/chaos-engineering-resilience/SKILL.md +127 -72
  8. package/.claude/skills/cicd-pipeline-qe-orchestrator/SKILL.md +209 -404
  9. package/.claude/skills/code-review-quality/SKILL.md +158 -608
  10. package/.claude/skills/compatibility-testing/SKILL.md +148 -38
  11. package/.claude/skills/compliance-testing/SKILL.md +132 -63
  12. package/.claude/skills/consultancy-practices/SKILL.md +114 -446
  13. package/.claude/skills/context-driven-testing/SKILL.md +117 -381
  14. package/.claude/skills/contract-testing/SKILL.md +176 -141
  15. package/.claude/skills/database-testing/SKILL.md +137 -130
  16. package/.claude/skills/exploratory-testing-advanced/SKILL.md +160 -629
  17. package/.claude/skills/holistic-testing-pact/SKILL.md +140 -188
  18. package/.claude/skills/localization-testing/SKILL.md +145 -33
  19. package/.claude/skills/mobile-testing/SKILL.md +132 -448
  20. package/.claude/skills/mutation-testing/SKILL.md +147 -41
  21. package/.claude/skills/performance-testing/SKILL.md +200 -546
  22. package/.claude/skills/quality-metrics/SKILL.md +164 -519
  23. package/.claude/skills/refactoring-patterns/SKILL.md +132 -699
  24. package/.claude/skills/regression-testing/SKILL.md +120 -926
  25. package/.claude/skills/risk-based-testing/SKILL.md +157 -660
  26. package/.claude/skills/security-testing/SKILL.md +199 -538
  27. package/.claude/skills/sherlock-review/SKILL.md +163 -699
  28. package/.claude/skills/shift-left-testing/SKILL.md +161 -465
  29. package/.claude/skills/shift-right-testing/SKILL.md +161 -519
  30. package/.claude/skills/six-thinking-hats/SKILL.md +175 -1110
  31. package/.claude/skills/skills-manifest.json +71 -20
  32. package/.claude/skills/tdd-london-chicago/SKILL.md +131 -448
  33. package/.claude/skills/technical-writing/SKILL.md +103 -154
  34. package/.claude/skills/test-automation-strategy/SKILL.md +166 -772
  35. package/.claude/skills/test-data-management/SKILL.md +126 -910
  36. package/.claude/skills/test-design-techniques/SKILL.md +179 -89
  37. package/.claude/skills/test-environment-management/SKILL.md +136 -91
  38. package/.claude/skills/test-reporting-analytics/SKILL.md +169 -92
  39. package/.claude/skills/testability-scoring/SKILL.md +172 -538
  40. package/.claude/skills/testability-scoring/scripts/generate-html-report.js +0 -0
  41. package/.claude/skills/visual-testing-advanced/SKILL.md +155 -78
  42. package/.claude/skills/xp-practices/SKILL.md +151 -587
  43. package/CHANGELOG.md +86 -0
  44. package/README.md +23 -16
  45. package/dist/agents/QXPartnerAgent.d.ts +47 -1
  46. package/dist/agents/QXPartnerAgent.d.ts.map +1 -1
  47. package/dist/agents/QXPartnerAgent.js +2086 -125
  48. package/dist/agents/QXPartnerAgent.js.map +1 -1
  49. package/dist/agents/lifecycle/AgentLifecycleManager.d.ts.map +1 -1
  50. package/dist/agents/lifecycle/AgentLifecycleManager.js +34 -31
  51. package/dist/agents/lifecycle/AgentLifecycleManager.js.map +1 -1
  52. package/dist/cli/commands/init-claude-md-template.d.ts.map +1 -1
  53. package/dist/cli/commands/init-claude-md-template.js +14 -0
  54. package/dist/cli/commands/init-claude-md-template.js.map +1 -1
  55. package/dist/core/SwarmCoordinator.d.ts +180 -0
  56. package/dist/core/SwarmCoordinator.d.ts.map +1 -0
  57. package/dist/core/SwarmCoordinator.js +473 -0
  58. package/dist/core/SwarmCoordinator.js.map +1 -0
  59. package/dist/core/memory/ReflexionMemoryAdapter.d.ts +109 -0
  60. package/dist/core/memory/ReflexionMemoryAdapter.d.ts.map +1 -0
  61. package/dist/core/memory/ReflexionMemoryAdapter.js +306 -0
  62. package/dist/core/memory/ReflexionMemoryAdapter.js.map +1 -0
  63. package/dist/core/memory/RuVectorPatternStore.d.ts +28 -0
  64. package/dist/core/memory/RuVectorPatternStore.d.ts.map +1 -1
  65. package/dist/core/memory/RuVectorPatternStore.js +70 -0
  66. package/dist/core/memory/RuVectorPatternStore.js.map +1 -1
  67. package/dist/core/memory/SparseVectorSearch.d.ts +55 -0
  68. package/dist/core/memory/SparseVectorSearch.d.ts.map +1 -0
  69. package/dist/core/memory/SparseVectorSearch.js +130 -0
  70. package/dist/core/memory/SparseVectorSearch.js.map +1 -0
  71. package/dist/core/memory/TieredCompression.d.ts +81 -0
  72. package/dist/core/memory/TieredCompression.d.ts.map +1 -0
  73. package/dist/core/memory/TieredCompression.js +270 -0
  74. package/dist/core/memory/TieredCompression.js.map +1 -0
  75. package/dist/core/memory/index.d.ts +6 -0
  76. package/dist/core/memory/index.d.ts.map +1 -1
  77. package/dist/core/memory/index.js +29 -1
  78. package/dist/core/memory/index.js.map +1 -1
  79. package/dist/core/metrics/MetricsAggregator.d.ts +228 -0
  80. package/dist/core/metrics/MetricsAggregator.d.ts.map +1 -0
  81. package/dist/core/metrics/MetricsAggregator.js +482 -0
  82. package/dist/core/metrics/MetricsAggregator.js.map +1 -0
  83. package/dist/core/metrics/index.d.ts +5 -0
  84. package/dist/core/metrics/index.d.ts.map +1 -0
  85. package/dist/core/metrics/index.js +11 -0
  86. package/dist/core/metrics/index.js.map +1 -0
  87. package/dist/core/optimization/SwarmOptimizer.d.ts +5 -0
  88. package/dist/core/optimization/SwarmOptimizer.d.ts.map +1 -1
  89. package/dist/core/optimization/SwarmOptimizer.js +17 -0
  90. package/dist/core/optimization/SwarmOptimizer.js.map +1 -1
  91. package/dist/core/orchestration/AdaptiveScheduler.d.ts +190 -0
  92. package/dist/core/orchestration/AdaptiveScheduler.d.ts.map +1 -0
  93. package/dist/core/orchestration/AdaptiveScheduler.js +460 -0
  94. package/dist/core/orchestration/AdaptiveScheduler.js.map +1 -0
  95. package/dist/core/orchestration/WorkflowOrchestrator.d.ts +13 -0
  96. package/dist/core/orchestration/WorkflowOrchestrator.d.ts.map +1 -1
  97. package/dist/core/orchestration/WorkflowOrchestrator.js +32 -0
  98. package/dist/core/orchestration/WorkflowOrchestrator.js.map +1 -1
  99. package/dist/core/recovery/CircuitBreaker.d.ts +176 -0
  100. package/dist/core/recovery/CircuitBreaker.d.ts.map +1 -0
  101. package/dist/core/recovery/CircuitBreaker.js +382 -0
  102. package/dist/core/recovery/CircuitBreaker.js.map +1 -0
  103. package/dist/core/recovery/RecoveryOrchestrator.d.ts +186 -0
  104. package/dist/core/recovery/RecoveryOrchestrator.d.ts.map +1 -0
  105. package/dist/core/recovery/RecoveryOrchestrator.js +476 -0
  106. package/dist/core/recovery/RecoveryOrchestrator.js.map +1 -0
  107. package/dist/core/recovery/RetryStrategy.d.ts +127 -0
  108. package/dist/core/recovery/RetryStrategy.d.ts.map +1 -0
  109. package/dist/core/recovery/RetryStrategy.js +314 -0
  110. package/dist/core/recovery/RetryStrategy.js.map +1 -0
  111. package/dist/core/recovery/index.d.ts +8 -0
  112. package/dist/core/recovery/index.d.ts.map +1 -0
  113. package/dist/core/recovery/index.js +27 -0
  114. package/dist/core/recovery/index.js.map +1 -0
  115. package/dist/core/skills/DependencyResolver.d.ts +99 -0
  116. package/dist/core/skills/DependencyResolver.d.ts.map +1 -0
  117. package/dist/core/skills/DependencyResolver.js +260 -0
  118. package/dist/core/skills/DependencyResolver.js.map +1 -0
  119. package/dist/core/skills/ManifestGenerator.d.ts +114 -0
  120. package/dist/core/skills/ManifestGenerator.d.ts.map +1 -0
  121. package/dist/core/skills/ManifestGenerator.js +449 -0
  122. package/dist/core/skills/ManifestGenerator.js.map +1 -0
  123. package/dist/core/skills/index.d.ts +9 -0
  124. package/dist/core/skills/index.d.ts.map +1 -0
  125. package/dist/core/skills/index.js +24 -0
  126. package/dist/core/skills/index.js.map +1 -0
  127. package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts +5 -0
  128. package/dist/mcp/handlers/chaos/chaos-inject-failure.d.ts.map +1 -1
  129. package/dist/mcp/handlers/chaos/chaos-inject-failure.js +36 -2
  130. package/dist/mcp/handlers/chaos/chaos-inject-failure.js.map +1 -1
  131. package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts +5 -0
  132. package/dist/mcp/handlers/chaos/chaos-inject-latency.d.ts.map +1 -1
  133. package/dist/mcp/handlers/chaos/chaos-inject-latency.js +36 -2
  134. package/dist/mcp/handlers/chaos/chaos-inject-latency.js.map +1 -1
  135. package/dist/mcp/server.d.ts +9 -9
  136. package/dist/mcp/server.d.ts.map +1 -1
  137. package/dist/mcp/server.js +1 -2
  138. package/dist/mcp/server.js.map +1 -1
  139. package/dist/types/qx.d.ts +113 -7
  140. package/dist/types/qx.d.ts.map +1 -1
  141. package/dist/types/qx.js.map +1 -1
  142. package/dist/visualization/api/RestEndpoints.js +1 -1
  143. package/dist/visualization/api/RestEndpoints.js.map +1 -1
  144. package/package.json +15 -54
package/CHANGELOG.md CHANGED
@@ -7,6 +7,92 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.1.1] - 2025-12-04
11
+
12
+ ### 🎯 QX Enhancements, Memory Leak Fixes & Security Improvements
13
+
14
+ This release builds on v2.1.0 with significant QX Partner Agent enhancements, critical memory leak fixes, and security improvements.
15
+
16
+ ### Added
17
+
18
+ #### QX Partner Agent Enhancements (PR #110 by @fndlalit)
19
+ - **Creativity Analysis**: Domain-inspired testing approaches from philosophy, medicine, e-commerce, social science, and gaming
20
+ - **Design Analysis**: Three dimensions - Exactness & Clarity, Intuitive Design, Counter-intuitive Design
21
+ - **Enhanced Scoring**: Now includes creativity (15%) and design (15%) in overall QX score
22
+ - **Methodology Section**: New HTML report sections explaining QX concepts
23
+
24
+ #### Memory Adapters (Issue #109)
25
+ - **ReflexionMemoryAdapter**: Flaky test prediction with experience replay (410 lines)
26
+ - **SparseVectorSearch**: Hybrid BM25/vector search for semantic retrieval (174 lines)
27
+ - **TieredCompression**: 85% memory reduction with adaptive compression (328 lines)
28
+
29
+ #### Community Contribution
30
+ - **testability-scoring skill**: Automated testability assessment using 10 principles (by @fndlalit)
31
+
32
+ ### Fixed
33
+
34
+ #### Memory Leak Fixes (Issue #112 P0)
35
+ - **Chaos handler intervals**: Lazy initialization with `ensureCleanupInterval()`
36
+ - **Process blocking**: Added `.unref()` to prevent intervals from blocking exit
37
+ - **Test cleanup**: Added `shutdown()` exports for clean teardown
38
+
39
+ #### Security Improvements
40
+ - **Workflow permissions**: Explicit permissions in migration-validation.yml
41
+ - **CI pipeline**: jest-junit reporter configuration, FleetManager.database.test.ts flaky tests
42
+
43
+ ### Changed
44
+ - Updated skills count from 38 to 39 (added testability-scoring)
45
+ - State files now in .gitignore to prevent merge conflicts
46
+ - Cleaned up working files from root folder
47
+
48
+ ## [2.1.0] - 2025-12-03
49
+
50
+ ### 🚀 Comprehensive QX Analysis & Skills Optimization
51
+
52
+ This release delivers significant improvements to QX (Quality Experience) analysis, optimized skills format across all 38 QE skills, and enhanced agent coordination capabilities.
53
+
54
+ ### Added
55
+
56
+ #### Comprehensive QX Analysis (PR #104 by @fndlalit)
57
+ - **23+ QX Heuristics**: Detailed findings, issues, and recommendations per heuristic
58
+ - **Domain-Specific Failure Detection**: Automatic detection for e-commerce, SaaS, content/blog, and form-heavy sites
59
+ - **Contextual Page Content Extraction**: Real page content analysis (headings, navigation, buttons, forms, links, main content)
60
+ - **Rule of Three Problem Analysis**: Ensures minimum 3 potential failure modes identified per issue
61
+ - **Comprehensive QX Formatter**: `scripts/contextualizers/comprehensive-qx-formatter.js` for detailed reports matching manual analysis structure
62
+
63
+ #### Skills Optimization (PR #102)
64
+ - **38 QE Skills Optimized**: Agent-focused format with 40-60% token reduction
65
+ - **`<default_to_action>` Blocks**: Immediate actionable guidance at top of each skill
66
+ - **Quick Reference Cards**: Tables and command examples for rapid lookup
67
+ - **Fleet Coordination Hints**: Memory namespace organization and `FleetManager.coordinate()` patterns
68
+ - **Standardized Frontmatter**: `tokenEstimate`, `agents`, `implementation_status`, `optimization_version`, `last_optimized`
69
+
70
+ #### Testability Scoring Skill v2.1
71
+ - Optimized skill format with proper metadata
72
+ - Fleet coordination and memory namespace hints
73
+ - Agent integration examples
74
+ - Contributor attribution (`@fndlalit`)
75
+
76
+ ### Changed
77
+
78
+ #### QX Partner Agent v2.1
79
+ - Updated implementation status to v2.1 with new capabilities
80
+ - Added domain-specific failure detection capability
81
+ - Added contextual page content extraction capability
82
+ - Added comprehensive report formatting capability
83
+ - Added Rule of Three problem analysis capability
84
+ - Enhanced memory namespace with new coordination paths
85
+
86
+ #### Dependency Updates
87
+ - **@modelcontextprotocol/sdk**: Bumped version (PR #105)
88
+
89
+ ### Contributors
90
+
91
+ - **@fndlalit**: Comprehensive QX Analysis with detailed heuristics (PR #104)
92
+ - **Dependabot**: @modelcontextprotocol/sdk dependency update (PR #105)
93
+
94
+ ---
95
+
10
96
  ## [2.0.0] - 2025-12-02
11
97
 
12
98
  ### 🚀 Major Release: Agentic QE Fleet v2
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <img alt="NPM Downloads" src="https://img.shields.io/npm/dw/agentic-qe">
10
10
 
11
11
 
12
- **Version 2.0.0** | [Changelog](CHANGELOG.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
12
+ **Version 2.1.0** | [Changelog](CHANGELOG.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
13
13
 
14
14
  > Agentic test automation with AI learning, real-time visualization, QUIC transport, testability scoring, OpenTelemetry observability, persistent event storage, constitutional AI governance, and intelligent model routing.
15
15
 
@@ -672,28 +672,35 @@ The test generator automatically delegates to subagents for a complete RED-GREEN
672
672
 
673
673
  ---
674
674
 
675
- ## 📝 What's New in v1.9.4
675
+ ## 📝 What's New in v2.1.0
676
676
 
677
- 🔧 **Critical Memory & Learning System Fixes** (2025-11-30)
677
+ 🚀 **Comprehensive QX Analysis & Skills Optimization** (2025-12-03)
678
678
 
679
- This release delivers critical fixes to the memory, learning, and patterns system. All QE agents now have a fully functional learning system with proper vector embeddings, Q-value reinforcement learning, and persistent pattern storage.
679
+ This release delivers comprehensive QX (Quality Experience) analysis improvements, optimized skills format, and enhanced agent coordination.
680
680
 
681
- ### Key Fixes
681
+ ### Key Features
682
+
683
+ - **Comprehensive QX Analysis** (PR #104 by @fndlalit): 23+ heuristics with detailed findings, domain-specific failure detection (e-commerce, SaaS, content/blog, forms), contextual page content extraction
684
+ - **38 QE Skills Optimized** (PR #102): Agent-focused format with `<default_to_action>` blocks, quick reference cards, 40-60% token reduction
685
+ - **Testability Scoring v2.1**: Optimized skill format, Fleet coordination hints, improved memory namespace organization
686
+ - **QX Partner Agent v2.1**: Enhanced capabilities for Rule of Three analysis, domain-specific detection, comprehensive report formatting
687
+
688
+ ### Skills Optimization
682
689
 
683
- - **Vector embeddings now stored correctly**: Fixed `RealAgentDBAdapter.store()` to properly store 384-dimension embeddings as BLOB data
684
- - **SQL parameter style bug**: Fixed agentdb's `SqlJsDatabase` wrapper to use spread params instead of array params
685
- - **HNSW index schema mismatch**: Added `pattern_id` generated column for agentdb's HNSWIndex compatibility
686
- - **Learning experience retrieval**: Added missing getter methods for Q-learning and experience replay
687
- - **Hooks saving to wrong database**: Fixed all Claude Code hooks to explicitly export `AGENTDB_PATH` so learning data is saved correctly
688
- - **CI platform compatibility**: Moved ARM64-only ruvector packages to optionalDependencies for x64 CI compatibility
690
+ All 38 QE skills now feature:
691
+ - Optimized frontmatter with `tokenEstimate`, `agents`, `implementation_status`, `optimization_version`
692
+ - `<default_to_action>` blocks for immediate actionable guidance
693
+ - Quick reference cards with tables and command examples
694
+ - Fleet coordination and memory namespace hints
689
695
 
690
- ### New Features
696
+ ### QX Analysis Improvements
691
697
 
692
- - **SwarmMemoryManager learning methods**: `getBestAction()`, `getRecentLearningExperiences()`, `getLearningStats()`, and more
693
- - **Phase 4 Alerting & Reporting**: AlertManager, FeedbackRouter, StrategyApplicator modules
694
- - **Quality Gate CI workflow**: GitHub Actions integration for automated quality validation
698
+ - **23+ Heuristics**: Detailed findings, issues, and recommendations per heuristic
699
+ - **Domain Detection**: Automatic failure mode detection by site type
700
+ - **Contextual Extraction**: Real page content analysis (headings, navigation, buttons, forms, links)
701
+ - **Rule of Three**: Problem complexity assessment ensuring minimum 3 failure modes identified
695
702
 
696
- **Upgrade**: `npm install agentic-qe@1.9.4`
703
+ **Upgrade**: `npm install agentic-qe@2.1.0`
697
704
 
698
705
  ---
699
706
 
@@ -31,6 +31,8 @@ export declare class QXPartnerAgent extends BaseAgent {
31
31
  private heuristicsEngine?;
32
32
  private oracleDetector?;
33
33
  private impactAnalyzer?;
34
+ private browser;
35
+ private page;
34
36
  constructor(config: QXPartnerConfig & {
35
37
  context: AgentContext;
36
38
  memoryStore: MemoryStore;
@@ -61,9 +63,45 @@ export declare class QXPartnerAgent extends BaseAgent {
61
63
  */
62
64
  private performFullQXAnalysis;
63
65
  /**
64
- * Collect QX context from target
66
+ * Generate HTML report from QX analysis
67
+ */
68
+ private generateHTMLReport;
69
+ /**
70
+ * Generate HTML content for the report
71
+ */
72
+ private generateHTMLContent;
73
+ /**
74
+ * Get CSS styles for the report
75
+ */
76
+ private getReportStyles;
77
+ /**
78
+ * Escape HTML special characters
79
+ */
80
+ private escapeHtml;
81
+ /**
82
+ * Format heuristic name for display
83
+ */
84
+ private formatHeuristicName;
85
+ /**
86
+ * Get color based on score
87
+ */
88
+ private getScoreColor;
89
+ /**
90
+ * Get score interpretation
91
+ */
92
+ private getScoreInterpretation;
93
+ /**
94
+ * Launch report in default browser
95
+ */
96
+ private launchReportInBrowser;
97
+ /**
98
+ * Collect QX context from target using Playwright
65
99
  */
66
100
  private collectQXContext;
101
+ /**
102
+ * Detect domain-specific failure modes based on site type
103
+ */
104
+ private detectDomainSpecificFailures;
67
105
  /**
68
106
  * Analyze problem using Rule of Three and complexity assessment
69
107
  */
@@ -76,6 +114,14 @@ export declare class QXPartnerAgent extends BaseAgent {
76
114
  * Analyze business needs
77
115
  */
78
116
  private analyzeBusinessNeeds;
117
+ /**
118
+ * Analyze Creativity - Drawing inspiration from diverse domains
119
+ */
120
+ private analyzeCreativity;
121
+ /**
122
+ * Analyze Design - Exactness, Intuitive, and Counter-intuitive Design
123
+ */
124
+ private analyzeDesign;
79
125
  /**
80
126
  * Detect oracle problems from analysis context
81
127
  */
@@ -1 +1 @@
1
- {"version":3,"file":"QXPartnerAgent.d.ts","sourceRoot":"","sources":["../../src/agents/QXPartnerAgent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,SAAS,EAAmB,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,MAAM,EAAgC,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC3F,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AACtC,OAAO,EAEL,eAAe,EAahB,MAAM,aAAa,CAAC;AAGrB,UAAU,MAAM;IACd,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IAChD,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IAChD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IACjD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;CAClD;AAiBD,qBAAa,cAAe,SAAQ,SAAS;IAC3C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IACzC,SAAS,CAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAuB;IACxD,OAAO,CAAC,gBAAgB,CAAC,CAAqB;IAC9C,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,cAAc,CAAC,CAAiB;gBAE5B,MAAM,EAAE,eAAe,GAAG;QAAE,OAAO,EAAE,YAAY,CAAC;QAAC,WAAW,EAAE,WAAW,CAAC;QAAC,QAAQ,EAAE,YAAY,CAAA;KAAE;IAsCjH;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,sBAAsB;IAmCrC;;OAEG;cACa,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAmCrD;;OAEG;cACa,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IA+C9C;;OAEG;cACa,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAuBxC;;OAEG;cACa,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAqC3D;;OAEG;YACW,qBAAqB;IAiFnC;;OAEG;YACW,gBAAgB;IAgB9B;;OAEG;YACW,cAAc;IAgB5B;;OAEG;YACW,gBAAgB;IAa9B;;OAEG;YACW,oBAAoB;IAelC;;OAEG;YACW,+BAA+B;IAY7C;;OAEG;YACW,aAAa;IAQ3B;;OAEG;YACW,kBAAkB;IAahC;;OAEG;YACW,uBAAuB;IA2FrC;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAgC/B;;OAEG;IACH,OAAO,CAAC,YAAY;IAQpB;;OAEG;YACW,oBAAoB;IASlC;;OAEG;YACW,0BAA0B;IAkBxC,OAAO,CAAC,wBAAwB;IAWhC;;OAEG;YACW,qBAAqB;IAOnC;;OAEG;YACW,sBAAsB;IAiBpC;;OAEG;YACW,yBAAyB;IAKvC;;OAEG;YACW,2BAA2B;YA2B3B,sCAAsC;YAKtC,0BAA0B;YAY1B,+BAA+B;YAW/B,WAAW;YASX,kBAAkB;YAQlB,sBAAsB;YAQtB,0BAA0B;cASxB,mBAAmB,IAAI,OAAO,CAAC,IAAI,CAAC;cAIpC,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;CAGtD"}
1
+ {"version":3,"file":"QXPartnerAgent.d.ts","sourceRoot":"","sources":["../../src/agents/QXPartnerAgent.ts"],"names":[],"mappings":"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"}