diff --git a/AGENTS.md b/AGENTS.md index 42944a0..b0bb2e1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,4 +1,4 @@ -# aicl +# lmc Bun CLI tool for streaming LLM chat with inline markdown rendering. diff --git a/README.md b/README.md index 646bc19..7c56c4c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# aicl +# lmc To install dependencies: diff --git a/index.ts b/index.ts index dd8e10d..e30be42 100644 --- a/index.ts +++ b/index.ts @@ -40,7 +40,7 @@ async function main() { if (!config.model) { console.error( - "Please run 'aicl --model --save' to set a default model.", + "Please run 'lmc --model --save' to set a default model.", ); process.exit(1); } diff --git a/package.json b/package.json index 566d8b6..85b43af 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "aicl", + "name": "lmc", "module": "index.ts", "type": "module", "private": true, @@ -14,7 +14,7 @@ "build:js": "bun run check && bun run --parallel build:bundle build:tts && bun run --parallel shebang shebang:tts", "build:bundle": "bun build --target=bun --production --sourcemap --outdir=out index.ts", "build:tts": "bun build --target=bun --production --sourcemap --outdir=out tts.ts", - "build:bin": "bun build --compile --outfile=out/aicl index.ts", + "build:bin": "bun build --compile --outfile=out/lmc index.ts", "shebang": "sed -i '1i#!\\/usr\\/bin\\/env bun' out/index.js", "shebang:tts": "sed -i '1i#!\\/usr\\/bin\\/env bun' out/tts.js", "tc": "tsc --noEmit --incremental" diff --git a/src/config/index.ts b/src/config/index.ts index cb40117..8281bf7 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -2,7 +2,7 @@ import os from "node:os"; import chalk from "chalk"; const home = os.homedir(); -const configFile = Bun.file(`${home}/.aicl_config.json`); +const configFile = Bun.file(`${home}/.lmc_config.json`); export interface AppConfig { model?: string; diff --git a/src/conversation/index.ts b/src/conversation/index.ts index ee2f670..557e6b5 100644 --- a/src/conversation/index.ts +++ b/src/conversation/index.ts @@ -2,7 +2,7 @@ import os from "node:os"; import type { ModelMessage } from "ai"; const home = os.homedir(); -export const convoFile = Bun.file(`${home}/.aicl_convo.json`); +export const convoFile = Bun.file(`${home}/.lmc_convo.json`); export interface Conversation { model: string;