Author Profile: vslvslv

Skills published by vslvslv with real stars/downloads and source-aware metadata.

Total Skills

20

Total Stars

0

Total Downloads

0

RSS Feed

Skills Performance

Comparison chart based on real stars and downloads signals from source data.

qa-a11y

0

Stars
0
Downloads
0

qa-ci-trace

0

Stars
0
Downloads
0

qa-cost

0

Stars
0
Downloads
0

qa-coverage-gate

0

Stars
0
Downloads
0

qa-deeplinks

0

Stars
0
Downloads
0

qa-deps

0

Stars
0
Downloads
0

qa-env-parity

0

Stars
0
Downloads
0

qa-eval-gate

0

Stars
0
Downloads
0

Published Skills

Security

qa-a11y

Automated accessibility audit skill. Three-phase pipeline: (1) axe-core rule-based scan via @axe-core/playwright (covers ~35% WCAG 2.1 AA issues), (2) Claude semantic layer grouping violations by WCAG POUR principle with user impact and code-level fix suggestions, (3) AI-generated alt text for images lacking descriptions. Produces a structured report with WCAG SC references, severity, and fix confidence. Use when asked to "qa accessibility", "a11y audit", "WCAG check", "axe scan", or included automatically by /qa-team for web apps. (qa-agentic-team)

Repository SourceNeeds Review
Coding

qa-ci-trace

CI build intelligence from OTel traces. Analyzes build trace data emitted by Honeycomb buildevents or an OTLP backend to identify the slowest test stages, flappy infrastructure steps, parallelism opportunities, and recurring failure patterns across recent runs. Produces an actionable CI optimization report. Env vars: BUILDEVENTS_APIKEY, CI_TRACE_LOOKBACK, HONEYCOMB_DATASET. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-cost

AI API cost tracking and budget gate. Reads token usage metadata from CTRF output files produced by qa-* skills, computes estimated cost per skill using current Claude model pricing, and can block CI if the total run cost exceeds a configured budget. Provides financial observability alongside functional QA observability. Env vars: QA_COST_BUDGET, QA_COST_MODEL. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-coverage-gate

Test coverage delta gate. Runs the project's coverage tooling, computes per-file coverage change between the current branch and the base branch, and blocks CI if changed files drop below a configurable threshold. For files below threshold, generates LLM-suggested test stubs targeting the specific uncovered lines. Env vars: COVERAGE_THRESHOLD, COVERAGE_COMPARE_BRANCH, COVERAGE_GENERATE_STUBS. (qa-agentic-team)

Repository SourceNeeds Review
Coding

qa-deeplinks

Deep link and universal link validator. Enumerates all declared deep links and universal links from apple-app-site-association, assetlinks.json, and PWA manifest files, then generates tests that fire each URI scheme and assert the correct screen or web fallback is reached. Covers both cold-start and in-app navigation scenarios. Env vars: PLATFORM, APP_BUNDLE_ID, DEVICE_ID. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-deps

Service dependency smoke test. Spins up all declared service dependencies from test-env.yml or docker-compose.yml using Docker Compose or Testcontainers, runs a lightweight health check against each service (database connection, cache ping, HTTP health endpoint, message queue connectivity), then tears down. Catches infrastructure drift before full integration tests run. Env vars: DEPS_TIMEOUT, DEPS_KEEP_RUNNING. (qa-agentic-team)

Repository SourceNeeds Review
Coding

qa-env-parity

Environment configuration parity checker. Compares declared env vars, feature flags, and config keys across dev/staging/production environment files to detect silent drift that causes 'works in staging' failures. Generates a structured drift report with LLM classification of missing required keys, mismatched values, and stale orphaned entries. Env vars: PARITY_ENVIRONMENTS, PARITY_REQUIRED_KEYS. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-eval-gate

Eval-driven CI gate for AI features. Enforces that every AI feature shipped has a passing evaluation harness before the PR merges. Discovers eval files in evals/ or tests/evals/ directories, runs them with the detected eval runner, scores results, and blocks CI if the aggregate pass-rate drops below a configurable threshold. Env vars: EVAL_PASS_THRESHOLD, EVAL_FAIL_FAST, ANTHROPIC_API_KEY. (qa-agentic-team)

Repository SourceNeeds Review
Coding

qa-explore

Swarm exploratory testing skill. Spawns N parallel browser agents that autonomously explore a running web app — clicking links, submitting forms with dummy data, recording console errors, broken links, 4xx/5xx responses, and unexpected redirects. No scripts required. Use when asked to "explore the app", "smoke test", "find broken links", "exploratory test", "vibetest", or after a deploy. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-geo

