Cursor models
Agent skills for the Cursor TypeScript SDK, the agent CLI, and .cursor/ project config (rules, skills, hooks, mcp). Skill-graph format with [[wikilinks]].
npx -y skills add HKTITAN/cursor-sdk --skill cursor-modelsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Model discovery and selection on Cursor SDK — Cursor.models.list, ModelSelection, parameters (e.g. thinking levels), per-run sticky overrides.
SKILL.md
1.3 KB, as published. Nobody here has run it
cursor-models
The SDK exposes the same model catalog as the Cursor app. Pick at create time, override per run, and tune via params.
When to use
- Listing available models for a UI / config
- Choosing between cost and capability (Composer 2 vs GPT-5.5 etc.)
- Tuning model parameters like thinking depth
- Routing different workload classes to different models
Catalog
- [[references/list]] —
Cursor.models.list()returnsSDKModel[] - [[references/model-shape]] —
id,displayName,description,parameters,variants - [[references/parameters]] —
ModelParameterDefinitionand value enums
Selection
- [[references/model-selection]] —
{ id, params? } - [[references/sticky-model]] — per-run override semantics
- [[references/routing]] — pattern for class→model maps
Cross-links
Agent.create({ model })→ [[../cursor-sdk/references/agent-create]]- Per-run override → [[../cursor-runs/references/send-options]]
- Subagent inheritance → [[../cursor-subagents/references/model-inheritance]]