@sethdouglasford/claude-flow
Version:
Claude Code Flow - Advanced AI-powered development workflows with SPARC methodology
23 lines • 777 B
JavaScript
/**
* Swarm Optimizations
* Export all optimization components
*/
export { ClaudeConnectionPool } from "./connection-pool.js";
export { AsyncFileManager } from "./async-file-manager.js";
export { CircularBuffer } from "./circular-buffer.js";
export { TTLMap } from "./ttl-map.js";
export { OptimizedExecutor } from "./optimized-executor.js";
// Re-export commonly used together
export const createOptimizedSwarmStack = (_config) => {
// NOTE: Temporarily disabled due to compilation issues
// Will be re-enabled once underlying files are fixed
return {
connectionPool: null,
fileManager: null,
executor: null,
shutdown: async () => {
// Placeholder implementation
},
};
};
//# sourceMappingURL=index.js.map