Ten loops to start from
Each one is a job people do by hand, over and over. Each has a work list you can run as a command and a check that can genuinely fail.
These are starting points, not finished scripts. Describe one to justloopit and it will ask about your project before writing anything.
- 01Fix TypeScript ErrorsFinds every TypeScript error in your project and fixes them file by file.Anyone with a codebase where the type checker throws a wall of red text after a big AI-written change.Read the loop
- 02Fix ESLint ErrorsRuns ESLint across your project and fixes every reported error one file at a time.Anyone whose linter has piled up hundreds of warnings after a large AI-generated feature landed at once.Read the loop
- 03Fix Failing TestsRuns your test suite and fixes failing tests one file at a time until the suite is green.Anyone who just had an AI rewrite a chunk of code and now has a red test suite with a dozen failures.Read the loop
- 04Add Missing Alt TextFinds every image without alt text and writes a real description for it.Anyone shipping a site or app built quickly with an AI assistant, where images got added without alt text.Read the loop
- 05Remove Explicit any TypesFinds every any type in your TypeScript code and replaces it with a real type.Anyone whose codebase has any scattered through it from fast AI-written TypeScript.Read the loop
- 06Check Live Site for Broken LinksCrawls the links on your built site and flags every one that returns an error.Anyone about to launch or relaunch a site who wants to know which links are dead before a visitor finds out.Read the loop
- 07Verify Image Assets Are Real ImagesChecks that every image file in your project is actually the image format its file extension claims.Anyone whose AI assistant or asset pipeline has left behind broken, empty, or mislabeled image files.Read the loop
- 08Migrate JavaScript Files to TypeScriptConverts .js files to .ts one at a time and confirms the compiler still accepts them.Anyone moving an older or AI-scaffolded JavaScript project to TypeScript without doing the whole codebase in one sitting.Read the loop
- 09Fix Invalid JSON Data FilesFinds every JSON file that fails to parse or match its schema and repairs it.Anyone with a folder of JSON data files, generated or hand-edited, that may have gotten malformed or drifted from the expected shape.Read the loop
- 10Add Missing Page Titles and Meta DescriptionsFinds every HTML page missing a title or meta description and writes one in.Anyone with a multi-page site where some pages were added quickly and never got a title tag or meta description.Read the loop