Geo and timezone simulation suite. Parameterizes Playwright tests across multiple time zones and geo-locations using page.emulateTimezone() and browser.newContext({ geolocation, locale }) to catch date/time arithmetic bugs, DST boundary transitions, locale formatting errors, and geo-gated feature inconsistencies invisible to standard E2E tests. Env vars: QA_TIMEZONES, QA_GEOLOCATIONS, QA_GEO_PAGES, WEB_URL. (qa-agentic-team)

Repository SourceNeeds Review
Web3

qa-intent-assert

Natural-language code property assertions via LLM judge. Reads *.intent.yaml files from the project defining plain-English properties that code must satisfy ('This function must never return a negative balance'), then evaluates each assertion against the target code using an LLM judge. Novel assertion paradigm that catches semantic intent violations that unit tests miss. Env vars: INTENT_STRICT, INTENT_DIR. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-report

Unified QA dashboard and sprint report. Aggregates CTRF output files from all qa-* skills run in a CI pipeline or sprint, producing a single executive Markdown or HTML report: pass/fail trend by skill, flakiness index from qa-flaky-registry.json, coverage delta if available, performance budget adherence, and an LLM-generated top-3 risk areas narrative. Env vars: REPORT_FORMAT, REPORT_PERIOD, REPORT_OUTPUT. (qa-agentic-team)

Repository SourceNeeds Review
Research

qa-sca

Software composition analysis gate using Syft (SBOM generation) and Grype (CVE scanning) plus license compliance checking. Generates a CycloneDX SBOM, scans for CVEs in all direct and transitive dependencies, flags denied license types (GPL, AGPL), and diffs against the previous SBOM to surface only new findings per run. Env vars: SCA_FAIL_ON_CRITICAL, SCA_LICENSE_DENY_LIST. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-secrets

Secrets scanning gate using TruffleHog. Scans full git history and staged diff for leaked credentials, API keys, and tokens, validating detected secrets against live APIs to distinguish verified (active) from unverified. Blocks CI if verified secrets are found. Env vars: TRUFFLEHOG_MODE (history|staged|both), SECRETS_FAIL_ON_VERIFIED. (qa-agentic-team)

Repository SourceNeeds Review
Web3

qa-slsa

Supply chain provenance verification using SLSA attestations. Verifies that build artifacts (npm packages, Docker images, release binaries) have valid SLSA provenance attestations chaining to a trusted CI environment. Flags unsigned or tampered artifacts as CI failures. Integrates with gh CLI attestation and slsa-verifier. Env vars: SLSA_MIN_LEVEL. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-spec-to-test

Converts Markdown PRD/spec documents into structured YAML test plans and optional Playwright skeleton spec files. Point it at docs/*.md, PRD*.md, SPEC*.md, or specs/ directories. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-team

Agentic QA orchestrator. Analyzes the current project, determines which testing domains apply (web, API, mobile, performance, visual), and spawns specialized sub-agents for each. Aggregates all results into a unified quality report. Use when asked to "run qa", "qa team", "full test suite", "test everything", "qa the app", or "run all agents".

Repository SourceNeeds Review
Security

qa-test-docs

Test documentation generator. Reads existing test files and generates human-readable Markdown documentation summarizing what each test suite covers, which business rules it guards, which edge cases are addressed, and notable gaps. Groups tests by feature domain. Output is suitable for compliance audits, sprint reviews, and onboarding. Env vars: TEST_DOCS_OUTPUT, TEST_DOCS_FORMAT. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-test-lint

Test smell and anti-pattern linter. Statically scans test files for known quality issues: assertion-free tests, sleep() calls, magic numbers, permanently skipped tests, empty describe blocks, console.log leakage, and copy-paste test bodies. LLM categorizes each smell by type and severity and generates inline fix suggestions. Env vars: TEST_LINT_SEVERITY. (qa-agentic-team)

Repository SourceNeeds Review
Automation

qa-test-order

Test order dependency detector. Runs the test suite multiple times with different randomized orderings (using jest --randomize, pytest-randomly, or go test -shuffle) to identify tests that only pass when run after specific other tests — a sign of shared global state leakage. Generates an isolation dependency graph and recommends beforeEach/afterEach fixes. Env vars: TEST_ORDER_RUNS, TEST_ORDER_TIMEOUT. (qa-agentic-team)

Repository SourceNeeds Review
Author vslvslv | V50.AI