shiplight
Shiplight QA toolkit — the single entry point for all Shiplight test/QA work. Use ONLY when the user explicitly says 'shiplight' (e.g. 'write a shiplight test', 'use shiplight to verify X', 'shiplight cover') or invokes /shiplight. Routes to subcommands: init, auth, update, create-yaml-tests, create-agent-verification, cover, fix, verify, review, ci, cloud, help.
How do I install this agent skill?
npx skills add https://github.com/shiplightai/agent-skills-v2 --skill shiplightIs this agent skill safe to install?
- Gen Agent Trust Hubpass
This skill is a comprehensive QA and testing toolkit designed for the Shiplight platform. It provides specialized workflows for E2E testing, security audits, and agent-based verifications. While it performs various system operations like command execution and external downloads, these are standard functionalities for a developer-oriented testing tool and are executed through the vendor's own infrastructure or well-known registries.
- Socketwarn
2 alerts: gptAnomaly
- Snykwarn
Risk: MEDIUM · 1 issue
What does this agent skill do?
Shiplight
The single entry point for Shiplight QA work. This skill takes a subcommand
and routes it to the right workflow. Everything Shiplight-branded comes through
here; the description above is deliberately gated so this skill fires only when
the user names "shiplight" or types /shiplight — never on a generic "write a
test".
Routing contract
- Identify the subcommand. Match the argument against the dispatch table —
do not rely on the first token alone, because synonyms are often multi-word
(
yaml test,set up tests for my app) and intents may lead with a non-token word (create yaml test,show failing tests). In order: (a) an exact canonical token as the leading word; (b) the longest canonical-token or synonym phrase the argument contains; (c) overall intent against the synonym/intent column. Pick the single best-matching subcommand. - Pass-through context. Forward whatever the selector didn't consume to the
subcommand as context. Natural phrasing is expected — users won't type the
exact hyphenated token; match the intent and treat the rest as the target.
Examples:
/shiplight cover checkout flow→cover+ contextcheckout flow/shiplight create a yaml test for login→create-yaml-tests(matched on "yaml test") + contextfor login/shiplight create agent verification for the signup flow→create-agent-verification(matched on "agent verification") + contextfor the signup flow
- Dispatch. Read the matching
references/<subcommand>.md(orreferences/<subcommand>/index.mdfor nested subcommands) and follow it, carrying the context forward. - Clarify, don't guess. If the selector is empty (
/shiplightalone) or ambiguous (see Ambiguity notes), show the menu and ask one clarifying question — the user wants to act but didn't say how. This differs fromhelp, which is informational:helplists/explains subcommands and never executes (seereferences/help.md). - Confirm destructive actions. Never auto-run
initagainst a non-empty project — confirm first.
Shared layer
- On every subcommand invocation (skip for
help), identify the test project root, then runreferences/_shared/update-check.mdonce (daily skill refresh +shiplightaiCLI version gate). It can halt the run: a CLI behind the latest published version stops the subcommand before it starts, and offers an upgrade. - Each subcommand names the
references/_shared/modules it needs (auth, mcp, evidence-and-report, project-layout, ground-truth, knowledge, secrets, vocabularies, test-spec-template). Read those before acting — they are the single source of truth, not restated per subcommand.
Subcommands (menu)
Show this grouped menu when invoked bare or when clarifying.
Setup
init— scaffold a Shiplight test project + writespecs/context.mdauth— set up / repair login and saved storage stateupdate— refresh installed Shiplight skills + theshiplightaiCLI
Author
create-yaml-tests— implement deterministic YAML E2E tests from a speccreate-agent-verification— create a reusable agent-run verification scriptcover— decide test format + effort, plan, drive the producers, report
Maintain
fix— reproduce and repair failing or drifted tests
Check
verify— verify UI changes in the browser during local development
Review
review— app-quality review (security, privacy, design, performance, …)
Ship
ci— wire CI workflows + failure-triage pipelinecloud— read Shiplight Cloud (Nova) test results (runs, failing/flaky tests, artifacts) and analytics (health summary, pass-rate/run trends, slowest/flaky rankings, failure attribution)
Help
help— list subcommands, orhelp <subcommand>for details (does not execute)
Dispatch table
| Canonical | Synonyms / intents | Reference |
|---|---|---|
init | set up shiplight, new test project, scaffold | references/init.md |
auth | log in, save session, storage state, authentication | references/auth.md |
update | self-update, upgrade skills, refresh skills, upgrade the shiplight cli, bump shiplightai, cli out of date | references/update.md |
create-yaml-tests | yaml test(s), create a yaml test, write a yaml/e2e test, deterministic test, e2e test, write a test | references/create-yaml-tests/index.md |
create-agent-verification | agent verification, create agent verification, verification script, repeatable agent check, live-env verification, full-stack test, cross-layer test, test the whole stack, drive the UI and check the backend/database, verify the backend state too, release smoke test, pre-release smoke | references/create-agent-verification/index.md |
cover | coverage, test coverage, what's untested, coverage gaps, testing strategy, plan tests, write a spec, test plan, set up tests for my app, build tests, test this feature | references/cover/index.md |
fix | failing test, triage, repair test, update test for product change | references/fix.md |
verify | screenshot, verify the change, check the UI, visual check | references/verify.md |
review | security review, review my app, accessibility, privacy, performance, seo | references/review/index.md |
ci | github actions, ci setup, pipeline | references/ci.md |
cloud | cloud results, test run results, failing tests, flaky tests, ci results, download artifacts, test health, pass rate, pass-rate/run trend, slowest tests, flakiest tests, failure attribution, failure breakdown, analytics | references/cloud/index.md |
help | what can shiplight do, list commands, usage, ? | references/help.md |
Ambiguity notes
- "test" / "write a test" → could be
create-yaml-tests(deterministic, UI focused) orcreate-agent-verification(spans UI and backend state). Default tocreate-yaml-testsunless the user signals a core journey, backend/ cross-layer proof, release smoke, or live-env judgment — but if unclear, ask. - "smoke test" → ambiguous alone. A quick UI pass over key screens is
create-yaml-tests; a pre-release check that a core journey works and left the right backend state iscreate-agent-verification. Ask which, unless the user names a backend expectation or a release gate. - "verify" / "verification" → the verb (check a change now) is
verify; creating a reusable verification script iscreate-agent-verification. Thecreate-framing is the tell. Ask if the user's phrasing doesn't disambiguate. - "triage" → in Shiplight this means
fix(repair failing tests). Do not confuse withreview's internal triage/plan step. - "failing tests" / "flaky tests" → reading them from CI ("in the cloud",
"from the last run", plural reporting) is
cloud(Nova results); repairing a broken test ("my test is failing", "fix this") isfix. Ask if the phrasing doesn't say which.
After a subcommand completes (next-step suggestion)
After a subcommand's final report, optionally append one next-step suggestion. Rules:
- Evidence-only. A suggestion must be triggered by something already observed during the run — the diff analyzed, the failure diagnosed, the project state read. Never run extra analysis (a new git diff, file scan, or browser session) just to decide a suggestion.
- Silence is the default. No trigger from the table → no suggestion line at all. Failure states mostly suggest nothing: the user's next step is fixing the product, not another Shiplight command. Suggestions fire on success — "you proved it works; now make that durable / continuous / visible."
- Gate on the nature of the change. When the run started from a code change
that is backend-only or barely touches UI, suppress the browser-flavored
suggestions (
verify,create-yaml-tests,review design);cover(picks unit/contract/integration via its capability map) andcreate-agent-verification(cross-layer live checks) are the useful pointers there. - One line, statement not question. Format:
Next: /shiplight <cmd> — <reason from this run>. Never auto-run the suggested command; never ask a blocking yes/no. The user decides. - At most one suggestion — two only when genuinely forked (e.g.
covervscreate-yaml-testsby scope). - Skip entirely in CI / non-interactive mode, and after
update/help.
| After | Trigger observed during the run | Suggest |
|---|---|---|
init | app has login/authed routes | auth; otherwise cover |
auth | invoked to unblock another command | resume that command; otherwise nothing |
verify | passed on a meaningful flow with no YAML test covering it | cover (feature-level) or create-yaml-tests (single narrow flow) — verify is ephemeral, lock it in |
verify | UI smells seen while driving: missing labels/roles, no data-testids, brittle DOM, console warnings | review design (accessibility + testability) |
verify | check failed, or the change was trivial | nothing |
fix | diagnosis was product change and the change extends beyond the repaired tests | cover <feature> to refresh the testing-what spec |
fix | repeated locator drift / no stable semantic hooks | review design (testability) — root-cause the drift instead of re-fixing every sprint |
fix | repro came from a CI failure, or several tests shared one source | cloud to check blast radius / confirm the next run is green |
fix | diagnosis was an app bug | nothing — report the bug (_shared/ground-truth.md) |
create-yaml-tests | tests pass and no CI E2E workflow exists | ci |
create-yaml-tests | flow's confidence needs API/DB/log state better judged than asserted | create-agent-verification |
create-agent-verification | case PASS on a now-stable path whose proof reduces to fixed conditions | create-yaml-tests (promote to deterministic) — not when its worth is the judgment across evidence |
create-agent-verification | BLOCKED on login/session bootstrap | auth |
cover | produced Shiplight tests, no CI wiring | ci |
cover | report rows BLOCKED on auth/env | auth |
review | user fixed UI findings in-session | verify to confirm the fixes render |
review | high-severity findings without regression coverage | cover |
ci | workflow wired | push / open a PR to trigger it, then cloud for the first run's results |
ci | no tests exist yet | cover first (precondition, per ci.md) |
cloud | failing/flaky tests attributed spec_issue / drift | fix |
cloud | attribution dominated by app_regression | nothing to run — an app bug to report |
cloud | recorder sessions covering untested flows | create-yaml-tests from the recording |
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/shiplightai/agent-skills-v2/shiplight">View shiplight on skillZs</a>