| name | lint-instructions |
| description | Detect and fix violations of project instructions defined in .claude/rules/. Use when checking code compliance, reviewing changes, or when the user asks about instruction violations. |
Instruction Linter
Validates code against project-specific rules defined in .claude/rules/.
When to Use
- Before committing changes
- After implementing a new feature
- When reviewing code for compliance
- When user asks to check instruction compliance
Instructions
1. Load All Rules
Read all instruction files:
.claude/rules/code-style.md
.claude/rules/cross-framework.md
.claude/rules/packages/core.md
.claude/rules/packages/react.md
.claude/rules/packages/vue.md
.claude/rules/packages/svelte.md
.claude/rules/demo.md
2. Check Categories
For each category, verify compliance:
Code Style (code-style.md)
Cross-Framework (cross-framework.md)
Core Package (packages/core.md)
Framework Packages (packages/react.md, vue.md, svelte.md)
3. Report Format
## Instruction Compliance Report
### ✅ Passing
- [rule]: [description]
### ❌ Violations
- [rule]: [file:line] - [issue description]
- **Fix**: [suggested fix]
### ⚠️ Warnings
- [rule]: [potential issue]
4. Auto-Fix When Possible
For fixable violations:
- Show the violation
- Propose the fix
- Apply if user approves
Example Usage
User: "Check if my changes follow the project rules"
- Read recent git changes:
git diff --name-only HEAD~1
- Load relevant rule files based on changed paths
- Check each changed file against applicable rules
- Report violations with fixes
Checklist Commands
Quick checks to run:
pnpm check
pnpm typecheck
pnpm build
Common Violations
| Violation | Rule | Fix |
|---|
export const fn = () => {} | code-style | Use export function fn() {} |
data as Type | code-style | Use type guard function |
| Type in framework package | cross-framework | Move to @vizel/core |
| Missing component in one framework | cross-framework | Add equivalent component |
default export | Biome | Use named export |