Installation
Prerequisites
- Node.js 20+ — Download
- pnpm 9+ — Install guide
Check your versions:
bash
node --version # Should be >= 20
pnpm --version # Should be >= 9Install from Source
bash
git clone https://github.com/walidabualafia/caretforge.git
cd caretforge
pnpm install
pnpm buildLink the CLI Globally
After building, link the binary so you can use caretforge from anywhere:
bash
pnpm link --globalVerify it works:
bash
caretforge --version
# 0.1.0Running without Installing Globally
If you prefer not to link globally, you can run directly:
bash
# From the project directory
node dist/index.js --help
# Or using npx/tsx for development
npx tsx src/index.ts --helpWhat's Next?
Head to the Quick Start to configure your first provider and start chatting.
