← Back to list

write-rules
by wayne930242
A skills-driven Agentic Context Engineering workflow for Claude Code.
⭐ 7🍴 2📅 Jan 9, 2026
SKILL.md
name: write-rules description: Create Claude Code rule files for .claude/rules/. Writes conventions and shared guidelines that auto-inject into context. Use for path-specific coding conventions or shared project guidelines. NOT for constitution/laws (use in CLAUDE.md instead).
Rule Creator
Create modular rule files for conventions and shared guidelines.
Core Principles
- Rules = Conventions - Shared guidelines, lower priority than
<law> - < 50 lines - Auto-injected = token expensive
- Use
paths:- Scope rules to relevant files only - No procedures - How-to belongs in skills
- NOT for laws - Constitution uses
<law>in CLAUDE.md
Rule Structure
.claude/rules/
├── code-style.md # Style conventions (global)
├── api/
│ └── conventions.md # paths: src/api/**
└── testing/
└── guidelines.md # paths: **/*.test.ts
File Format
Global Rule (no paths:)
---
# No paths field = applies to ALL contexts
---
# Rule Title
- Constraint 1
- Constraint 2
Path-Scoped Rule
---
paths: src/api/**/*.ts
---
# API Rules
- All endpoints MUST validate input
- MUST use standard error format
Glob Patterns
| Pattern | Matches |
|---|---|
**/*.ts | All TypeScript files |
src/api/** | All under src/api/ |
*.md | Markdown in root only |
{src,lib}/**/*.ts | Multiple directories |
**/*.{ts,tsx} | Multiple extensions |
Example: Code Style Convention
# .claude/rules/code-style.md
---
# Global - no paths
---
# Code Style
- Prefer const over let
- Use descriptive variable names
- Keep functions under 50 lines
Example: Path-Scoped Convention
# .claude/rules/api/conventions.md
---
paths: src/api/**/*.ts
---
# API Conventions
- Use async/await, not callbacks
- Return consistent response shapes
- Log errors with context
Validation Checklist
Before creating a rule:
- Is this a convention/guideline, NOT a law? (laws use
<law>in CLAUDE.md) - < 50 lines?
- Does it need
paths:scoping? - Not duplicating existing rules?
- Written in imperative form?
References
- paths-patterns.md - Advanced glob patterns
- examples.md - Rule examples by domain
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon
