Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Assess repositories against evidence-based attributes for AI-assisted developmen
| Item | Value |
|------|-------|
| **Python** | >=3.12 |
| **Entry Point** | `agentready.cli.main:cli` |
| **Entry Point** | `agentready.cli.main:cli` (or `python -m agentready`) |
| **Self-Score** | 80.0/100 (Gold) |
| **Test Coverage** | 37% (target: >80%) |

Expand All @@ -24,6 +24,9 @@ pytest # Run tests
pytest --cov=src/agentready # With coverage
black . && isort . && ruff check . # Lint

# Local development (uses this checkout, not the installed package)
PYTHONPATH=src python -m agentready assess <repo>

# Benchmarks (requires: uv tool install harbor)
agentready harbor compare -t task1 -t task2
```
Expand Down
3 changes: 3 additions & 0 deletions src/agentready/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from agentready.cli.main import cli

cli()
Loading