Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
@@ -0,0 +1,518 @@
|
||||
/**
|
||||
* Multi-Agent Data Generation Example
|
||||
*
|
||||
* Demonstrates coordinating multiple agents generating different types
|
||||
* of synthetic data using jujutsu branches, merging contributions,
|
||||
* and resolving conflicts.
|
||||
*/
|
||||
|
||||
import { AgenticSynth } from '../../src/core/synth';
|
||||
import { execSync } from 'child_process';
|
||||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
|
||||
interface Agent {
|
||||
id: string;
|
||||
name: string;
|
||||
dataType: string;
|
||||
branch: string;
|
||||
schema: any;
|
||||
}
|
||||
|
||||
interface AgentContribution {
|
||||
agentId: string;
|
||||
dataType: string;
|
||||
recordCount: number;
|
||||
commitHash: string;
|
||||
quality: number;
|
||||
conflicts: string[];
|
||||
}
|
||||
|
||||
class MultiAgentDataCoordinator {
|
||||
private synth: AgenticSynth;
|
||||
private repoPath: string;
|
||||
private agents: Map<string, Agent>;
|
||||
|
||||
constructor(repoPath: string) {
|
||||
this.synth = new AgenticSynth();
|
||||
this.repoPath = repoPath;
|
||||
this.agents = new Map();
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize multi-agent data generation environment
|
||||
*/
|
||||
async initialize(): Promise<void> {
|
||||
try {
|
||||
console.log('🔧 Initializing multi-agent environment...');
|
||||
|
||||
// Initialize jujutsu repo
|
||||
if (!fs.existsSync(path.join(this.repoPath, '.jj'))) {
|
||||
execSync('npx agentic-jujutsu@latest init', {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'inherit'
|
||||
});
|
||||
}
|
||||
|
||||
// Create data directories for each agent type
|
||||
const dataTypes = ['users', 'products', 'transactions', 'logs', 'analytics'];
|
||||
for (const type of dataTypes) {
|
||||
const dir = path.join(this.repoPath, 'data', type);
|
||||
if (!fs.existsSync(dir)) {
|
||||
fs.mkdirSync(dir, { recursive: true });
|
||||
}
|
||||
}
|
||||
|
||||
console.log('✅ Multi-agent environment initialized');
|
||||
} catch (error) {
|
||||
throw new Error(`Failed to initialize: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Register a new agent for data generation
|
||||
*/
|
||||
async registerAgent(
|
||||
id: string,
|
||||
name: string,
|
||||
dataType: string,
|
||||
schema: any
|
||||
): Promise<Agent> {
|
||||
try {
|
||||
console.log(`🤖 Registering agent: ${name} (${dataType})`);
|
||||
|
||||
const branchName = `agent/${id}/${dataType}`;
|
||||
|
||||
// Create agent-specific branch
|
||||
execSync(`npx agentic-jujutsu@latest branch create ${branchName}`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
const agent: Agent = {
|
||||
id,
|
||||
name,
|
||||
dataType,
|
||||
branch: branchName,
|
||||
schema
|
||||
};
|
||||
|
||||
this.agents.set(id, agent);
|
||||
|
||||
// Save agent metadata
|
||||
const metaFile = path.join(this.repoPath, '.jj', 'agents', `${id}.json`);
|
||||
const metaDir = path.dirname(metaFile);
|
||||
if (!fs.existsSync(metaDir)) {
|
||||
fs.mkdirSync(metaDir, { recursive: true });
|
||||
}
|
||||
fs.writeFileSync(metaFile, JSON.stringify(agent, null, 2));
|
||||
|
||||
console.log(`✅ Agent registered: ${name} on branch ${branchName}`);
|
||||
return agent;
|
||||
} catch (error) {
|
||||
throw new Error(`Failed to register agent: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Agent generates data on its dedicated branch
|
||||
*/
|
||||
async agentGenerate(
|
||||
agentId: string,
|
||||
count: number,
|
||||
description: string
|
||||
): Promise<AgentContribution> {
|
||||
try {
|
||||
const agent = this.agents.get(agentId);
|
||||
if (!agent) {
|
||||
throw new Error(`Agent ${agentId} not found`);
|
||||
}
|
||||
|
||||
console.log(`🎲 Agent ${agent.name} generating ${count} ${agent.dataType}...`);
|
||||
|
||||
// Checkout agent's branch
|
||||
execSync(`npx agentic-jujutsu@latest checkout ${agent.branch}`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
// Generate data
|
||||
const data = await this.synth.generate(agent.schema, { count });
|
||||
|
||||
// Save to agent-specific directory
|
||||
const timestamp = Date.now();
|
||||
const dataFile = path.join(
|
||||
this.repoPath,
|
||||
'data',
|
||||
agent.dataType,
|
||||
`${agent.dataType}_${timestamp}.json`
|
||||
);
|
||||
fs.writeFileSync(dataFile, JSON.stringify(data, null, 2));
|
||||
|
||||
// Commit the data
|
||||
execSync(`npx agentic-jujutsu@latest add "${dataFile}"`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
const commitMessage = `[${agent.name}] ${description}\n\nGenerated ${count} ${agent.dataType} records`;
|
||||
execSync(`npx agentic-jujutsu@latest commit -m "${commitMessage}"`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
const commitHash = this.getLatestCommitHash();
|
||||
const quality = this.calculateQuality(data);
|
||||
|
||||
const contribution: AgentContribution = {
|
||||
agentId,
|
||||
dataType: agent.dataType,
|
||||
recordCount: count,
|
||||
commitHash,
|
||||
quality,
|
||||
conflicts: []
|
||||
};
|
||||
|
||||
console.log(`✅ Agent ${agent.name} generated ${count} records (quality: ${(quality * 100).toFixed(1)}%)`);
|
||||
|
||||
return contribution;
|
||||
} catch (error) {
|
||||
throw new Error(`Agent generation failed: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Coordinate parallel data generation from multiple agents
|
||||
*/
|
||||
async coordinateParallelGeneration(
|
||||
tasks: Array<{ agentId: string; count: number; description: string }>
|
||||
): Promise<AgentContribution[]> {
|
||||
try {
|
||||
console.log(`\n🔀 Coordinating ${tasks.length} agents for parallel generation...`);
|
||||
|
||||
const contributions: AgentContribution[] = [];
|
||||
|
||||
// In a real implementation, these would run in parallel
|
||||
// For demo purposes, we'll run sequentially
|
||||
for (const task of tasks) {
|
||||
const contribution = await this.agentGenerate(
|
||||
task.agentId,
|
||||
task.count,
|
||||
task.description
|
||||
);
|
||||
contributions.push(contribution);
|
||||
}
|
||||
|
||||
console.log(`✅ Parallel generation complete: ${contributions.length} contributions`);
|
||||
return contributions;
|
||||
} catch (error) {
|
||||
throw new Error(`Coordination failed: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Merge agent contributions into main branch
|
||||
*/
|
||||
async mergeContributions(
|
||||
agentIds: string[],
|
||||
strategy: 'sequential' | 'octopus' = 'sequential'
|
||||
): Promise<any> {
|
||||
try {
|
||||
console.log(`\n🔀 Merging contributions from ${agentIds.length} agents...`);
|
||||
|
||||
// Switch to main branch
|
||||
execSync('npx agentic-jujutsu@latest checkout main', {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
const mergeResults = {
|
||||
successful: [] as string[],
|
||||
conflicts: [] as { agent: string; files: string[] }[],
|
||||
strategy
|
||||
};
|
||||
|
||||
if (strategy === 'sequential') {
|
||||
// Merge one agent at a time
|
||||
for (const agentId of agentIds) {
|
||||
const agent = this.agents.get(agentId);
|
||||
if (!agent) continue;
|
||||
|
||||
try {
|
||||
console.log(` Merging ${agent.name}...`);
|
||||
execSync(`npx agentic-jujutsu@latest merge ${agent.branch}`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
mergeResults.successful.push(agentId);
|
||||
} catch (error) {
|
||||
// Handle conflicts
|
||||
const conflicts = this.detectConflicts();
|
||||
mergeResults.conflicts.push({
|
||||
agent: agentId,
|
||||
files: conflicts
|
||||
});
|
||||
console.warn(` ⚠️ Conflicts detected for ${agent.name}`);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// Octopus merge - merge all branches at once
|
||||
const branches = agentIds
|
||||
.map(id => this.agents.get(id)?.branch)
|
||||
.filter(Boolean)
|
||||
.join(' ');
|
||||
|
||||
try {
|
||||
execSync(`npx agentic-jujutsu@latest merge ${branches}`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
mergeResults.successful = agentIds;
|
||||
} catch (error) {
|
||||
console.warn('⚠️ Octopus merge failed, falling back to sequential');
|
||||
return this.mergeContributions(agentIds, 'sequential');
|
||||
}
|
||||
}
|
||||
|
||||
console.log(`✅ Merge complete:`);
|
||||
console.log(` Successful: ${mergeResults.successful.length}`);
|
||||
console.log(` Conflicts: ${mergeResults.conflicts.length}`);
|
||||
|
||||
return mergeResults;
|
||||
} catch (error) {
|
||||
throw new Error(`Merge failed: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Resolve conflicts between agent contributions
|
||||
*/
|
||||
async resolveConflicts(
|
||||
conflictFiles: string[],
|
||||
strategy: 'ours' | 'theirs' | 'manual' = 'ours'
|
||||
): Promise<void> {
|
||||
try {
|
||||
console.log(`🔧 Resolving ${conflictFiles.length} conflicts using '${strategy}' strategy...`);
|
||||
|
||||
for (const file of conflictFiles) {
|
||||
if (strategy === 'ours') {
|
||||
// Keep our version
|
||||
execSync(`npx agentic-jujutsu@latest resolve --ours "${file}"`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
} else if (strategy === 'theirs') {
|
||||
// Keep their version
|
||||
execSync(`npx agentic-jujutsu@latest resolve --theirs "${file}"`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
} else {
|
||||
// Manual resolution required
|
||||
console.log(` 📝 Manual resolution needed for: ${file}`);
|
||||
// In production, implement custom merge logic
|
||||
}
|
||||
}
|
||||
|
||||
console.log('✅ Conflicts resolved');
|
||||
} catch (error) {
|
||||
throw new Error(`Conflict resolution failed: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Synchronize agent branches with main
|
||||
*/
|
||||
async synchronizeAgents(agentIds?: string[]): Promise<void> {
|
||||
try {
|
||||
const targets = agentIds
|
||||
? agentIds.map(id => this.agents.get(id)).filter(Boolean) as Agent[]
|
||||
: Array.from(this.agents.values());
|
||||
|
||||
console.log(`\n🔄 Synchronizing ${targets.length} agents with main...`);
|
||||
|
||||
for (const agent of targets) {
|
||||
console.log(` Syncing ${agent.name}...`);
|
||||
|
||||
// Checkout agent branch
|
||||
execSync(`npx agentic-jujutsu@latest checkout ${agent.branch}`, {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
|
||||
// Rebase on main
|
||||
try {
|
||||
execSync('npx agentic-jujutsu@latest rebase main', {
|
||||
cwd: this.repoPath,
|
||||
stdio: 'pipe'
|
||||
});
|
||||
console.log(` ✅ ${agent.name} synchronized`);
|
||||
} catch (error) {
|
||||
console.warn(` ⚠️ ${agent.name} sync failed, manual intervention needed`);
|
||||
}
|
||||
}
|
||||
|
||||
console.log('✅ Synchronization complete');
|
||||
} catch (error) {
|
||||
throw new Error(`Synchronization failed: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get agent activity summary
|
||||
*/
|
||||
async getAgentActivity(agentId: string): Promise<any> {
|
||||
try {
|
||||
const agent = this.agents.get(agentId);
|
||||
if (!agent) {
|
||||
throw new Error(`Agent ${agentId} not found`);
|
||||
}
|
||||
|
||||
// Get commit count on agent branch
|
||||
const log = execSync(
|
||||
`npx agentic-jujutsu@latest log ${agent.branch} --no-graph`,
|
||||
{ cwd: this.repoPath, encoding: 'utf-8' }
|
||||
);
|
||||
|
||||
const commitCount = (log.match(/^commit /gm) || []).length;
|
||||
|
||||
// Get data files
|
||||
const dataDir = path.join(this.repoPath, 'data', agent.dataType);
|
||||
const files = fs.existsSync(dataDir)
|
||||
? fs.readdirSync(dataDir).filter(f => f.endsWith('.json'))
|
||||
: [];
|
||||
|
||||
return {
|
||||
agent: agent.name,
|
||||
dataType: agent.dataType,
|
||||
branch: agent.branch,
|
||||
commitCount,
|
||||
fileCount: files.length,
|
||||
lastActivity: fs.existsSync(dataDir)
|
||||
? new Date(fs.statSync(dataDir).mtime)
|
||||
: null
|
||||
};
|
||||
} catch (error) {
|
||||
throw new Error(`Failed to get agent activity: ${(error as Error).message}`);
|
||||
}
|
||||
}
|
||||
|
||||
// Helper methods
|
||||
|
||||
private getLatestCommitHash(): string {
|
||||
const result = execSync(
|
||||
'npx agentic-jujutsu@latest log --limit 1 --no-graph --template "{commit_id}"',
|
||||
{ cwd: this.repoPath, encoding: 'utf-8' }
|
||||
);
|
||||
return result.trim();
|
||||
}
|
||||
|
||||
private calculateQuality(data: any[]): number {
|
||||
if (!data.length) return 0;
|
||||
|
||||
let totalFields = 0;
|
||||
let completeFields = 0;
|
||||
|
||||
data.forEach(record => {
|
||||
const fields = Object.keys(record);
|
||||
totalFields += fields.length;
|
||||
fields.forEach(field => {
|
||||
if (record[field] !== null && record[field] !== undefined && record[field] !== '') {
|
||||
completeFields++;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return totalFields > 0 ? completeFields / totalFields : 0;
|
||||
}
|
||||
|
||||
private detectConflicts(): string[] {
|
||||
try {
|
||||
const status = execSync('npx agentic-jujutsu@latest status', {
|
||||
cwd: this.repoPath,
|
||||
encoding: 'utf-8'
|
||||
});
|
||||
|
||||
// Parse status for conflict markers
|
||||
return status
|
||||
.split('\n')
|
||||
.filter(line => line.includes('conflict') || line.includes('CONFLICT'))
|
||||
.map(line => line.trim());
|
||||
} catch (error) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Example usage
|
||||
async function main() {
|
||||
console.log('🚀 Multi-Agent Data Generation Coordination Example\n');
|
||||
|
||||
const repoPath = path.join(process.cwd(), 'multi-agent-data-repo');
|
||||
const coordinator = new MultiAgentDataCoordinator(repoPath);
|
||||
|
||||
try {
|
||||
// Initialize environment
|
||||
await coordinator.initialize();
|
||||
|
||||
// Register agents with different schemas
|
||||
const userAgent = await coordinator.registerAgent(
|
||||
'agent-001',
|
||||
'User Data Generator',
|
||||
'users',
|
||||
{ name: 'string', email: 'email', age: 'number', city: 'string' }
|
||||
);
|
||||
|
||||
const productAgent = await coordinator.registerAgent(
|
||||
'agent-002',
|
||||
'Product Data Generator',
|
||||
'products',
|
||||
{ name: 'string', price: 'number', category: 'string', inStock: 'boolean' }
|
||||
);
|
||||
|
||||
const transactionAgent = await coordinator.registerAgent(
|
||||
'agent-003',
|
||||
'Transaction Generator',
|
||||
'transactions',
|
||||
{ userId: 'string', productId: 'string', amount: 'number', timestamp: 'date' }
|
||||
);
|
||||
|
||||
// Coordinate parallel generation
|
||||
const contributions = await coordinator.coordinateParallelGeneration([
|
||||
{ agentId: 'agent-001', count: 1000, description: 'Generate user base' },
|
||||
{ agentId: 'agent-002', count: 500, description: 'Generate product catalog' },
|
||||
{ agentId: 'agent-003', count: 2000, description: 'Generate transaction history' }
|
||||
]);
|
||||
|
||||
console.log('\n📊 Contributions:', contributions);
|
||||
|
||||
// Merge all contributions
|
||||
const mergeResults = await coordinator.mergeContributions(
|
||||
['agent-001', 'agent-002', 'agent-003'],
|
||||
'sequential'
|
||||
);
|
||||
|
||||
console.log('\n🔀 Merge Results:', mergeResults);
|
||||
|
||||
// Get agent activities
|
||||
for (const agentId of ['agent-001', 'agent-002', 'agent-003']) {
|
||||
const activity = await coordinator.getAgentActivity(agentId);
|
||||
console.log(`\n📊 ${activity.agent} Activity:`, activity);
|
||||
}
|
||||
|
||||
// Synchronize agents with main
|
||||
await coordinator.synchronizeAgents();
|
||||
|
||||
console.log('\n✅ Multi-agent coordination completed successfully!');
|
||||
} catch (error) {
|
||||
console.error('❌ Error:', (error as Error).message);
|
||||
process.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
// Run example if executed directly
|
||||
if (require.main === module) {
|
||||
main().catch(console.error);
|
||||
}
|
||||
|
||||
export { MultiAgentDataCoordinator, Agent, AgentContribution };
|
||||
Reference in New Issue
Block a user