▸ Read atomeve.dev/start.md and set up Product QA agent in my project.Opens your web app in a real browser and runs a user flow end to end: signs up with a fresh disposable test account, completes onboarding, and exercises the core flow once. It screenshots each important state and returns a Markdown report with an executive summary, what was checked, findings ordered by severity, the captured artifacts, recommended fixes, and a follow-up test prompt. It fills forms as part of QA but never submits payment or uses real user credentials.
Connect Slack so it can post reports, and set the channel it posts to. Tune agent/instructions.md with your onboarding flow, acceptance criteria, and test-account policy.
The exact source npx atom-eve add installs — instructions, tools, and skills. Read it here, or copy any file straight into your project.
channels/slack.tsimport { connectSlackCredentials } from "@vercel/connect/eve";
import { slackChannel } from "eve/channels/slack";
export default slackChannel({
credentials: connectSlackCredentials("slack/website-qa"),
});