18 lines
743 B
JavaScript
18 lines
743 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const registry_1 = require("./registry");
|
|
(0, registry_1.registerAgent)({
|
|
name: 'Orchestrator',
|
|
description: 'Master coordinator — breaks down goals and delegates to specialist agents',
|
|
model: 'B',
|
|
promptId: 'orchestrator',
|
|
tools: (0, registry_1.pick)([
|
|
'gitea_create_issue', 'gitea_list_issues', 'gitea_close_issue',
|
|
'spawn_agent', 'get_job_status',
|
|
'coolify_list_projects', 'coolify_list_applications', 'coolify_deploy', 'coolify_get_logs',
|
|
'list_repos', 'list_all_issues', 'list_all_apps', 'get_app_status',
|
|
'read_repo_file', 'deploy_app', 'save_memory',
|
|
'list_skills', 'get_skill'
|
|
])
|
|
});
|