From f653c58ebdce09bbb302ebbacfd5af5311c885d8 Mon Sep 17 00:00:00 2001 From: "Brent E. Edwards" Date: Thu, 2 Apr 2026 02:43:54 +0000 Subject: [PATCH] fix(cleanup): remove ghost acp/ package and orphaned .pyc files The ACP module was properly renamed to A2A in commit ec0b7631 (closing #688), but the deprecated src/cleveragents/acp/ path was not explicitly excluded from version control. While __pycache__/ and *.py[cod] are already gitignored globally, add an explicit .gitignore entry for the deprecated acp/ package path to prevent accidental re-introduction and document the deprecation per ADR-047. Verification performed: - Confirmed src/cleveragents/acp/ does not exist in git (only __pycache__ artifacts remain on developer machines as untracked build artifacts) - Confirmed zero tracked .pyc files across the entire repository - Confirmed zero imports referencing cleveragents.acp in source, test, and configuration files - Confirmed no orphaned .pyc files exist without corresponding .py sources - All nox sessions pass (coverage: 98.7%) ISSUES CLOSED: #947 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 28820f61..68b627e1 100644 --- a/.gitignore +++ b/.gitignore @@ -166,6 +166,9 @@ config.local.toml .pabotsuitenames PIPE +# Deprecated packages — removed by ADR-047 (ACP → A2A rename) +src/cleveragents/acp/ + # Git worktrees for parallel task branches worktrees/ *.bak