alibaba/arthas
Arthas is an open-source Java diagnostic tool by Alibaba that enables real-time production troubleshooting and performance monitoring without code changes or JVM restarts.
Awesome AI Agents › Code Automation and Testing
Continuous Claude is a command line tool built around a Bash script that invokes Claude Code repeatedly instead of once, so that large multi-step projects can progress without a human driving each step. The author wrote it to raise unit test coverage on a very large codebase from zero to eighty percent, a task that one-shot agent runs handle poorly because the agent stops when it believes the job is done and has no opportunity for self-criticism or further improvement. The script acts as a conductor around the agent. In each iteration it creates a new branch, runs Claude Code to produce a commit, pushes the changes and opens a pull request with the GitHub CLI, monitors continuous integration checks and reviews through gh pr checks, then merges on success or closes the pull request and discards the work on failure, after which it pulls the updated main branch, cleans up and repeats. Because it rides on existing GitHub workflows, code owner approval rules, required checks and preview environments apply without extra setup. Continuity between iterations comes from a shared markdown file that serves as external memory: the agent records what it did and what should come next, and the prompt instructs it to treat the run as a relay race, making meaningful progress on one thing and leaving a clean handoff rather than verbose logs. The author reports that a vague instruction such as increase coverage evolves into a concrete procedure as the loop teaches itself through iteration. Suggested uses include dependency updates with follow-up fixes from release notes, and long refactors such as splitting a monolith into modules or modernising callbacks to async and await across many pull requests.
https://github.com/AnandChowdhary/continuous-claude
Arthas is an open-source Java diagnostic tool by Alibaba that enables real-time production troubleshooting and performance monitoring without code changes or JVM restarts.
SWE-agent is an autonomous software engineering tool that uses large language models to automatically fix GitHub issues, perform web tasks, and solve cybersecurity challenges, achieving state-of-the-art results in automated software repair and offensive cybersecurity.
Qodo-Cover is an AI-powered tool that automates the generation of unit tests to enhance code coverage, supporting integration with GitHub CI workflows and local CLI usage.
Judge0 is a robust, scalable, and open-source online code execution system that supports over 60 programming languages and is designed for easy integration into various applications.
BuilderIO/micro-agent is an AI-powered tool that writes and iteratively refines code by generating tests and ensuring all test cases pass, focusing on reliable test-driven development.
Shippie is an AI-powered extensible code review agent that integrates into CI/CD pipelines to automatically detect code issues and improve software delivery speed.
Agentless is an open-source project that automatically solves software development problems through a three-phase process of fault localization, repair, and patch validation, achieving competitive results on SWE-bench benchmarks.
Command-line orchestrator that drives coding agent CLIs through an executor-verifier loop, so the agent that wrote a change is never the one that declares it correct.