First version copilot:

- basic llm call that can perform CRUD actions over dummy workflow json files
This commit is contained in:
tusharmagar 2025-10-30 16:09:19 +08:00 committed by Ramnique Singh
parent 055dda35b9
commit 4310b1d45d
11 changed files with 327 additions and 4 deletions

9
apps/cli/src/x.ts Normal file
View file

@ -0,0 +1,9 @@
import { ensureBaseDirs } from "./application/assistant/services/storage.js";
import { startCopilot } from "./application/assistant/chat.js";
ensureBaseDirs();
startCopilot().catch((err) => {
console.error("Failed to run copilot:", err);
process.exitCode = 1;
});