plugins/lisa-cursor/skills/lisa-qa-queue/SKILL.md
QA acceptance queue for human testers. Serves the next ticket awaiting QA verdict from the configured QA queue status as a plain-language acceptance brief — what the ticket promises, how to exercise it on the QA environment, in words a non-technical tester can follow. On 'pass', transitions the ticket to the configured certified status. On 'fail', delegates to lisa-qa-fail for the structured failure report, expectation-gap diagnosis, and return to the build-ready status. The conversational front door for human QA acceptance on any coding agent: testers say 'what's the next item?' / 'pass' / 'fail — here's what I saw'.
npx skillsauth add codyswanngt/lisa lisa-qa-queueInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Serve one ticket at a time to a human QA tester and record their verdict. The tester is assumed non-technical: everything you present must be readable by an intern on their first day — no stack traces, no jargon, no internal identifiers without explanation.
Read .lisa.config.json:
jira.workflow.qa.queue, falling back to jira.workflow.done.staging
(whatever status the project uses for "deployed to the environment QA tests against").
If neither exists, stop and report the missing config.jira.workflow.qa.certified (the project's "passed QA, ships
with the next release" status). Required for the pass path; if missing, stop and
instruct the operator to add it — never guess a terminal status.jira.workflow.ready (fail path, via lisa-qa-fail).tracker decides JIRA / GitHub / Linear surfaces;
status names above map to labels/states on non-JIRA trackers.[lisa-qa-fail] verdict from this sweep. Skip tickets
whose repo is listed in qa.nonUserFacingRepos — those belong to lisa-qa-clear,
not a human tester; note any encountered so the operator knows to run the clear.lisa-tracker-read (never serve from a bare summary).exploration /
Validation Journey config supplies the URL and test credentials): where to go, what
to click or type, which account to use.[lisa-qa-queue] QA pass comment naming who verified and when, and offer
the next item.lisa-qa-fail with the ticket key and the tester's own words
(verbatim — do not paraphrase away detail; attach any screenshots they provided). That
skill owns the failure report, the expectation-gap diagnosis, the qa-fail label, and
the transition back to build-ready. When it completes, confirm to the tester in one
plain sentence what was recorded and offer the next item.[lisa-qa-queue] QA blocked: <reason> comment, leave the status untouched, flag it in
the session summary for the operator, and serve the next item.lisa-qa-fail — this skill never
hand-crafts tracker mutations beyond the pass transition and its comment.development
Prepare a machine — a fresh laptop or a throwaway container — to run coding agents, before any repository exists. Detects which of Lisa's supported agents (Claude Code, Codex, Cursor, OpenCode, Antigravity, Copilot) are already installed, asks which credential manager the machine uses (Bitwarden, 1Password, Doppler, Vault, AWS, or none), and installs only what is missing, each by its vendor's own preferred method. Idempotent, headless by default, and emits a Dockerfile for a spin-up/spin-down environment. Run it on a new machine, in a container, or before cloning anything.
tools
Provision and verify a remote execution environment for a host project — Codex Cloud today, other remote surfaces as they are added. Generates a repository-owned setup script that installs the declared toolchain, materializes secrets through lisa-secrets-access, and runs the project's own hook. Provisions by API where one exists, by driving the vendor console where one does not, and by emitting exact config otherwise — then proves the result with the same read-back regardless of which tier did the work. Use before dispatching any work with executionEnv.
tools
Bring a developer's machine in line with the toolchain the project declares. Reports every tool in remoteEnv.tools that is missing, outdated, or unpinned for this platform, and installs the missing ones into ~/.local/bin from the same pinned, checksummed entries the remote surfaces use — but only when asked. Same manifest, same pins, same installers as lisa-setup-remote-env; what differs is consent and that the pin is a floor rather than an equality. Run it on a fresh checkout, after a manifest change, or when a tool fails at the moment of use.
tools
Route one unit of work to a remote execution surface. Reads the executionEnv parameter (local by default, codex-cloud or claude-web today), verifies the environment is provisioned and bound to this repository, submits a thin skill invocation, records the task identifier to .lisa/remote-dispatch.json, and exits without polling. Routing only — the remote runs the identical skill from the identical repository. Composable and inline: other skills invoke it via the Skill tool rather than users calling it directly.