Skip to main content

Database

Browse 5,979 skills across 428 packs and 37 categories

Showing 1–8 of 8 skills
8 skills found in Technology & Engineering

bug-hunt-loop

340L

An adversarial find → dedup → verify → fix loop that audits a codebase or PR for REAL

Technology & EngineeringAgentic Loops

data-backfill-loop

416L

A cursor → batch → checkpoint → verify → resume loop for running a transformation over a

Technology & EngineeringAgentic Loops

eval-driven-loop

371L

An eval → improve-one-thing → re-eval hill-climbing loop for developing an LLM feature

Technology & EngineeringAgentic Loops

migration-loop

361L

A scout → pipeline → gate-each → residue-loop pattern for a large MECHANICAL change

Technology & EngineeringAgentic Loops

refactor-under-tests-loop

373L

A characterize → green → tiny-refactor → green loop for restructuring code WITHOUT

Technology & EngineeringAgentic Loops

research-synthesis-loop

423L

A gather → synthesize → critique-gaps → fill loop that builds a comprehensive, fully-cited

Technology & EngineeringAgentic Loops

self-improvement-loop

270L

A screenshot → critique → improve-one-thing → test loop that systematically develops an

Technology & EngineeringAgentic Loops

test-and-fix-loop

348L

A red→green agentic loop for implementing or repairing code against an existing test suite. One iteration runs the test command, parses the FIRST failure, hands an agent only that failure plus the relevant source, takes the MINIMAL diff, and re-runs the WHOLE suite. The test command's exit code is the only oracle — green or it didn't happen. Includes a tamper guard (reject if the agent shrank or weakened the tests to go green), no-progress detection (same failure signature twice = stuck, escalate), flaky-test quarantine (a failure that passes on bare re-run is flaky, not a bug), environment-vs-test triage (a setup failure loops forever if treated as a code failure), and fan-out across independent failing modules. Use when you have a failing test suite or a broken build and want an agent to drive it to green safely — without it cheating by deleting assertions, looping on a flake, or "fixing" snapshots by regenerating them.

Technology & EngineeringAgentic Loops