@@ -25,10 +25,12 @@ Mergify before any merge is allowed.
2525| ` [refactor] ` | Code restructuring with no behavior change |
2626| ` [perf] ` | Performance improvement |
2727| ` [ci] ` | CI/CD or build tooling changes |
28+ | ` [infra] ` | Repo infrastructure: agent tooling, debug hooks, conversion scripts, dev infra |
2829| ` [doc] ` or ` [docs] ` | Documentation only |
2930| ` [misc] ` or ` [chore] ` | Housekeeping, dependency bumps, minor cleanup |
3031| ` [kernel] ` | CUDA kernel changes in ` fastvideo-kernel/ ` |
3132| ` [new-model] ` | Adding a new model or pipeline |
33+ | ` [skill] ` or ` [skills] ` | Agent skills under ` .agents/skills/ ` or ` .claude/skills/ ` |
3234
3335** Examples:**
3436
@@ -38,6 +40,8 @@ Mergify before any merge is allowed.
3840[refactor] Restructure distributed attention dispatch
3941[docs] Add LoRA finetuning guide
4042[new-model] Port HunyuanVideo 1.5 to FastVideo
43+ [infra] Add activation trace hooks for pipeline debugging
44+ [skill] Add add-model agent skill
4145```
4246
4347If your title is missing the tag, Mergify will post a comment listing the valid formats.
@@ -51,8 +55,8 @@ Labels are applied automatically based on your PR title and the files you change
5155need to set them manually.
5256
5357** Type label** — set from the ` [tag] ` in your title:
54- ` type: feat ` , ` type: bugfix ` , ` type: refactor ` , ` type: perf ` , ` type: ci ` , ` type: docs ` ,
55- ` type: misc ` , ` type: new-model `
58+ ` type: feat ` , ` type: bugfix ` , ` type: refactor ` , ` type: perf ` , ` type: ci ` , ` type: infra ` ,
59+ ` type: docs ` , ` type: misc` , ` type: new-model ` , ` type: skill `
5660
5761** Scope labels** — set from which files you modified (multiple labels can apply):
5862` scope: training ` , ` scope: inference ` , ` scope: attention ` , ` scope: kernel ` , ` scope: data ` ,
@@ -187,8 +191,8 @@ Common quick fixes:
187191Update your title to start with a valid type tag. The Mergify merge protection check
188192re-evaluates automatically after you save the title.
189193
190- Valid tags: ` feat ` , ` feature ` , ` bugfix ` , ` fix ` , ` refactor ` , ` perf ` , ` ci ` , ` doc ` , ` docs ` ,
191- ` misc ` , ` chore ` , ` kernel ` , ` new-model `
194+ Valid tags: ` feat ` , ` feature ` , ` bugfix ` , ` fix ` , ` refactor ` , ` perf ` , ` ci ` , ` infra ` , ` doc ` ,
195+ ` docs ` , ` misc ` , ` chore ` , ` kernel ` , ` new-model ` , ` skill ` , ` skills `
192196
193197### My PR has merge conflicts (` needs-rebase ` label)
194198
0 commit comments