added prebuilt agents

This commit is contained in:
Arjun 2026-01-13 15:42:23 +05:30 committed by Ramnique Singh
parent 80c3bcdb77
commit 1ae6511184
9 changed files with 821 additions and 6 deletions

View file

@ -8,6 +8,7 @@ import { init as initCalendarSync } from "@x/core/dist/knowledge/sync_calendar.j
import { init as initFirefliesSync } from "@x/core/dist/knowledge/sync_fireflies.js";
import { init as initGranolaSync } from "@x/core/dist/knowledge/granola/sync.js";
import { init as initGraphBuilder } from "@x/core/dist/knowledge/build_graph.js";
import { init as initPreBuiltRunner } from "@x/core/dist/pre_built/runner.js";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
@ -62,6 +63,9 @@ app.whenReady().then(() => {
// start knowledge graph builder
initGraphBuilder();
// start pre-built agent runner
initPreBuiltRunner();
app.on('activate', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow();