xuzhougeng/wisp-science/skills/using-model-endpoint/SKILL.md
using-model-endpoint
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.
- Source repository stars
- 560
- Declared platforms
- 0
- Static risk flags
- 1
- Last source update
- 2026-07-28
- Source checked
- 2026-07-28
Decision brief
What it does—and where it fits
Wisp can record a bounded client invocation as a Run, but it does not register or manage the endpoint. Require all of the following:
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/xuzhougeng/wisp-science --skill "skills/using-model-endpoint"Inspect the Agent Skill "using-model-endpoint" from https://github.com/xuzhougeng/wisp-science/blob/95d2c13d1665d46a388b5bdc998dcce0d5ec2eee/skills/using-model-endpoint/SKILL.md at commit 95d2c13d1665d46a388b5bdc998dcce0d5ec2eee. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Invocation workflow
1. Write a small deterministic client such as runs/callendpoint.py. Read the URL and credential variable names at runtime; never embed secret values. 2. Validate its request against the endpoint's documented schema. 3. For SSH, stage the client and small inputs with inputpaths.…
Write a small deterministic client such as runs/callendpoint.py. Read theValidate its request against the endpoint's documented schema.For SSH, stage the client and small inputs with inputpaths. Keep large
Permission review
Static risk signals and limitations
Network access
The documentation includes network, browsing, or remote request actions.
Validate its request against the endpoint's documented schema.Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 77/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 560 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | catalog record | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- xuzhougeng/wisp-science
- Skill path
- skills/using-model-endpoint/SKILL.md
- Commit
- 95d2c13d1665d46a388b5bdc998dcce0d5ec2eee
- License
- AGPL-3.0
- Collected
- 2026-07-28
- Default branch
- main
View the original SKILL.md
Use an existing model endpoint
Wisp can record a bounded client invocation as a Run, but it does not register or manage the endpoint. Require all of the following:
- a selected
local,wsl:<distro>, orssh:<alias>context; - a concrete endpoint URL reachable from that context;
- authentication already configured by the user in that execution environment or the endpoint client's own external configuration;
- a documented request and response schema;
- a finite request timeout and a concrete output path.
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.
Invocation workflow
- Write a small deterministic client such as
runs/call_endpoint.py. Read the URL and credential variable names at runtime; never embed secret values. - Validate its request against the endpoint's documented schema.
- For SSH, stage the client and small inputs with
input_paths. Keep large inputs at an existing absolute remote path. - Submit one invocation with
run_in_contextand register the response withoutput_specs:
{
"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"
}
]
}
- Replace all example context and paths. Call
monitor_runonce when waiting is useful,get_runonce for a snapshot, orcancel_runto 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.
Alternatives
Compare before choosing
event4u-app/agent-config
design-review
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
K-Dense-AI/scientific-agent-skills
dask
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
K-Dense-AI/scientific-agent-skills
medchem
Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.
K-Dense-AI/scientific-agent-skills
neurokit2
Use NeuroKit2 to build or audit reproducible research workflows for physiological time-series preprocessing, event/interval analysis, multimodal alignment, variability, and complexity. Trigger when code imports neurokit2 or needs its current APIs, schemas, and method-aware validation—not for diagnosis or device validation.