Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Invoke an already configured model endpoint from a supported Wisp execution context and capture the bounded inference as a Run. Use only when the endpoint URL and authentication are already available inside that context; this skill does not register or manage services.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | -29% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 539% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 1194% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 60% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 24% | 0% |
Wisp can record a bounded client invocation as a Run, but it does not register or manage the endpoint. Require all of the following:
local, wsl:<distro>, or ssh:<alias> context;or the endpoint client's own external configuration;
Do not ask the user to paste secrets into the command, project files, or chat. Wisp exposes no credential accessor to the Agent and does not inject keyring values into run_in_context commands.
runs/call_endpoint.py. Read theURL and credential variable names at runtime; never embed secret values.
input_paths. Keep largeinputs at an existing absolute remote path.
run_in_context and register the response withoutput_specs:
json{ "context_id": "ssh:gpu-box", "title": "Existing endpoint inference", "command": "source ~/miniforge3/etc/profile.d/conda.sh && conda activate endpoint-client && python call_endpoint.py --input request.json --output /home/me/wisp-results/endpoint/response.json", "timeout_secs": 300, "input_paths": ["runs/call_endpoint.py", "data/request.json"], "output_specs": [ { "glob": "ssh://gpu-box/home/me/wisp-results/endpoint/response.json", "kind": "json", "residency": "remote" } ] }
monitor_run once when waitingis useful, get_run once for a snapshot, or cancel_run to stop.
Local and WSL Runs are capped at 300 seconds and do not accept input_paths. Keep their client and outputs in host-visible project paths. If endpoint setup, tunnelling, health management, or deployment is required, stop and load managed-model-endpoints for the explicit current boundary.
Other measured skills in the registry, with their headline benchmark lift.