clasp-ai 0.56.0 → 0.58.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
@@ -228,6 +228,18 @@ Where `{TIER}` is `OPUS`, `SONNET`, or `HAIKU`.
228
228
  | `GET /metrics/prometheus` | Prometheus metrics |
229
229
  | `GET /` | Server info |
230
230
 
231
+ ## Supported Tools
232
+
233
+ CLASP supports all Claude Code 2.1.34+ tools with full parameter validation and OpenAI-compatible schema transformation. See [docs/api-reference/claude-code-tools.md](docs/api-reference/claude-code-tools.md) for the complete tool reference including:
234
+
235
+ - **File Operations**: Read, Write, Edit, Glob, Grep
236
+ - **Command Execution**: Bash with background support
237
+ - **Web Operations**: WebSearch, WebFetch
238
+ - **Agent Orchestration**: Task, TaskOutput, TaskStop (with model/resume/max_turns parameters)
239
+ - **Interactive Features**: AskUserQuestion, ExitPlanMode
240
+ - **Specialized Tools**: NotebookEdit (Jupyter), LSP (code intelligence), Skill invocation
241
+ - **Task Management**: TaskCreate, TaskGet, TaskUpdate, TaskList (CLI-only)
242
+
231
243
  ## Example Usage
232
244
 
233
245
  ### With curl
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clasp-ai",
3
- "version": "0.56.0",
3
+ "version": "0.58.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.56.0';
15
+ const VERSION = '0.58.0';
16
16
  const REPO = 'jedarden/CLASP';
17
17
  const BINARY_NAME = 'clasp';
18
18