wraptc 0.0.2 → 0.1.0

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.
package/README.md CHANGED
@@ -15,7 +15,31 @@ A unified CLI wrapper for multiple coding AI agents (Gemini CLI, OpenCode, Qwen
15
15
 
16
16
  ## Installation
17
17
 
18
- **Requires: [Bun](https://bun.sh/) runtime**
18
+ ### Native Binary (Recommended - No Bun Required)
19
+
20
+ **macOS & Linux:**
21
+
22
+ ```bash
23
+ # Install via installation script
24
+ curl -fsSL https://get.wraptc.dev | bash
25
+
26
+ # Or download manually from GitHub Releases
27
+ wget https://github.com/briansunter/wraptc/releases/latest/download/wraptc-$(uname -s)-$(uname -m)
28
+ chmod +x wraptc-*
29
+ sudo mv wraptc-* /usr/local/bin/wraptc
30
+ ```
31
+
32
+ **Homebrew:**
33
+
34
+ ```bash
35
+ brew install briansunter/wraptc/wraptc
36
+ ```
37
+
38
+ **Windows:**
39
+
40
+ Download the latest `.exe` from [GitHub Releases](https://github.com/briansunter/wraptc/releases/latest)
41
+
42
+ ### via npm (Requires Bun Runtime)
19
43
 
20
44
  ```bash
21
45
  # Install via npm (requires Bun to be installed)
@@ -23,8 +47,11 @@ npm install -g wraptc
23
47
 
24
48
  # Or install via bun
25
49
  bun install -g wraptc
50
+ ```
51
+
52
+ ### From Source
26
53
 
27
- # Or clone and build from source
54
+ ```bash
28
55
  git clone https://github.com/briansunter/wraptc.git
29
56
  cd wraptc
30
57
  bun install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wraptc",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "description": "Unified CLI wrapper for multiple coding AI agents with intelligent routing",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -19,6 +19,7 @@
19
19
  "build": "bun run build:cli && bun run build:mcp",
20
20
  "build:cli": "bun build src/cli/index.ts --outdir dist --target node --bundle",
21
21
  "build:mcp": "bun build src/mcp/server.ts --outdir dist --target node --bundle",
22
+ "build:binaries": "bun scripts/build-binaries.ts",
22
23
  "dev": "bun --watch src/cli/index.ts",
23
24
  "test": "bun test",
24
25
  "test:unit": "bun test src/core/__tests__/unit/",