git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
52 lines
2.3 KiB
TypeScript
52 lines
2.3 KiB
TypeScript
/**
|
|
* Collective Intelligence Examples
|
|
*
|
|
* Demonstrates swarm intelligence patterns including collaborative
|
|
* problem-solving, knowledge sharing, emergent behavior simulation,
|
|
* voting and consensus mechanisms, and reputation systems.
|
|
*
|
|
* Integrates with:
|
|
* - claude-flow: Neural pattern recognition and learning
|
|
* - ruv-swarm: Collective intelligence coordination
|
|
* - AgenticDB: Distributed knowledge storage
|
|
*/
|
|
/**
|
|
* Generate collaborative problem-solving session data
|
|
*/
|
|
export declare function collaborativeProblemSolving(): Promise<import("../../dist/index.js").GenerationResult<unknown>>;
|
|
/**
|
|
* Generate knowledge sharing and transfer data
|
|
*/
|
|
export declare function knowledgeSharingPatterns(): Promise<{
|
|
knowledgeBase: import("../../dist/index.js").GenerationResult<unknown>;
|
|
transferEvents: import("../../dist/index.js").GenerationResult<unknown>;
|
|
agentProfiles: import("../../dist/index.js").GenerationResult<unknown>;
|
|
}>;
|
|
/**
|
|
* Generate emergent behavior patterns in swarm systems
|
|
*/
|
|
export declare function emergentBehaviorSimulation(): Promise<{
|
|
swarmStates: import("../../dist/index.js").GenerationResult<unknown>;
|
|
interactions: import("../../dist/index.js").GenerationResult<unknown>;
|
|
emergentPatterns: import("../../dist/index.js").GenerationResult<unknown>;
|
|
behaviorEvolution: import("../../dist/index.js").GenerationResult<unknown>;
|
|
}>;
|
|
/**
|
|
* Generate voting and consensus mechanism data
|
|
*/
|
|
export declare function votingAndConsensusData(): Promise<{
|
|
votingSessions: import("../../dist/index.js").GenerationResult<unknown>;
|
|
consensusMechanisms: import("../../dist/index.js").GenerationResult<unknown>;
|
|
votingBehavior: import("../../dist/index.js").GenerationResult<unknown>;
|
|
}>;
|
|
/**
|
|
* Generate reputation and trust system data
|
|
*/
|
|
export declare function reputationSystems(): Promise<{
|
|
reputationProfiles: import("../../dist/index.js").GenerationResult<unknown>;
|
|
reputationEvents: import("../../dist/index.js").GenerationResult<unknown>;
|
|
trustRelationships: import("../../dist/index.js").GenerationResult<unknown>;
|
|
reputationChanges: import("../../dist/index.js").GenerationResult<unknown>;
|
|
}>;
|
|
export declare function runAllCollectiveIntelligenceExamples(): Promise<void>;
|
|
//# sourceMappingURL=collective-intelligence.d.ts.map
|