Autonomous TDD Debugger & Self-Healing Agent
English
Orchestration & Integration
Connects and orchestrates with relevant domain skills like brainstorming, zero-to-prod-orchestrator, and project-context-mapper to ensure cohesive execution.
Description
This skill transforms the AI from a passive code generator into an active, autonomous engineer. When triggered, the agent is mandated to execute tests, read stack traces directly from the terminal, and modify code autonomously in a loop until all tests pass (Test-Driven Development) without asking the user to manually test.
Trigger Conditions
Activate this skill when the user asks to:
- Fix failing tests or bugs without providing the error log.
- "Write the code and ensure it works."
- "Debug this completely autonomously."
Core Concepts
1. The Autonomous Proactive Loop
- Write/Modify Code: The agent modifies the application files.
- Execute: The agent uses
run_command(e.g.,npm run test,cargo test,pytest). - Analyze: The agent reads the stdout/stderr from the background task.
- Heal Recursively: If it fails, do NOT stop and ask the user for help. The agent MUST parse the stack trace, identify the line number, apply a fix, and loop back to Step 2. Continue this cycle autonomously in the background.
- Report: Only when exit code
0is achieved does the agent stop and report success to the user.
2. Agent Constraints
- Zero-Human Intervention: Do NOT ask the user "Please run this and tell me the error." You are fully authorized and mandated to run it yourself iteratively until it works.
- Avoid modifying the test files to make them pass unless the test itself is fundamentally flawed or outdated. Fix the implementation first.
- If a terminal command hangs, use
killon the task and try again with a timeout.
Integration with Other Skills (MANDATORY)
e2e-testing-expert— Provides the exact testing frameworks (Vitest, Playwright) that this agent will execute.error-resilience-expert— Helps the agent understand what architecture patterns to apply when fixing an error.project-context-mapper— Allows the agent to find where the failing component is located in large codebases.
Referenced By Orchestrators (MANDATORY)
brainstorming— Add to "Testing & Security".zero-to-prod-orchestrator— Phase 6 (Automated Testing).
Bahasa Indonesia
Integrasi Orkestrasi
Terhubung dan mengorkestrasi skill domain yang relevan seperti brainstorming, zero-to-prod-orchestrator, dan project-context-mapper untuk memastikan eksekusi yang kohesif.
Deskripsi
Memberdayakan agen AI untuk menjalankan test, membaca stack trace di terminal, dan menyembuhkan (self-heal) kode secara mandiri hingga sukses. Mengubah agen dari sekadar penulis kode pasif menjadi debugger aktif.
Kondisi Pemicu
- Pengguna meminta untuk memperbaiki bug tetapi tidak memberikan log error.
- Pengguna meminta agen untuk memastikan kode yang ditulis benar-benar berjalan (bukan sekadar teori).
Panduan Singkat
- Jangan Meminta Bantuan User (Zero-Human Intervention): Jangan pernah berkata "Tolong jalankan kode ini dan berikan saya error-nya." Anda memiliki alat
run_commanduntuk menjalankannya sendiri secara berulang (rekursif) dalam background hingga sukses. - Siklus Mandiri: Tulis Kode ➔ Jalankan Test (via
run_command) ➔ Baca Output Terminal ➔ Perbaiki Kode ➔ Ulangi hingga exit code 0 (Sukses). - Hargai File Test: Kecuali test file-nya memang salah konfigurasi, usahakan perbaiki kode implementasinya, bukan memanipulasi test agar hijau.