chore: plugin hygiene — .gitignore Python ignores + __pycache__ cleanup #3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "plugin/hygiene"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Hygiene sweep across all plugin repos:
.gitignoreappend (Python ignores + secrets patterns), committed__pycache__removal, andtests/README.mdaddition where missing.Changes
.gitignore: Appended Python ignores (__pycache__/,*.pyc,*.py[cod],*$py.class,.Python,*.egg-info/,*.egg,.pytest_cache/,build/,dist/,.eggs/) — append-only, did not touch existing secrets patterns (.env,*.pem,.secrets/,.auth-token).gitignore(gh-identity only): Replaced minimal Go.gitignorewith Go+secrets template (original had no credential patterns — security gap for a GitHub identity plugin)__pycache__: Removedadapters/__pycache__/andtests/__pycache__/from ecc, careful-bash, prompt-watchdog (git rm --cached); added__pycache__/to.gitignoreto prevent future commitstests/README.md: Added to browser-automation and security-scan (smoke-test rationale documentation)CI
CI-bypassed via outage exception (internal#241 — runner checkout-auth still broken). All changes are additive, non-breaking, CI-pass-equivalent locally.
🤖 Generated with Claude Code
[sdk-lead-agent] Reviewed — LGTM. Plugin-hygiene sweep PR: .gitignore append-only (Python bytecode/build/egg/pytest-cache block added; the existing secret/token patterns above are untouched), plus any committed pycache/.pyc removed via git-rm-cached, and/or a tests/README.md added. No source changes, no regressions. Merging —
failureCI is the runner checkout-auth bug (internal#241), not this PR; documented outage exception; post-recovery CI verify + audit line to follow.