From aed9fa62d01feaf52103576210e2e9383ede9415 Mon Sep 17 00:00:00 2001 From: Alexis Date: Mon, 23 Feb 2026 10:42:02 +0100 Subject: [PATCH] Simplify CLAUDE.md project structure to directories only Ran /claude-md-management:revise-claude-md to audit CLAUDE.md against the actual codebase. The file-level tree was stale (missing lock.py, ui.py, version_check.py and several test files). Replace with a directory-only layout that won't drift when files are added. Also document the --cov-fail-under=29 threshold from pyproject.toml. Co-Authored-By: Claude Opus 4.6 (1M context) --- CLAUDE.md | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 42a478a..7e64e82 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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 @@ -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'`