Skip to main content

update-codeowners

Updates CODEOWNERS entries safely with consistent path and owner formatting. Use when the user asks to add, remove, or modify CODEOWNERS rules, ownership mappings, reviewers, or module maintainers.

跳到安装

来源信息

仓库
UbiquitousLearning/mllm
最近来源活动
2026年2月21日 15:05
检测到的 SKILL.md 语言
英语
星标
1,613
分支
216

安装方式

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

检查来源文件

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

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
update-codeowners
description
Updates CODEOWNERS entries safely with consistent path and owner formatting. Use when the user asks to add, remove, or modify CODEOWNERS rules, ownership mappings, reviewers, or module maintainers.
# Update CODEOWNERS ## Goal Maintain `CODEOWNERS` accurately while preserving the repository's existing section/comment style. ## Workflow 1. Read the current `CODEOWNERS` file before editing. 2. Identify requested changes as one of: - Add new path rule - Modify owners for existing path rule - Remove obsolete path rule - Reorganize section comments (only if requested) 3. Update rules in place instead of creating duplicates for the same path. 4. Keep existing section headers and comment style unless the user asks to refactor structure. 5. Return a concise changelog describing which paths were added, changed, or removed. ## Rule Format - Use one rule per line: `<path-pattern> <owner1> <owner2> ...` - Owners must be GitHub handles prefixed with `@`. - Keep path style consistent with the file (in this repo, path patterns typically start with `/`). - Do not leave rules with empty owner lists. ## Editing Guidelines - Prefer minimal edits near related sections. - If a path already exists, update that line instead of adding a second conflicting line. - If a new rule logically belongs to an existing section, place it in that section. - Preserve human-readable grouping and blank lines. - Keep comments intact unless they are clearly outdated and the user asked for cleanup. ## Validation Checklist - [ ] Every non-comment, non-empty line has at least one owner. - [ ] Every owner token starts with `@`. - [ ] No accidental duplicate rule for the exact same path pattern. - [ ] Existing comments/sections were preserved unless explicitly changed. ## Example Requests - "Add `/mllm/models/new_model/ @alice @bob` under models." - "Change `/core/Storage` owner to `@team-core`." - "Remove ownership rule for deprecated path `/legacy/`."
在 GitHub 查看