skillZs
LIVE SKILL TAGS
>>> LIVE SKILLS INDEX <<<
* OPEN SOURCE *
NO LOGIN, NO TRACKING
REAL INSTALL DATA
← back to all skills
shiplightai/agent-skills-v288 installs

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 shiplight
view source ↗

Is 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

  1. 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.
  2. 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 flowcover + context checkout flow
    • /shiplight create a yaml test for logincreate-yaml-tests (matched on "yaml test") + context for login
    • /shiplight create agent verification for the signup flowcreate-agent-verification (matched on "agent verification") + context for the signup flow
  3. Dispatch. Read the matching references/<subcommand>.md (or references/<subcommand>/index.md for nested subcommands) and follow it, carrying the context forward.
  4. Clarify, don't guess. If the selector is empty (/shiplight alone) 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 from help, which is informational: help lists/explains subcommands and never executes (see references/help.md).
  5. Confirm destructive actions. Never auto-run init against a non-empty project — confirm first.

Shared layer

  • On every subcommand invocation (skip for help), identify the test project root, then run references/_shared/update-check.md once (daily skill refresh + shiplightai CLI 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 + write specs/context.md
  • auth — set up / repair login and saved storage state
  • update — refresh installed Shiplight skills + the shiplightai CLI

Author

  • create-yaml-tests — implement deterministic YAML E2E tests from a spec
  • create-agent-verification — create a reusable agent-run verification script
  • cover — 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 pipeline
  • cloud — 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, or help <subcommand> for details (does not execute)

Dispatch table

CanonicalSynonyms / intentsReference
initset up shiplight, new test project, scaffoldreferences/init.md
authlog in, save session, storage state, authenticationreferences/auth.md
updateself-update, upgrade skills, refresh skills, upgrade the shiplight cli, bump shiplightai, cli out of datereferences/update.md
create-yaml-testsyaml test(s), create a yaml test, write a yaml/e2e test, deterministic test, e2e test, write a testreferences/create-yaml-tests/index.md
create-agent-verificationagent 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 smokereferences/create-agent-verification/index.md
covercoverage, 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 featurereferences/cover/index.md
fixfailing test, triage, repair test, update test for product changereferences/fix.md
verifyscreenshot, verify the change, check the UI, visual checkreferences/verify.md
reviewsecurity review, review my app, accessibility, privacy, performance, seoreferences/review/index.md
cigithub actions, ci setup, pipelinereferences/ci.md
cloudcloud 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, analyticsreferences/cloud/index.md
helpwhat can shiplight do, list commands, usage, ?references/help.md

Ambiguity notes

  • "test" / "write a test" → could be create-yaml-tests (deterministic, UI focused) or create-agent-verification (spans UI and backend state). Default to create-yaml-tests unless 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 is create-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 is create-agent-verification. The create- 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 with review'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") is fix. 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) and create-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. cover vs create-yaml-tests by scope).
  • Skip entirely in CI / non-interactive mode, and after update / help.
AfterTrigger observed during the runSuggest
initapp has login/authed routesauth; otherwise cover
authinvoked to unblock another commandresume that command; otherwise nothing
verifypassed on a meaningful flow with no YAML test covering itcover (feature-level) or create-yaml-tests (single narrow flow) — verify is ephemeral, lock it in
verifyUI smells seen while driving: missing labels/roles, no data-testids, brittle DOM, console warningsreview design (accessibility + testability)
verifycheck failed, or the change was trivialnothing
fixdiagnosis was product change and the change extends beyond the repaired testscover <feature> to refresh the testing-what spec
fixrepeated locator drift / no stable semantic hooksreview design (testability) — root-cause the drift instead of re-fixing every sprint
fixrepro came from a CI failure, or several tests shared one sourcecloud to check blast radius / confirm the next run is green
fixdiagnosis was an app bugnothing — report the bug (_shared/ground-truth.md)
create-yaml-teststests pass and no CI E2E workflow existsci
create-yaml-testsflow's confidence needs API/DB/log state better judged than assertedcreate-agent-verification
create-agent-verificationcase PASS on a now-stable path whose proof reduces to fixed conditionscreate-yaml-tests (promote to deterministic) — not when its worth is the judgment across evidence
create-agent-verificationBLOCKED on login/session bootstrapauth
coverproduced Shiplight tests, no CI wiringci
coverreport rows BLOCKED on auth/envauth
reviewuser fixed UI findings in-sessionverify to confirm the fixes render
reviewhigh-severity findings without regression coveragecover
ciworkflow wiredpush / open a PR to trigger it, then cloud for the first run's results
cino tests exist yetcover first (precondition, per ci.md)
cloudfailing/flaky tests attributed spec_issue / driftfix
cloudattribution dominated by app_regressionnothing to run — an app bug to report
cloudrecorder sessions covering untested flowscreate-yaml-tests from the recording

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>