rowboat/apps/cli/src/x.ts
tusharmagar e914aa2832 copilot update:
- first version can perform CRUD ops on the .rowboat file
2025-11-13 13:03:54 +05:30

11 lines
277 B
TypeScript

import { startCopilot } from "./application/assistant/chat.js";
export const start = () => {
startCopilot().catch((err) => {
console.error("Failed to run copilot:", err);
process.exitCode = 1;
});
}
// Run the copilot when this file is executed directly
start();