snow-flow 3.3.2 → 3.3.4

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.
@@ -2,8 +2,6 @@
2
2
  * ServiceNow Queen Agent
3
3
  * Central coordination point for the ServiceNow hive-mind
4
4
  */
5
- import { ServiceNowTask } from './types';
6
- import { GapAnalysisResult } from '../intelligence/gap-analysis-engine';
7
5
  export interface QueenConfig {
8
6
  memoryPath?: string;
9
7
  maxConcurrentAgents?: number;
@@ -16,7 +14,6 @@ export declare class ServiceNowQueen {
16
14
  private neuralLearning;
17
15
  private agentFactory;
18
16
  private mcpBridge;
19
- private gapAnalysisEngine;
20
17
  private activeTasks;
21
18
  private config;
22
19
  private logger;
@@ -25,47 +22,6 @@ export declare class ServiceNowQueen {
25
22
  * Main entry point: Execute ServiceNow objective with MCP-FIRST workflow
26
23
  */
27
24
  executeObjective(objective: string): Promise<any>;
28
- private spawnOptimalSwarm;
29
- private coordinateExecution;
30
- private shouldExecuteInParallel;
31
- private executeAgentsInParallel;
32
- private executeAgentsSequentially;
33
- private facilitateAgentCoordination;
34
- private executeFinalDeployment;
35
- private createDeploymentPlan;
36
- private extractWidgetConfig;
37
- private extractScriptConfig;
38
- private generateArtifactName;
39
- private generateArtifactTitle;
40
- private generateWidgetTemplate;
41
- private generateWidgetCss;
42
- private generateClientScript;
43
- private generateServerScript;
44
- private generateDemoData;
45
- private generateScriptCode;
46
- private executeDeploymentPlan;
47
- private getServerForTool;
48
- private handleWidgetDependencies;
49
- private attemptRecovery;
50
- private learnFromExecution;
51
- private handleExecutionFailure;
52
- private cleanupTask;
53
- private generateTaskId;
54
- getActiveTaskCount(): number;
55
- getTaskStatus(taskId: string): ServiceNowTask | null;
56
- /**
57
- * Get gap _analysis results for a task
58
- */
59
- getGapAnalysisResults(taskId: string): GapAnalysisResult | null;
60
- /**
61
- * Get all manual guides from gap _analysis for a task
62
- */
63
- getManualConfigurationGuides(taskId: string): any;
64
- getHiveMindStatus(): any;
65
- exportMemory(): string;
66
- importMemory(memoryData: string): void;
67
- clearMemory(): void;
68
- getLearningInsights(): any;
69
- shutdown(): Promise<void>;
25
+ catch(error: any): void;
70
26
  }
71
27
  //# sourceMappingURL=servicenow-queen.d.ts.map