claude-native 0.2.0

Scan any project and score how Claude Native it is — optimized for AI-assisted development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# claude-native

> Universal AI agent instructions (AGENTS.md standard)

## Build & Test

- Build: `cargo build`
- Test: `cargo test`
- Run: `cargo run -- /path/to/project`

## Guidelines

- Every rule implements the `Rule` trait in `src/rules/mod.rs`
- Use `self.pass()`, `self.fail()`, `self.warn()`, `self.skip()` helpers
- Project-specific rules override `applies_to()` to filter by `ProjectType`
- Keep functions under 80 lines
- Add tests for new rules in `tests/`
- Rule IDs must match GOLDEN_RULES.md spec