Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .claude/skills/check-issue/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,10 @@ Applies when the title contains `[Rule]`.

4. Decision (principle: new rule must reduce the reduction overhead):
- **No path exists** → **Pass** (novel reduction)
- **Path exists** → compare overhead:
- Parse the proposed overhead from the issue's "Size Overhead" table
- Parse the overhead of the path.
- If proposed overhead is **strictly lower** on at least one dimension (and not higher on any) → **Pass** ("improves existing reduction")
- If overhead is **equal or higher** on all dimensions → **Fail**
- If overhead comparison is ambiguous (different dimensions, incomparable expressions) → **Warn** with explanation
- **Path exists** → run `/check-rule-redundancy <source> <target>` to perform a full overhead dominance analysis against all composite paths. Use its verdict:
- **Not Redundant** → **Pass** ("improves existing reduction — not dominated by any composite path")
- **Redundant** (dominated by a composite path) → **Fail** — include the dominating path from the redundancy report
- **Inconclusive** → **Warn** with the details from the redundancy report

5. Check **Motivation** field: if empty, placeholder, or just "enables X" without explaining *why this path matters* → **Warn**

Expand Down
Loading