2 pointsby pranshuchittora2 hours ago1 comment
  • pranshuchittoraan hour ago
    Hey, I am the creator of agent-qa.

    Coding agents have accelerated software development, allowing folks to ship features at lightning speed, but whether the feature works in production without breaking existing behavior is still questionable.

    Conventionally, either a software engineer or a QA engineer converts user stories / feature PRDs into composable end-to-end tests, allowing teams to catch regressions.

    But with AI writing code, tests become the bottleneck. Though you can ask the coding agent to write tests, and it does write tests with reasonable correctness, AI greedily chases passing tests and sometimes bends the rules. Also, having access to the code allows it to write tests with shortcuts that might not mimic real user behavior.

    With agent-qa, you can write tests in plain English (natural language). It is built upon battle-tested testing frameworks (Playwright for web and Appium for mobile). Playwright and Appium work as a kernel executing the planned actions, while AI runs in the harness doing observation -> planning -> executing planned actions (via kernel) -> self-healing (in case a planned action fails) -> verification.

    The agent also evolves with every test run. It generates learning & product memories from each run, improving itself over time.

    This is in an early stage, and I’m looking forward to your feedback.

    Thanks!

    GitHub - https://github.com/vostride/agent-qa Consider giving it a Good Day!