基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kodustech/kodus-ai --skill kodus-kody-rules命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Validate PR code changes against task requirements to identify missing, forgotten, or overlooked business logic implementations
Use when about to edit files in an area you have not touched yet, or when the user asks why code is the way it is. Reads the decisions already recorded for those paths via `kodus trace <paths>`, so deliberate tradeoffs are not undone and settled questions are not re-litigated.
End-to-end front→back performance debugging for the Kodus web app. Use when a screen is slow, blank, looping, or you need to trace a UI perf problem down to the API query. Drives Playwright/Chrome MCP to open + measure the screen, then reads the API use-case/repository and the DB (Postgres/Mongo indexes, explain) to find and fix the root cause, verifying live.
| name | kodus-kody-rules |
| description | Use when the user wants to create, update or view Kody Rules via `kodus rules` command. |
Kody Rules are a set of guidelines that Kody follows when generating code. They help ensure that the generated code is consistent, high-quality, and aligned with the user's preferences and project requirements.
Manage Kody Rules through Kodus CLI only. Do not suggest creating rule files manually.
ALWAYS Use kodus rules subcommands for all create, update, and view operations. All these rules are ALWAYS managed by the kodus rules command from the CLI. Do NOT suggest creating files or storing rules in any other way. When the user wants to create, update or view Kody Rules, utilize the kodus rules command with the appropriate subcommands and options as outlined in the instructions files.
When centralized config is enabled for the selected team/repository scope, kodus rules create and kodus rules update may return centralized PR metadata instead of directly created/updated rule records.
prUrl (and prNumber when available).create: add a new rule.update: modify an existing rule.view: list all rules or fetch a specific rule.global when the user does not provide a repository scope. Always confirm if the user intends to use global scope when no repository is specified.kodus config remote list --json
Then select and pass --repo-id <id>.
title: short and specific.rule: clear and actionable guidance.severity: low | medium | high | critical.scope: file | pull request.path: optional glob, default effectively **/*.Read individual instructions files for detailed explanations and examples:
You MUST always load at least one of these instructions files to handle the specific user request related to Kody Rules. Each file contains detailed steps and examples for the corresponding action (create, update, view). Always ensure that you are following the instructions in these files when managing Kody Rules through the kodus rules command.
Should the user request an action that is not covered by these instructions, you should first clarify the user's intent and then determine if it falls under create, update, or view operations. If it does, proceed to load the corresponding instructions file to ensure that you are following the correct workflow for managing Kody Rules through the kodus rules command.
Should the user request a new action related to Kody Rules that differs from the initial action, you should load the appropriate instructions file for that new action to ensure that you are following the correct workflow for managing Kody Rules through the kodus rules command.
A Kody Rule typically consists of the following components:
global for shared rules that apply across all repositories.src/**/*.js would apply the rule to all JavaScript files in the src directory and its subdirectories.**/*.Title: Use Async/Await for Asynchronous Operations
Rule: Ensure that all asynchronous operations in the codebase use async/await syntax for better readability and error handling. Avoid using raw Promises or callback functions for asynchronous code.
Severity: High
Scope: File
Path: **/*.ts
Repository ID: global