MCPcopy Create free account
hub / github.com/cursor/plugins / renderModelCatalog

Function renderModelCatalog

orchestrate/skills/orchestrate/scripts/models.ts:185–196  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

183}
184
185export function renderModelCatalog(): string {
186 const lines: string[] = [];
187 for (const m of MODEL_CATALOG) {
188 const defaults = m.defaultFor?.length
189 ? ` (default for ${m.defaultFor.join(", ")})`
190 : "";
191 lines.push(`- \`${m.slug}\` — ${m.summary}${defaults}`);
192 lines.push(` speed: ${m.speed}; strengths: ${m.strengths.join(", ")}`);
193 lines.push(` use: ${m.use}`);
194 }
195 return lines.join("\n");
196}

Callers 2

buildSubplannerPromptFunction · 0.90
registerInspectCommandsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected