clasp-ai 0.24.7 → 0.25.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
@@ -42,15 +42,25 @@ make build
42
42
  ### Via Docker
43
43
 
44
44
  ```bash
45
- # Run with Docker
45
+ # Run with Docker (from GitHub Container Registry)
46
46
  docker run -d -p 8080:8080 \
47
47
  -e OPENAI_API_KEY=sk-... \
48
- ghcr.io/jedarden/clasp-ai:latest
48
+ ghcr.io/jedarden/clasp:latest
49
+
50
+ # With specific version
51
+ docker run -d -p 8080:8080 \
52
+ -e OPENAI_API_KEY=sk-... \
53
+ ghcr.io/jedarden/clasp:0.24.8
49
54
 
50
55
  # Or with docker-compose
51
56
  docker-compose up -d
52
57
  ```
53
58
 
59
+ **Available Docker tags:**
60
+ - `latest` - Latest stable release
61
+ - `0.24` - Latest 0.24.x release
62
+ - `0.24.8` - Specific version
63
+
54
64
  ## Quick Start
55
65
 
56
66
  ### Using with OpenAI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clasp-ai",
3
- "version": "0.24.7",
3
+ "version": "0.25.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",
@@ -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.24.7';
15
+ const VERSION = '0.25.0';
16
16
  const REPO = 'jedarden/CLASP';
17
17
  const BINARY_NAME = 'clasp';
18
18