Spaces:
No application file
No application file
File size: 29,676 Bytes
32ff0e3 | 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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 | /* ββββββββββββββββββββββββββββββββββββββββ
AI ORCHESTRATION PLATFORM β APP LOGIC
ββββββββββββββββββββββββββββββββββββββββ */
const { createApp, ref, reactive, computed, nextTick, onMounted } = Vue;
/* ββββββββββββββββββββββββββββββββββββββββ
SEED / STATIC DATA
ββββββββββββββββββββββββββββββββββββββββ */
const SEED_AGENTS = [
{ agent_id: 'agt-001', agent_name: 'Planner', agent_role: 'Task decomposition', status: 'idle', color: '#6ee7b7' },
{ agent_id: 'agt-002', agent_name: 'Researcher', agent_role: 'Web & data retrieval', status: 'busy', color: '#818cf8' },
{ agent_id: 'agt-003', agent_name: 'Coder', agent_role: 'Code generation', status: 'idle', color: '#f472b6' },
{ agent_id: 'agt-004', agent_name: 'Reviewer', agent_role: 'QA & validation', status: 'idle', color: '#fbbf24' },
];
const SEED_PIPELINES = [
{ pipeline_id: 'pip-001', pipeline_name: 'Auto Orchestrate', pipeline_description: 'Pilih agen secara otomatis' },
{ pipeline_id: 'pip-002', pipeline_name: 'Research Mode', pipeline_description: 'Fokus riset & analisis' },
{ pipeline_id: 'pip-003', pipeline_name: 'Code Generator', pipeline_description: 'Fokus pembuatan kode' },
{ pipeline_id: 'pip-004', pipeline_name: 'Review Pipeline', pipeline_description: 'Review & QA saja' },
];
const SEED_ACTIVE_TASKS = [
{ task_id: 'tsk-001', task_name: 'Market analysis', assigned_agent: 'Researcher', progress_percent: 65, task_color: '#818cf8' },
{ task_id: 'tsk-002', task_name: 'Code review', assigned_agent: 'Reviewer', progress_percent: 30, task_color: '#fbbf24' },
];
const SEED_TOKEN_USAGE = [
{ model_name: 'claude-3-opus', tokens_used: 48200, token_limit: 100000, bar_color: '#6ee7b7' },
{ model_name: 'claude-3-haiku', tokens_used: 12500, token_limit: 100000, bar_color: '#818cf8' },
];
const SEED_SYSTEM_LOGS = [
{ log_id: 'log-001', log_time: '14:02', log_level: 'success', log_message: 'Orchestrator ready' },
{ log_id: 'log-002', log_time: '14:03', log_level: '', log_message: 'Researcher agent connected' },
{ log_id: 'log-003', log_time: '14:05', log_level: 'warn', log_message: 'High latency detected (>500ms)' },
];
const SUGGESTIONS = [
{ title: 'π Research Task', desc: 'Riset topik dan buat ringkasan', prompt: 'Riset perkembangan terbaru machine learning di 2024 dan buat ringkasan eksekutif' },
{ title: 'π» Generate Code', desc: 'Buat kode dari deskripsi', prompt: 'Buat REST API sederhana menggunakan Node.js + Express untuk manajemen todo list' },
{ title: 'π Plan a Project', desc: 'Dekomposisi proyek jadi task', prompt: 'Buat rencana proyek untuk membangun platform e-commerce dari nol dalam 3 bulan' },
{ title: 'β
Review & QA', desc: 'Review output dari agen lain', prompt: 'Review dan evaluasi kualitas kode Python berikut untuk deteksi anomali data sensor' },
];
/**
* Mock SSE event sequences β simulasi stream dari AI backend.
*
* CATATAN INTEGRASI (SSE):
* Nanti ganti seluruh fungsi mockSSEStream() dengan:
*
* const es = new EventSource('/api/stream?task_id=...');
* es.addEventListener('message', (e) => pushSSEEntry('msg', e.data));
* es.addEventListener('tool', (e) => pushSSEEntry('tool', e.data));
* es.addEventListener('done', (e) => { pushSSEEntry('done', e.data); es.close(); });
* es.addEventListener('error', (e) => { pushSSEEntry('error', 'Stream error'); es.close(); });
*/
const SSE_MOCK_SEQUENCES = [
[
{ event_type: 'msg', data: 'Parsing task intentβ¦', delay: 200 },
{ event_type: 'msg', data: 'Selecting optimal agentβ¦', delay: 400 },
{ event_type: 'tool', data: 'repo_read: fetching README', delay: 600 },
{ event_type: 'tool', data: 'repo_read: scanning src/', delay: 500 },
{ event_type: 'msg', data: 'Analysing code structureβ¦', delay: 700 },
{ event_type: 'stream', data: 'Generating response', delay: 300 },
{ event_type: 'done', data: 'Task completed (1.4s)', delay: 500 },
],
[
{ event_type: 'msg', data: 'Decomposing task into stepsβ¦', delay: 300 },
{ event_type: 'tool', data: 'web_search: query sent', delay: 500 },
{ event_type: 'tool', data: 'web_search: 12 results found', delay: 400 },
{ event_type: 'msg', data: 'Summarising findingsβ¦', delay: 800 },
{ event_type: 'stream', data: 'Streaming answer tokens', delay: 600 },
{ event_type: 'done', data: 'Task completed (2.1s)', delay: 400 },
],
[
{ event_type: 'msg', data: 'Loading repository contextβ¦', delay: 400 },
{ event_type: 'tool', data: 'git_diff: comparing changes', delay: 700 },
{ event_type: 'tool', data: 'code_lint: running checks', delay: 600 },
{ event_type: 'msg', data: 'Writing fixβ¦', delay: 500 },
{ event_type: 'tool', data: 'git_commit: staging files', delay: 400 },
{ event_type: 'tool', data: 'git_push: pushing branch', delay: 500 },
{ event_type: 'done', data: 'Branch pushed (2.8s)', delay: 300 },
],
];
/* ββββββββββββββββββββββββββββββββββββββββ
HELPERS
ββββββββββββββββββββββββββββββββββββββββ */
const delay = (ms) => new Promise((r) => setTimeout(r, ms));
const rand = (min, max) => Math.floor(Math.random() * (max - min) + min);
const pickRand = (arr) => arr[Math.floor(Math.random() * arr.length)];
const nowTime = () => new Date().toLocaleTimeString('id-ID', { hour: '2-digit', minute: '2-digit' });
const nowTs = () => new Date().toLocaleTimeString('id-ID', { hour: '2-digit', minute: '2-digit', second: '2-digit' });
const makeId = (p, n) => `${p}-${String(n).padStart(3, '0')}`;
/**
* Parse "https://github.com/owner/repo" β { owner, repo_name }
* Returns null when invalid.
*/
function parseGithubUrl(url) {
try {
const u = new URL(url.trim());
if (u.hostname !== 'github.com') return null;
const parts = u.pathname.replace(/^\//, '').replace(/\/$/, '').split('/');
if (parts.length < 2) return null;
return { owner: parts[0], repo_name: parts[1] };
} catch {
return null;
}
}
/**
* Build GitHub API headers from PAT.
* CATATAN INTEGRASI: headers ini yang dikirim ke endpoint /api/github/*
* atau langsung ke api.github.com.
*/
function githubHeaders(pat) {
return {
Authorization: `Bearer ${pat}`,
Accept: 'application/vnd.github+json',
'X-GitHub-Api-Version': '2022-11-28',
};
}
/* ββββββββββββββββββββββββββββββββββββββββ
VUE APP
ββββββββββββββββββββββββββββββββββββββββ */
createApp({
setup() {
/* ββ GitHub Auth state ββ
* Data contract: GitHubAuth
* {
* is_authenticated : boolean
* pat_input : string (cleared after connect)
* pat : string (stored in memory only, never localStorage)
* username : string
* avatar_url : string
* }
*/
const github_auth = reactive({
is_authenticated: false,
pat_input: '',
pat: '',
username: '',
avatar_url: '',
});
/* ββ Repo state ββ
* Data contract: RepoState
* {
* url_input : string
* is_analysing : boolean
* info : RepoInfo | null
* }
*
* RepoInfo:
* {
* full_name : string (e.g. "owner/repo")
* language : string
* stars_count : number
* open_issues_count : number
* default_branch : string
* is_contributor : boolean (true if authed user can push)
* }
*/
const repo = reactive({
url_input: '',
is_analysing: false,
info: null,
});
/* ββ SSE Stream state ββ
* CATATAN INTEGRASI:
* is_active β true saat EventSource sedang terbuka
* entries β array of { ts, event_type, data }
* event_type β 'msg' | 'tool' | 'done' | 'error' | 'stream'
*/
const sse_stream = reactive({
is_active: false,
entries: [],
});
/* ββ Commit result (last) ββ
* Data contract: CommitResult
* {
* branch_name : string
* commit_sha : string
* commit_message : string
* commits_url : string (link ke tab commits branch)
* pr_url : string (link buat PR)
* }
*/
const last_commit_result = ref(null);
/* ββ Core state ββ */
const agents = ref(SEED_AGENTS.map((a) => ({ ...a })));
const pipelines = ref(SEED_PIPELINES);
const active_pipeline = ref(pipelines.value[0]);
const selected_agent_id = ref('agt-001');
const messages = ref([]);
const session_stats = reactive({ total_tasks: 0, success_rate: 98, avg_latency_ms: 312 });
const active_tasks = ref(SEED_ACTIVE_TASKS.map((t) => ({ ...t })));
const token_usage = ref(SEED_TOKEN_USAGE.map((u) => ({ ...u })));
const system_logs = ref(SEED_SYSTEM_LOGS.map((l) => ({ ...l })));
const suggestions = SUGGESTIONS;
const input_text = ref('');
const is_loading = ref(false);
const messageContainer = ref(null);
const sseLogArea = ref(null);
const textarea = ref(null);
const modal = reactive({
show: false,
title: '',
body: '',
confirm_label: '',
confirm_class: 'primary',
on_confirm: () => {},
});
let msg_counter = 0;
let log_counter = SEED_SYSTEM_LOGS.length;
/* ββββββββββββββββββββββββββββββββββββββββ
GITHUB AUTH
ββββββββββββββββββββββββββββββββββββββββ */
/**
* connectGithub β verifikasi PAT dan ambil profil user.
*
* CATATAN INTEGRASI:
* Ganti fetch di bawah dengan endpoint backend kamu, misalnya:
* POST /api/auth/github { pat } β { username, avatar_url }
*
* Backend perlu forward ke: GET https://api.github.com/user
* dengan header Authorization: Bearer <pat>
* dan kembalikan { login, avatar_url } ke frontend.
*/
async function connectGithub() {
const pat = github_auth.pat_input.trim();
if (!pat) return;
addLog('', 'Verifying GitHub PATβ¦');
/* --- MOCK: simulasi verifikasi token --- */
await delay(800);
const is_valid = pat.startsWith('ghp_') || pat.length > 20;
if (!is_valid) {
addLog('error', 'GitHub PAT invalid');
showModal('Authentication Failed', '<p>PAT tidak valid. Pastikan token dimulai dengan <code>ghp_</code> dan memiliki scope <code>repo</code>.</p>');
return;
}
github_auth.pat = pat;
github_auth.pat_input = '';
github_auth.is_authenticated = true;
github_auth.username = 'dev_user'; // β dari GET /user response: data.login
github_auth.avatar_url = ''; // β data.avatar_url
addLog('success', `GitHub connected as ${github_auth.username}`);
}
function revokeGithub() {
github_auth.is_authenticated = false;
github_auth.pat = '';
github_auth.username = '';
repo.info = null;
addLog('warn', 'GitHub session revoked');
}
/* ββββββββββββββββββββββββββββββββββββββββ
REPO ANALYSE
ββββββββββββββββββββββββββββββββββββββββ */
/**
* analyseRepo β fetch metadata repo dan cek contributor status.
*
* CATATAN INTEGRASI (dua endpoint GitHub API):
*
* 1. GET https://api.github.com/repos/{owner}/{repo}
* β ambil full_name, language, stargazers_count, open_issues_count, default_branch
*
* 2. GET https://api.github.com/repos/{owner}/{repo}/collaborators/{username}
* β 204 = contributor, 404 = bukan contributor
* (endpoint ini butuh PAT dengan scope repo)
*
* Kalau user belum auth, is_contributor selalu false.
*/
async function analyseRepo() {
const url_str = repo.url_input.trim();
const parsed = parseGithubUrl(url_str);
if (!parsed) {
showModal('URL Tidak Valid', '<p>Format URL harus: <code>https://github.com/owner/repo</code></p>');
return;
}
repo.is_analysing = true;
addLog('', `Analysing ${parsed.owner}/${parsed.repo_name}β¦`);
/* --- MOCK: simulasi API response --- */
await delay(1200);
const is_authed = github_auth.is_authenticated;
const is_contributor = is_authed && Math.random() > 0.4; // simulasi: 60% kemungkinan contributor
repo.info = {
full_name: `${parsed.owner}/${parsed.repo_name}`,
language: pickRand(['TypeScript', 'Python', 'Go', 'Rust', 'JavaScript']),
stars_count: rand(10, 4800),
open_issues_count: rand(0, 42),
default_branch: 'main',
is_contributor,
};
repo.is_analysing = false;
addLog('success', `Repo loaded: ${repo.info.full_name} (contributor: ${is_contributor})`);
/* Auto-trigger agent pipeline */
input_text.value = `Analisis repository ${repo.info.full_name} secara menyeluruh β ${repo.info.language}, ${repo.info.stars_count} stars, ${repo.info.open_issues_count} issues`;
await sendMessage();
}
/* ββββββββββββββββββββββββββββββββββββββββ
SSE STREAM (MOCK)
ββββββββββββββββββββββββββββββββββββββββ */
function pushSSEEntry(event_type, data) {
sse_stream.entries.push({ ts: nowTs(), event_type, data });
nextTick(() => {
if (sseLogArea.value) sseLogArea.value.scrollTop = sseLogArea.value.scrollHeight;
});
}
/**
* mockSSEStream β simulasi event yang diterima dari backend via SSE.
*
* CATATAN INTEGRASI:
* Hapus fungsi ini dan ganti `await mockSSEStream()` dengan:
*
* const es = new EventSource(`/api/tasks/${task_id}/stream`);
* await new Promise((resolve, reject) => {
* es.addEventListener('message', (e) => pushSSEEntry('msg', e.data));
* es.addEventListener('tool', (e) => pushSSEEntry('tool', e.data));
* es.addEventListener('stream', (e) => pushSSEEntry('stream', e.data));
* es.addEventListener('done', (e) => { pushSSEEntry('done', e.data); es.close(); resolve(); });
* es.addEventListener('error', (e) => { pushSSEEntry('error', 'Connection error'); es.close(); reject(); });
* });
*/
async function mockSSEStream() {
sse_stream.is_active = true;
const seq = pickRand(SSE_MOCK_SEQUENCES);
for (const event of seq) {
await delay(event.delay);
pushSSEEntry(event.event_type, event.data);
}
sse_stream.is_active = false;
}
/* ββββββββββββββββββββββββββββββββββββββββ
DOWNLOAD REPORT
ββββββββββββββββββββββββββββββββββββββββ */
/**
* downloadReport β export session ke file .txt / .md.
*
* CATATAN INTEGRASI:
* Kalau backend sudah punya endpoint laporan, ganti dengan:
* window.open(`/api/sessions/${session_id}/report?format=pdf`, '_blank');
*
* Untuk sekarang, kita generate langsung di browser dari state.
*/
function downloadReport() {
const lines = [
'# AI Orchestration β Session Report',
`Generated : ${new Date().toLocaleString('id-ID')}`,
`Pipeline : ${active_pipeline.value.pipeline_name}`,
`Repo : ${repo.info ? repo.info.full_name : '(none)'}`,
`Total tasks: ${session_stats.total_tasks}`,
`Success : ${session_stats.success_rate}%`,
'',
'---',
'',
'## Conversation Log',
'',
];
messages.value.forEach((msg) => {
if (msg.is_typing) return;
lines.push(`### [${msg.created_at}] ${msg.sender_name} (${msg.sender_type})`);
lines.push(msg.message_content || '');
if (msg.pipeline_trace && msg.pipeline_trace.length) {
lines.push('');
lines.push('**Pipeline Trace:**');
msg.pipeline_trace.forEach((s) => lines.push(` β’ ${s.step_agent} β ${s.step_output} (${s.duration_ms}ms)`));
}
if (msg.commit_result) {
lines.push('');
lines.push(`**Branch Created:** ${msg.commit_result.branch_name}`);
lines.push(`**Commit:** ${msg.commit_result.commit_message}`);
lines.push(`**Commits URL:** ${msg.commit_result.commits_url}`);
}
lines.push('');
});
if (sse_stream.entries.length) {
lines.push('---', '', '## SSE Stream Log', '');
sse_stream.entries.forEach((e) => lines.push(`[${e.ts}] [${e.event_type}] ${e.data}`));
}
const blob = new Blob([lines.join('\n')], { type: 'text/markdown;charset=utf-8' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = `orch-report-${Date.now()}.md`;
a.click();
URL.revokeObjectURL(url);
addLog('success', 'Report downloaded');
}
/* ββββββββββββββββββββββββββββββββββββββββ
MODAL HELPER
ββββββββββββββββββββββββββββββββββββββββ */
function showModal(title, body, opts = {}) {
modal.title = title;
modal.body = body;
modal.confirm_label = opts.confirm_label || '';
modal.confirm_class = opts.confirm_class || 'primary';
modal.on_confirm = opts.on_confirm || (() => { modal.show = false; });
modal.show = true;
}
/* ββββββββββββββββββββββββββββββββββββββββ
CORE UTILITIES
ββββββββββββββββββββββββββββββββββββββββ */
function getAgentColor(agent_id) {
const a = agents.value.find((a) => a.agent_id === agent_id);
return a ? a.color : '#888';
}
function setAgentStatus(agent_id, status) {
const a = agents.value.find((a) => a.agent_id === agent_id);
if (a) a.status = status;
}
function addLog(level, message) {
system_logs.value.unshift({
log_id: makeId('log', ++log_counter),
log_time: nowTime(),
log_level: level,
log_message: message,
});
if (system_logs.value.length > 30) system_logs.value.pop();
}
async function scrollToBottom() {
await nextTick();
if (messageContainer.value) messageContainer.value.scrollTop = messageContainer.value.scrollHeight;
}
function autoResize(e) {
const el = e.target;
el.style.height = 'auto';
el.style.height = Math.min(el.scrollHeight, 160) + 'px';
}
async function useSuggestion(prompt) {
input_text.value = prompt;
await sendMessage();
}
function clearChat() {
messages.value = [];
last_commit_result.value = null;
session_stats.total_tasks = 0;
}
/* ββ Template class/style helpers ββ */
function avatarClass(msg) {
if (msg.sender_type === 'user') return 'avatar-user';
if (msg.sender_type === 'orchestrator') return 'avatar-orchestrator';
return 'avatar-agent';
}
function bubbleClass(msg) {
return {
'bubble-user': msg.sender_type === 'user',
'bubble-system': msg.sender_type === 'orchestrator',
'bubble-agent': msg.sender_type === 'agent',
};
}
function agentBubbleStyle(agent_id) {
const color = getAgentColor(agent_id);
return { borderColor: color + '55', background: color + '0d' };
}
function tokenBarWidth(usage) {
return Math.min((usage.tokens_used / usage.token_limit) * 100, 100);
}
/* ββ Message builders ββ */
function buildUserMsg(text) {
return {
message_id: makeId('msg', ++msg_counter), session_id: 'ses-001',
sender_type: 'user', sender_name: 'You', sender_initials: 'ME',
agent_id: null, message_content: text,
pipeline_trace: [], commit_result: null,
is_typing: false, created_at: nowTime(),
};
}
function buildTypingMsg(sender_type, sender_name, sender_initials, agent_id = null) {
return {
message_id: makeId('msg', ++msg_counter),
sender_type, sender_name, sender_initials, agent_id,
message_content: '', pipeline_trace: [], commit_result: null,
is_typing: true, created_at: nowTime(),
};
}
/* ββββββββββββββββββββββββββββββββββββββββ
SEND MESSAGE β MAIN FLOW
ββββββββββββββββββββββββββββββββββββββββ */
/**
* sendMessage β mengirim pesan ke orchestrator.
*
* CATATAN INTEGRASI:
* Ganti blok "simulate agent work" dengan:
* const task = await fetch('/api/tasks', {
* method: 'POST',
* headers: { 'Content-Type': 'application/json' },
* body: JSON.stringify({
* session_id : 'ses-001',
* pipeline_id : active_pipeline.value.pipeline_id,
* message_content: text,
* repo_url : repo.url_input,
* github_pat : github_auth.pat, // jangan log/tampilkan ini
* })
* }).then(r => r.json());
*
* Kemudian buka SSE:
* const es = new EventSource(`/api/tasks/${task.task_id}/stream`);
* β¦(lihat mockSSEStream untuk event handling)
*
* Respons akhir agent dikirim via event 'done' atau endpoint terpisah:
* GET /api/tasks/{task_id}/result
*/
async function sendMessage() {
const text = input_text.value.trim();
if (!text || is_loading.value) return;
/* 1. User message */
messages.value.push(buildUserMsg(text));
input_text.value = '';
if (textarea.value) textarea.value.style.height = 'auto';
session_stats.total_tasks++;
await scrollToBottom();
/* 2. Orchestrator typing */
is_loading.value = true;
const orch_typing = buildTypingMsg('orchestrator', 'Orchestrator', '⬑');
messages.value.push(orch_typing);
addLog('', `Task dispatched β ${active_pipeline.value.pipeline_name}`);
await scrollToBottom();
/* 3. SSE stream (mock) β jalan paralel */
const stream_promise = mockSSEStream();
await delay(rand(900, 1500));
/* 4. Pick agent */
const picked_agent = pickRand(agents.value);
setAgentStatus(picked_agent.agent_id, 'busy');
/* 5. Replace orchestrator typing β response */
const orch_idx = messages.value.indexOf(orch_typing);
messages.value[orch_idx] = {
...orch_typing,
is_typing: false,
message_content: `Menerima tugas dari pipeline "${active_pipeline.value.pipeline_name}". Mendistribusikan ke ${picked_agent.agent_name}β¦`,
pipeline_trace: [
{ step_agent: 'Orchestrator', step_output: 'Parsed intent', step_color: '#6ee7b7', duration_ms: rand(40, 140) },
{ step_agent: picked_agent.agent_name, step_output: 'Assigned', step_color: picked_agent.color, duration_ms: rand(10, 60) },
],
created_at: nowTime(),
};
await scrollToBottom();
await delay(rand(700, 1500));
/* 6. Agent typing */
const agent_typing = buildTypingMsg(
'agent',
picked_agent.agent_name,
picked_agent.agent_name.slice(0, 2).toUpperCase(),
picked_agent.agent_id,
);
messages.value.push(agent_typing);
addLog('', `${picked_agent.agent_name} processingβ¦`);
await scrollToBottom();
await delay(rand(1200, 2200));
/* 7. Determine if this is a code task β generate commit result */
const is_code_task = active_pipeline.value.pipeline_id === 'pip-003'
|| text.toLowerCase().includes('fix') || text.toLowerCase().includes('refactor')
|| text.toLowerCase().includes('code') || text.toLowerCase().includes('bug');
const is_contributor = repo.info && repo.info.is_contributor;
let commit_result = null;
if (is_code_task && github_auth.is_authenticated) {
if (is_contributor) {
/* Contributor: bisa push branch baru */
const branch_name = `ai-fix/${Date.now()}`;
const parsed = repo.info ? parseGithubUrl(repo.url_input) : null;
const repo_base = parsed ? `https://github.com/${parsed.owner}/${parsed.repo_name}` : 'https://github.com/owner/repo';
commit_result = {
branch_name,
commit_sha: rand(100000, 999999).toString(16),
commit_message: `fix: AI-generated improvements for task "${text.slice(0, 50)}"`,
commits_url: `${repo_base}/commits/${branch_name}`,
pr_url: `${repo_base}/compare/${branch_name}?expand=1`,
};
last_commit_result.value = commit_result;
addLog('success', `Branch pushed: ${branch_name}`);
} else {
/* Bukan contributor: tidak bisa push */
addLog('warn', 'Cannot push: user is not a contributor');
}
}
/* 8. Agent response texts */
const AGENT_RESPONSES = [
() => `Saya telah menganalisis permintaan "${text.slice(0, 60)}β¦"\n\nHasil menunjukkan 3 sub-task utama. Rencana eksekusi sudah disiapkan dengan estimasi waktu ~4 menit.`,
() => `Permintaan diterima. Ditemukan referensi dari 12 sumber terpercaya. Data menunjukkan tren positif 6 bulan terakhir dengan growth rate 23%.`,
() => is_contributor
? `Kode telah di-generate dan diperbaiki. Branch baru sudah di-push ke repository. Silahkan review pull request untuk merge ke main.`
: `Kode telah dianalisis dan perbaikan diidentifikasi. Karena kamu bukan contributor, patch tidak dapat di-push otomatis. Salin output di bawah untuk apply manual.`,
() => `Review selesai. Ditemukan 2 improvement: (1) optimasi query endpoint utama, (2) tambahkan error handling untuk edge case. Tidak ada critical bug. β`,
];
const resp_fn = pickRand(AGENT_RESPONSES);
/* 9. Replace agent typing β final response */
const agent_idx = messages.value.indexOf(agent_typing);
messages.value[agent_idx] = {
...agent_typing,
is_typing: false,
message_content: resp_fn(),
commit_result,
created_at: nowTime(),
};
setAgentStatus(picked_agent.agent_id, 'idle');
token_usage.value[0].tokens_used += rand(200, 1000);
addLog('success', `${picked_agent.agent_name} completed task`);
is_loading.value = false;
await Promise.all([scrollToBottom(), stream_promise]);
}
/* ββββββββββββββββββββββββββββββββββββββββ
BACKGROUND SIMULATION
ββββββββββββββββββββββββββββββββββββββββ */
onMounted(() => {
setInterval(() => {
active_tasks.value.forEach((t) => {
t.progress_percent = Math.min(100, t.progress_percent + rand(0, 4));
if (t.progress_percent >= 100) t.progress_percent = 0;
});
}, 2000);
});
/* ββ Expose to template ββ */
return {
/* state */
github_auth, repo, sse_stream, last_commit_result,
agents, pipelines, active_pipeline, selected_agent_id,
messages, session_stats, active_tasks, token_usage, system_logs,
suggestions, input_text, is_loading, modal,
/* refs */
messageContainer, sseLogArea, textarea,
/* methods */
connectGithub, revokeGithub, analyseRepo,
sendMessage, clearChat, useSuggestion, autoResize, downloadReport,
getAgentColor, avatarClass, bubbleClass, agentBubbleStyle, tokenBarWidth,
};
},
}).mount('#app'); |