clasp-ai 0.55.0 → 0.57.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 +12 -0
- package/package.json +1 -1
- package/scripts/install.js +1 -1
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
package/scripts/install.js
CHANGED