-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun-integrated-system.js
More file actions
316 lines (265 loc) · 8.37 KB
/
Copy pathrun-integrated-system.js
File metadata and controls
316 lines (265 loc) · 8.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#!/usr/bin/env node
/**
* Sistema Integrado GITHUB_MASTERY
*
* Script principal que executa:
* - DocSync para organização de documentação
* - GIDEN para inteligência autônoma
* - MCP para protocolo de contexto
* - NEXUS como hub central
*/
import { createDocSyncIntegration } from './src/mcp/docsync-integration.js';
import { spawn } from 'child_process';
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
class IntegratedSystem {
constructor() {
this.components = {
docSync: null,
mcpServer: null,
nexusServer: null,
};
this.isRunning = false;
}
/**
* Iniciar sistema integrado
*/
async start() {
console.log(`
╔══════════════════════════════════════════════════════╗
║ GITHUB MASTERY - SISTEMA INTEGRADO ║
║ ║
║ 🤖 GIDEN - Inteligência Autônoma ║
║ 📚 DocSync - Organização de Documentação ║
║ 🔌 MCP - Protocolo de Contexto do Modelo ║
║ 🌐 NEXUS - Hub Central de Integração ║
╚══════════════════════════════════════════════════════╝
`);
try {
// Iniciar DocSync
await this.startDocSync();
// Iniciar servidor MCP
await this.startMCPServer();
// Iniciar NEXUS (se disponível)
await this.startNEXUS();
this.isRunning = true;
console.log('\n✅ Sistema integrado iniciado com sucesso!\n');
// Mostrar status
this.showStatus();
// Configurar handlers de saída
await this.setupExitHandlers();
} catch (error) {
console.error('❌ Erro ao iniciar sistema:', error);
await this.shutdown();
process.exit(1);
}
}
/**
* Iniciar DocSync
*/
async startDocSync() {
console.log('🚀 Iniciando DocSync...');
this.components.docSync = createDocSyncIntegration({
rootPath: __dirname,
syncInterval: 5 * 60 * 1000, // 5 minutos
});
// Conectar eventos
this.components.docSync.on('sync_complete', stats => {
console.log(
`📊 Sincronização concluída: ${stats.filesProcessed} arquivos, ${stats.documentsIndexed} documentos`
);
});
this.components.docSync.on('error', error => {
console.error('❌ Erro no DocSync:', error);
});
// Inicializar
await this.components.docSync.initialize();
}
/**
* Iniciar servidor MCP
*/
async startMCPServer() {
console.log('🚀 Iniciando servidor MCP...');
const mcpServerPath = path.join(
__dirname,
'src',
'mcp',
'consolidated-mcp-server.js'
);
// Verificar se o arquivo existe antes de tentar executar
const fs = await import('fs/promises');
try {
await fs.access(mcpServerPath);
} catch {
console.log('⚠️ Servidor MCP não encontrado em:', mcpServerPath);
console.log(' Continuando sem MCP...');
return;
}
this.components.mcpServer = spawn('node', [mcpServerPath], {
cwd: __dirname,
stdio: ['pipe', 'pipe', 'pipe'],
env: { ...process.env, NODE_ENV: 'production' },
});
// Capturar saída
this.components.mcpServer.stdout.on('data', data => {
console.log(`[MCP] ${data.toString().trim()}`);
});
this.components.mcpServer.stderr.on('data', data => {
console.error(`[MCP Error] ${data.toString().trim()}`);
});
// Aguardar inicialização
await new Promise(resolve => setTimeout(resolve, 2000));
}
/**
* Iniciar NEXUS
*/
async startNEXUS() {
console.log('🚀 Verificando NEXUS...');
const nexusPath = path.join(__dirname, 'NEXUS');
try {
// Verificar se NEXUS existe
const nexusExists = await this.checkFileExists(nexusPath);
if (nexusExists) {
console.log('✅ NEXUS disponível');
// Implementar inicialização do NEXUS quando disponível
} else {
console.log('⚠️ NEXUS não encontrado - continuando sem ele');
}
} catch (error) {
console.log('⚠️ NEXUS não disponível:', error.message);
}
}
/**
* Verificar se arquivo/diretório existe
*/
async checkFileExists(filePath) {
try {
const fs = await import('fs/promises');
await fs.access(filePath);
return true;
} catch {
return false;
}
}
/**
* Mostrar status do sistema
*/
showStatus() {
console.log('\n📊 STATUS DO SISTEMA:');
console.log('─'.repeat(50));
console.log(`DocSync: ${this.components.docSync ? '✅ Ativo' : '❌ Inativo'}`);
console.log(
`MCP Server: ${this.components.mcpServer && !this.components.mcpServer.killed ? '✅ Ativo' : '❌ Inativo'}`
);
console.log(
`NEXUS: ${this.components.nexusServer ? '✅ Ativo' : '⚠️ Não disponível'}`
);
console.log('─'.repeat(50));
console.log('\n📌 Comandos disponíveis:');
console.log(' - Ctrl+C: Desligar sistema');
console.log(' - Digite "status": Ver status atualizado');
console.log(' - Digite "sync": Forçar sincronização');
console.log(' - Digite "report": Gerar relatório');
console.log('\n');
}
/**
* Configurar handlers de saída
*/
async setupExitHandlers() {
// Capturar Ctrl+C
process.on('SIGINT', async () => {
console.log('\n\n🛑 Desligando sistema...');
await this.shutdown();
process.exit(0);
});
// Capturar erros não tratados
process.on('uncaughtException', async error => {
console.error('❌ Erro não tratado:', error);
await this.shutdown();
process.exit(1);
});
// Configurar entrada do usuário
await this.setupUserInput();
}
/**
* Configurar entrada do usuário
*/
async setupUserInput() {
const readline = await import('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on('line', async input => {
const command = input.trim().toLowerCase();
switch (command) {
case 'status':
this.showStatus();
break;
case 'sync':
console.log('🔄 Forçando sincronização...');
if (this.components.docSync) {
await this.components.docSync.performSync();
}
break;
case 'report':
console.log('📊 Gerando relatório...');
if (this.components.docSync) {
const report = await this.components.docSync.generateOrganizationReport();
console.log('✅ Relatório gerado: ORGANIZATION_REPORT.json');
console.log(` Pontuação de saúde: ${report.health.score}/100`);
}
break;
case 'help':
console.log('\n📌 Comandos disponíveis:');
console.log(' status - Ver status do sistema');
console.log(' sync - Forçar sincronização');
console.log(' report - Gerar relatório de organização');
console.log(' help - Mostrar esta ajuda');
console.log(' exit - Sair do sistema\n');
break;
case 'exit':
console.log('👋 Saindo...');
await this.shutdown();
process.exit(0);
break;
default:
if (command) {
console.log(
`❓ Comando desconhecido: ${command}. Digite 'help' para ajuda.`
);
}
}
});
}
/**
* Desligar sistema
*/
async shutdown() {
if (!this.isRunning) return;
console.log('🔌 Desligando componentes...');
// Desligar DocSync
if (this.components.docSync) {
await this.components.docSync.shutdown();
}
// Desligar MCP Server
if (this.components.mcpServer && !this.components.mcpServer.killed) {
this.components.mcpServer.kill();
}
// Desligar NEXUS se estiver rodando
if (this.components.nexusServer) {
// Implementar shutdown do NEXUS
}
this.isRunning = false;
console.log('✅ Sistema desligado');
}
}
// Executar sistema
async function main() {
const system = new IntegratedSystem();
await system.start();
}
// Iniciar
main().catch(console.error);