From ai-automation-skills
Audit a project for config drift before a backtest or deploy - compare the documented config snapshot against .env and README defaults, flag mismatches, and check the snapshot last-verified date. Use for config audit, params drift, pre-deploy checklist, or production config check.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ai-automation-skills:config-audit-checklistThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill before validating or deploying a project whose behavior depends on documented parameters. It forces the user to reconcile the live environment, the snapshot document, and README defaults before trusting results.
Use this skill before validating or deploying a project whose behavior depends on documented parameters. It forces the user to reconcile the live environment, the snapshot document, and README defaults before trusting results.
.env, README defaults, or a config snapshot document.User input:
Audit this strategy config before I run the validation job.
Output:
Auditing strategy config...
ENTRY_COOLDOWN_HOURS: README=12 .env=6 CONFIG.md=8 warn: 3-way drift
STOP_LOSS_PCT: README=-10 .env=-10 CONFIG.md=-10 ok
CONFIG.md "Last verified": 2026-03-01 (89 days ago) warn: stale (>30d)
Verdict: DO NOT backtest against README defaults. Reconcile the live config first.
PRODUCTION_CONFIG.md or CONFIG.md..env, and README defaults.Reference: assets/checklist.md.
Distilled from production use across the author's automation projects. v0.1.0. See also: [[walk-forward-runner]].
npx claudepluginhub baronguyen001/ai-automation-skills --plugin ai-automation-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.