Add a command-line cline powered by deno

This commit is contained in:
Matt Rubens
2024-11-20 23:21:38 -05:00
parent e55696e247
commit 1c471bd3cb
12 changed files with 1103 additions and 0 deletions

21
cli/deps.ts Normal file
View File

@@ -0,0 +1,21 @@
// Re-export standard library dependencies
export { parse } from "https://deno.land/std@0.220.1/flags/mod.ts";
export {
blue,
red,
gray,
yellow,
bold,
} from "https://deno.land/std@0.220.1/fmt/colors.ts";
export {
join,
dirname,
} from "https://deno.land/std@0.220.1/path/mod.ts";
// Export types
export type {
ApiHandler,
AgentConfig,
OperationMode,
ToolResponse,
} from "./types.d.ts";