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
21 changes: 5 additions & 16 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,9 @@ uv run dropkit --help # CLI help

```
dropkit/
├── pyproject.toml # Dependencies and metadata
├── CLAUDE.md # This file
├── README.md # User documentation
├── dropkit/
│ ├── main.py # Typer CLI entry point
│ ├── config.py # Config with SSH key validation
│ ├── api.py # DigitalOcean REST API (see docstring for endpoints)
│ ├── cloudinit.py # Cloud-init template rendering
│ ├── ssh_config.py # SSH config manipulation
│ └── templates/
│ └── default-cloud-init.yaml
└── tests/
├── test_api.py
├── test_config.py
├── test_main_helpers.py
└── test_ssh_config.py
├── dropkit/ # CLI source (Typer entry point: main.py)
│ └── templates/ # Jinja2 cloud-init templates
└── tests/ # pytest tests
```

## Technology Stack
Expand Down Expand Up @@ -151,6 +138,8 @@ uv run pytest -k "validate_ssh" # Pattern match
uv run pytest -v # Verbose
```

**Coverage**: Minimum 29% enforced via `--cov-fail-under=29` in pyproject.toml.

## Pydantic Models

- **`DropkitConfig`** — Root config with `extra='forbid'`
Expand Down