HN user

pranshuchittora

30 karma
Posts18
Comments54
View on HN
news.ycombinator.com 22d ago

Ask HN: How are you using AI agents for testings features?

pranshuchittora
1pts1
vostride.com 2mo ago

Show HN: Open-Source Agentic QA Harness with Memory

pranshuchittora
18pts2
github.com 2mo ago

Show HN: Id-agent – Token efficient UUID alternative for AI agents

pranshuchittora
42pts55
github.com 2mo ago

Open-Source Agentic QA Harness with Memory

pranshuchittora
50pts8
vostride.com 2mo ago

Show HN: Agent-QA – natural-language E2E tests for apps built with coding agents

pranshuchittora
1pts0
vostride.com 2mo ago

Show HN: Agent-QA: Open-source AI end-to-end testing for web and mobile apps

pranshuchittora
3pts1
github.com 3mo ago

Mobile Devtool for Agents and Humans

pranshuchittora
3pts0
github.com 4mo ago

Show HN: Simvyn – open-source Universal mobile devtool

pranshuchittora
1pts3
github.com 4mo ago

Show HN: Simvyn – Universal mobile devtool, no SDK required

pranshuchittora
2pts0
github.com 4mo ago

Show HN: The fastest OLAP engine for React Native

pranshuchittora
2pts0
hitt.ai 1y ago

Show HN: AI for creating tailored workout programs

pranshuchittora
1pts0
hitt.ai 1y ago

Show HN: Next gen AI workout planner and logger

pranshuchittora
2pts2
hitt.ai 1y ago

Show HN: AI Personal Trainer and Gym Workout Logger

pranshuchittora
1pts0
news.ycombinator.com 1y ago

Ask HN: How not to write code with Claude

pranshuchittora
1pts1
news.ycombinator.com 1y ago

Ask HN: Where can I find pitch decks of SaaS startups for some "inspiration"

pranshuchittora
6pts4
learn.microsoft.com 2y ago

Microsoft Is Killing Codepush

pranshuchittora
2pts0
live.sentry.io 3y ago

Live.sentry.io

pranshuchittora
2pts1
github.com 6y ago

Autarky: Liberating Disk Space from Node_modules

pranshuchittora
3pts0

Yes a lot. So with the acceleration of AI in the software engineering. Features are being shipped faster but causes regressions. The only way to verify is either you write tests with AI and spend hours reviewing them or you do manual QA. agent-qa aims to solve the later. First your product should work for the end user, later you can write clean test etc.

Some digging FAST_MODEL = "google/gemini-3-flash" (fast mode primary) DEEP_MODEL = "openai/gpt-5.4" (deep mode primary) VISION_CLICK_MODEL= "openai/gpt-5.4" (the visual grounder)

fast: gemini-3-flash, falls back to gpt-5.4, 15-min run timeout, max 2 visual calls/step. deep: gpt-5.4, 15-min timeout, max 3 visual calls/step.

Why such a hard timeout, and why not latest models?

Hey, I just gave it a try and ran a quick test on booking.com. It took ~3 mins for a basic test. Do you cache the test steps so that future runs are faster and they don't call LLMs for the subsequent runs?

Also your current pricing is $300 for 1K tests which means $0.3 for each test. We tried out playwright mcp and it easily consumes 1M+ tokens for a test with ~20 steps (including image input). So with this pricing are you guys default alive?

Also is there a benchmark which you ran to prove the efficacy of your testing agent? because in the current stage it is a trust me bro kinda thing.

Thanks for those kind words. The landing page's demo required lots of sculpting. I would say that agent-qa is not only frontend focused. As you can run hooks in sandboxed env to test apis, so a better way to put it is with agent-qa you can test the product end-to-end not only UI.

But the issue with API testing / backend is that coding harnesses are really good at it. A product manager who writes user stories should be able to write tests for the product, and usually PMs don't care about the APIs.

Do give agent-qa a try, and consider giving it a star on GH https://github.com/vostride/agent-qa

Thanks!

This is what teams are doing today. But LLMs have a tendency to greedily write tests, which leads to hacky tricks to make the test succeed.

agent-qa is a harness where playwright works as an execution kernel and LLM works as a observer, planner and verifier.