Skip to main content

kodus-business-rules-validation

Use when the user wants Kodus to validate local diff changes against task requirements, acceptance criteria, or business rules via `kodus pr business-validation`, especially for implementation-vs-task or merge readiness checks.

跳到安装

来源信息

仓库
kodustech/kodus-ai
最近来源活动
2026年4月27日 12:44
检测到的 SKILL.md 语言
英语
星标
1,389
分支
152

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
kodus-business-rules-validation
description
Use when the user wants Kodus to validate local diff changes against task requirements, acceptance criteria, or business rules via `kodus pr business-validation`, especially for implementation-vs-task or merge readiness checks.
license
MIT
compatibility
Requires Kodus CLI auth plus Kodus task-management integration (Jira/Linear/Notion/ClickUp) for useful task context retrieval.
metadata
{"author":"Kodus","version":"1.0"}
# Kodus Business Rules Validation ## Goal Run Kodus business-rules validation from the current repository diff only. ## Required Inputs - One local diff scope: - default working tree diff - or `--staged` - or `--branch <name>` - or `--commit <sha>` - or `[files...]` - Optional task reference: - `--task-url <url>` or `--task-id <id>` - Do not pass both. ## When to Use - The user asks for business-validation, business validation, business rules validation, or acceptance-criteria validation - The user wants to check local implementation vs task requirements - The user mentions local business validation or `kodus pr business-validation` Do not use this skill as a substitute for `kodus review`. Local review and business-rules validation are different flows. ## Workflow 1. Choose the local scope. - Default working tree diff when no scope flag is provided. - Use only one of `--staged`, `--branch`, `--commit`, or `[files...]`. 2. Build and run the command. Examples: ```bash kodus pr business-validation kodus pr business-validation --staged --task-id KC-1441 kodus pr business-validation --branch main --task-id KC-1441 kodus pr business-validation --commit HEAD~1 --task-id KC-1441 kodus pr business-validation src/service.ts src/use-case.ts --task-id KC-1441 ``` 3. Interpret the result. - `Mode: local diff` means validation over the provided local diff scope. - If output says missing MCP/task context, report that directly and request integration/context setup. ## Notes - `kodus review` does not trigger this flow. - Prefer `--task-id` or `--task-url` when the task is not obvious from local context. - `KC-1441`-style keys are valid.
在 GitHub 查看