software risk analysis
by Matthew King
Deep repository inspection to generate a pragmatic quality risk strategy and interactive HTML dashboard.
New: Skill bounties are live. Post a request, fund the bounty, and creators compete for 7 days to build it -> See open bounties
THE AGENSI STORE
102 skills found
by Matthew King
Deep repository inspection to generate a pragmatic quality risk strategy and interactive HTML dashboard.
by Timoranjes
Detect, diagnose, and fix intermittent test failures to stabilize your CI pipeline and restore developer trust.
Select the smallest honest verification set for a change, including targeted tests, manual checks, missing-test recommendations, a broader fallback, and named remaining risk.
Map the blast radius of a code change before you run the whole suite. For the files and functions you changed, it lists what imports or calls them, which tests cover them, flags any change with no covering test, and warns when a file has a lot of dependents. It tells an agent what its edit might break instead of making it guess. Resolves Python and JavaScript/TypeScript.
One-line summary description Stop your agent from claiming "done" before it's proven. A verification gate that classifies each change by risk (payment, auth, database, user-facing), picks the tests that actually cover it, demands evidence, maps regression risk, and outputs an honest pass/fail report. Turns "looks good to me" into "here's what I ran, and here's what's still unverified."
Find the unit tests that pass without testing anything. Flags tests with no assertions, trivial existence-only checks (toBeDefined, assertIsNotNone), tests that assert the exact value they just mocked, snapshot-only tests, tautological assertions (expect(true).toBe(true)), empty placeholders, and over-mocked tests with more setup than assertions. Works on Jest/Vitest and pytest/unittest.
Automatically detect accessibility issues in websites and applications following WCAG and accessibility standards.
Generate runnable accessibility regression tests, not just a findings report. Detects a11y issues, missing alt text, unlabeled controls, keyboard and focus gaps, in your routes, components, or HTML, then emits Playwright + axe-core spec files with targeted assertions and remediation tickets for each. Previews the tests first and writes them only on your confirmation.
by Matthew King
SeleniumLibrary is the flakiest part of your Robot Framework suite. This skill swaps it for Browser library, structure intact
Lint an OpenAPI spec and diff two versions to catch breaking API changes before they reach consumers. Within a spec it flags missing operationId, success responses with no schema, untyped parameters, operations with no security requirement, and unbounded arrays/strings. Across two versions it flags removed paths and operations, removed response codes, a parameter becoming required, narrowed parameter types, removed enum values, and removed response fields. Analyzes JSON specs (convert YAML to JSON first).
by Matthew King
Most 'TDD' skips the failing test. This mentor enforces Red before Green, even on legacy code.
by Matthew King
Most quality strategies are generic templates nobody follows. This one is built from your actual repo
by Matthew King
Architect, scaffold, and audit enterprise-grade Playwright test suites with professional CI and auth patterns.
Audit your frontend build against a performance budget and catch size regressions before you ship. Flags total bundle over budget, initial bundle over budget, individual chunks over a threshold, oversized image assets, source maps shipped to production, and large unminified JavaScript. Reads a webpack or Vite-style stats.json plus a perf-budget.json you control.
Apply Clean Code and Clean Architecture standards to automate refactoring, reviews, and dependency management.
Generate a personalized before-you-ship checklist for your app, with the things you already have checked off. Pick your app type (web app, SaaS, store, or content) and it builds a tailored list covering security, legal basics (privacy policy, terms, cookie consent), social preview, payments and refunds, accessibility, analytics, and backups, then scans your repo and pre-checks what is already there. Every item says why it matters in plain English.
Turns Claude into a senior WordPress launch reviewer that audits a site, theme, or plugin against the entire pre-launch standard across 7 weighted domains and returns one objective go/no-go decision with a scored blocker list.
by Lily Studio
Paste your Python code and get a plain-English test report — what works, what doesn't, what's unfinished, and exactly what to do next.
Enforce strict Red-Green-Refactor discipline to build robust, test-driven software with 100% meaningful coverage.
by Matthew King
A risk-first QA agent that hunts bugs via personas, extracts BDD requirements, and drives TDD fixes.
Run structural QA on your translation files across locales. Flags missing keys, placeholder mismatches ({name}, %s, {{var}}), strings left untranslated and identical to the source, length-overflow risk that breaks UI, terminology drift against a glossary, empty targets, and plural-category gaps. Works on JSON, gettext .po/.pot, and .properties. It checks form, not meaning, so you do not need to speak the target language to use it.
Stop guessing and start solving with hypothesis-driven debugging for complex, intermittent, and production-only bugs.
'Should work now' is the most expensive sentence in software — it means the change was reasoned about, not observed, and the next person to touch this code will pay for that assumption
by Eric Pi
Systematic root cause analysis skill to find and fix the source of bugs, not just the symptoms.