this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use NLCMD_API_KEY to avoid conflict with Claude Code

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

alice 63acc2d0 82029ce8

+3 -2
+1 -1
README.md
··· 16 16 17 17 ```zsh 18 18 source /path/to/widget.zsh 19 - export ANTHROPIC_API_KEY="sk-..." 19 + export NLCMD_API_KEY="sk-..." 20 20 ``` 21 21 22 22 ## Usage
+2 -1
cli.ts
··· 2 2 import { streamText } from "ai"; 3 3 4 4 const anthropic = createAnthropic({ 5 - ...(process.env.ANTHROPIC_BASE_URL && { baseURL: process.env.ANTHROPIC_BASE_URL }), 5 + apiKey: process.env.NLCMD_API_KEY || process.env.ANTHROPIC_API_KEY, 6 + ...(process.env.NLCMD_BASE_URL && { baseURL: process.env.NLCMD_BASE_URL }), 6 7 }); 7 8 8 9 const input = await Bun.stdin.text();