ワンクリックで
add-llm-model
Use when adding a new LLM/model to stagewise model catalogs, provider routing, validation, docs, or showcase UI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when adding a new LLM/model to stagewise model catalogs, provider routing, validation, docs, or showcase UI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Complete guide for the Figma plugin — REST API access, real-time selection monitoring via CDP, and the figma-app interactive UI. Read this IMMEDIATELY when the user asks to work with Figma.
Best practices for using the stagewise built-in JavaScript sandbox. Explains how to access APIs for browser debugging/interaction, use external dependencies, file system access, running mini-apps, etc.
Guide for building custom interactive web apps ("mini apps") displayed in browser tabs — scaffolding, iframe constraints, bidirectional messaging with the sandbox, and iteration workflows.
Create an interactive design-preview in a browser tab
How stagewise's agent history compression pipeline works — boundary selection, recency bias, chained compressions, and the SQLite-backed test harness for replaying real compressions in LLM playgrounds. Use when debugging, tuning, or extending history compression, when investigating context-window overflow, or when the user wants to probe compression quality against real chat histories.
Implement the most recent plan
SOC 職業分類に基づく
| name | add-llm-model |
| description | Use when adding a new LLM/model to stagewise model catalogs, provider routing, validation, docs, or showcase UI. |
Use this workflow when adding or updating model support in stagewise.
Inspect existing provider entries before editing.
apps/browser/src/shared/available-models.ts around the provider.Wire the model through all relevant product surfaces.
apps/browser/src/shared/available-models.ts.apps/browser/src/backend/agents/model-provider.ts.apps/browser/src/backend/utils/validate-api-keys.ts.apps/browser/src/shared/coding-plans.ts.apps/website/src/app/(home)/_components/model-provider-showcase.tsx.Keep plan docs aligned with plan config.
featuredModelIds lists multiple models, README subscription tables must list the same featured lineup in readable display names.Preserve showcase truthfulness.
Handle provider-native IDs everywhere requests can route.
customEndpoint.modelIdMapping must always override default mapping.Validate API keys with broadly accessible probes.
{ success: false; error: string } callers.Always verify subscription-plan base URLs.
https://api.z.ai/api/paas/v4 for BYOK but https://api.z.ai/api/coding/paas/v4 for coding-plan subscriptions. Xiaomi MiMo uses https://api.xiaomimimo.com/v1 for BYOK but https://token-plan-cn.xiaomimimo.com/v1 for token-plan subscriptions.baseUrl / validationBaseUrl.tp- for MiMo token plan vs sk- for BYOK).baseUrl, validationBaseUrl, validationModelId, apiKeyPattern, and endpointHelpText on the coding-plan entry accordingly.llms.txt, fetch it — it links to raw markdown doc pages that contain the authoritative endpoint and auth details.apiKeyUrl and helpText to point to the subscription management page (not the BYOK API keys page) when the two are separate.After changes:
featuredModelIds, and showcase entries are intentionally aligned.