loops / directory
LOOP WORKBENCH▌
Autonomous agent loops — repeatable, goal-driven workflows that run until the exit condition is met. 7 loops indexed.
Backup Verification
Database
Automates the verification of database backup restorability by repeatedly testing restore operations until successful or maximum iterations reached.
Database Schema Sync Loop
Database
Automatically detects and resolves schema drift between your database and ORM models by iteratively applying necessary migrations and verifying alignment.
Foreign Key Repair Loop
Database
This loop identifies and repairs broken foreign key relationships in a relational database. It systematically detects constraint violations, proposes corrective actions, and validates fixes until all foreign key checks pass.
Query Performance Fixer
Database
An automated workflow to identify, analyze, and optimize slow-running database queries through iterative benchmarking and targeted improvements.
Data Integrity Guardian
Database
This loop identifies and removes invalid records from your database through iterative integrity checks. The agent will systematically scan for data quality issues, remove problematic entries while preserving valid data, and continue until achieving a clean state with zero integrity problems.
Index Optimization Loop
Database
This loop iteratively improves database query performance by analyzing execution plans, identifying missing indexes, and implementing targeted index optimizations. Each iteration runs EXPLAIN ANALYZE on your query, identifies bottlenecks like sequential scans or costly sorts, and suggests or implements optimal indexes to reduce query execution time.
Migration Until Clean
Database
This loop automatically detects and fixes database migration issues by iteratively running migrations, analyzing errors, and applying corrective code changes until the migration process completes successfully.