Files
timmy-config/recipes/weekly_maintenance.json

19 lines
444 B
JSON

{
"name": "Weekly Maintenance",
"description": "Automated waste audit and code hygiene cleanup",
"steps": [
{
"name": "Muda Waste Audit",
"command": "python3 scripts/muda_audit.py"
},
{
"name": "CI Quality Gate & Auto-fix",
"command": "python3 scripts/ci_automation_gate.py . --fix"
},
{
"name": "Agent Guardrail Audit",
"command": "python3 scripts/agent_guardrails.py"
}
]
}