clasp-ai 0.31.2 → 0.32.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
@@ -4,6 +4,7 @@ A high-performance Go proxy that translates Claude/Anthropic API calls to OpenAI
4
4
 
5
5
  ## Features
6
6
 
7
+ - **Bundled Claude Code**: Automatically includes Claude Code as a dependency - single `npx clasp-ai` installs everything
7
8
  - **Multi-Provider Support**: OpenAI, Azure OpenAI, OpenRouter (200+ models), and custom endpoints (Ollama, vLLM, LM Studio)
8
9
  - **Full Protocol Translation**: Anthropic Messages API ↔ OpenAI Chat Completions API
9
10
  - **SSE Streaming**: Real-time token streaming with state machine processing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clasp-ai",
3
- "version": "0.31.2",
3
+ "version": "0.32.0",
4
4
  "description": "Claude Language Agent Super Proxy - Translate Claude/Anthropic API calls to OpenAI-compatible endpoints",
5
5
  "author": "jedarden",
6
6
  "license": "MIT",
@@ -22,7 +22,8 @@
22
22
  "api",
23
23
  "translation",
24
24
  "openrouter",
25
- "azure"
25
+ "azure",
26
+ "claude-code"
26
27
  ],
27
28
  "bin": {
28
29
  "clasp": "./bin/clasp-wrapper.js"
@@ -32,6 +33,9 @@
32
33
  "start": "node bin/clasp-wrapper.js",
33
34
  "prepack": "node scripts/prepack.js"
34
35
  },
36
+ "dependencies": {
37
+ "@anthropic-ai/claude-code": "latest"
38
+ },
35
39
  "files": [
36
40
  "bin/",
37
41
  "scripts/",
@@ -12,7 +12,7 @@ const path = require('path');
12
12
  const { execSync } = require('child_process');
13
13
  const os = require('os');
14
14
 
15
- const VERSION = '0.31.2';
15
+ const VERSION = '0.32.0';
16
16
  const REPO = 'jedarden/CLASP';
17
17
  const BINARY_NAME = 'clasp';
18
18