用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dust-tt/dust --skill dust-swagger命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Step-by-step guide for creating Temporal workflows in Dust. Use when adding background jobs, async processing, durable workflows, or task queues.
Review a pull request, branch, commit, diff, or pending changes against Dust's strictest review bar. Use when the user asks to "dust-flavify", "flavify", run a Flavify review, or audit a change against Dust's review standards. Produce a read-only, evidence-backed review that prioritizes existing-pattern reuse, ownership boundaries, database access paths, simplicity, current Dust coding rules, and relevant platform risks. Never post review output or mutate anything on GitHub.
Step-by-step guide for adding support for a new LLM in Dust. Use when adding a new model, or updating a previous one.
基于 SOC 职业分类
正在显示 SKILL.md
| name | dust-swagger |
| description | MANDATORY guideline - Always keep Swagger documentation in sync when modifying API endpoints or schemas. |
MANDATORY: Any change to an API endpoint schema must be reflected in the Swagger documentation. Do not consider an API change complete until Swagger is updated.
Automatically applies whenever you are:
front-api/routes/**When modifying API schemas, check and update the following:
front-api/routes/swagger_private_schemas.ts — shared schemas for the private APIfront-api/routes/v1/w/[wId]/swagger_schemas.ts — shared schemas for the public API@swagger annotation in the endpoint file itself@swagger annotation (with proper documentation) or @ignoreswagger (for internal/undocumented endpoints). This is enforced by the lint:swagger-annotations check.@swaggerschema point to a corresponding swagger schema. When modifying such a type, always update the referenced schema.Example:
/**
* @swaggerschema PrivateUser (swagger_private_schemas.ts)
*/
export type UserTypeWithWorkspaces = UserType & {
workspaces: WorkspaceType[];
};
@swagger annotations and shared schema fileslint:swagger-annotations passesYou don't need to manually invoke this skill - these guidelines should be followed automatically for any API-related work.