thebird 1.2.17 → 1.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CLAUDE.md +8 -0
  2. package/package.json +1 -1
package/CLAUDE.md CHANGED
@@ -119,3 +119,11 @@ Run examples against real Gemini API to validate message translation.
119
119
  - `index.js`: Main entry point, streaming and generation wrappers
120
120
  - `index.d.ts`: TypeScript type definitions
121
121
  - `examples/`: Working examples using Anthropic SDK format
122
+ - `wasi/cli.ts`: Deno streaming CLI — `deno run --allow-net --allow-env wasi/cli.ts [--model M] [--system S] <prompt>`
123
+ - `deno.json`: tasks `cli` (run) and `cli:compile` (→ `dist/thebird` binary)
124
+
125
+ ## Environment Notes
126
+
127
+ - Repo remote: `https://github.com/AnEntrypoint/thebird.git` (capital A)
128
+ - Deno 2.1.3 available; `exec:bash` uses PowerShell — use `exec:cmd` with `set KEY=val && cmd` syntax for env vars
129
+ - Windows `KEY=val cmd` inline env syntax fails in PowerShell
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thebird",
3
- "version": "1.2.17",
3
+ "version": "1.2.18",
4
4
  "description": "Anthropic SDK to Gemini streaming bridge — drop-in proxy that translates Anthropic message format and tool calls to Google Gemini",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",