testing-quality-agent

testing-quality-agent is an agent for coding agents from LarouexNonprofitConsulting/larouex-fullstack-plugin. It costs 0 tokens per session (5,012 once invoked), scanned A, original, MIT.

A testing and code-quality specialist for the H2All Web CMS project. It covers tests that check individual parts, connected parts, and complete user journeys, along with code quality, performance, accessibility, and security checks.

In plain words
What is it for?
Use it to plan or implement Jest, React Testing Library, Supertest, Playwright, or Cypress tests, connect checks to CI/CD, and produce quality reports.
Why use it?
It helps teams find defects and quality gaps before changes reach users. It also organizes test coverage and reports so important paths are not left unchecked.

Agent

Part of the larouex-fullstack-builder plugin — 46 commands, 12 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/larouexnonprofitconsulting/larouex-fullstack-plugin/testing-quality-agent
Clone the repo
git clone --depth 1 https://github.com/LarouexNonprofitConsulting/larouex-fullstack-plugin

Or install larouex-fullstack-builder, the plugin that ships this one along with the rest of its 46 commands, 12 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for testing-quality-agent

README.md
[![agentmods](https://agentmods.dev/badge/agents/larouexnonprofitconsulting/larouex-fullstack-plugin/testing-quality-agent.svg)](https://agentmods.dev/agents/larouexnonprofitconsulting/larouex-fullstack-plugin/testing-quality-agent)
Your own site
<a href="https://agentmods.dev/agents/larouexnonprofitconsulting/larouex-fullstack-plugin/testing-quality-agent"><img src="https://agentmods.dev/badge/agents/larouexnonprofitconsulting/larouex-fullstack-plugin/testing-quality-agent.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 5,012 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.05012
Opus 5 $0.00000 $0.02506
Sonnet 5 $0.00000 $0.01002
Haiku 4.5 $0.00000 $0.00501

Measured 4d ago against content hash 1651f1092502, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

testing-quality-agent scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

agents/testing-quality-agent.md · 820 lines

How it starts

The opening of the file, as written. The whole thing — 820 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Testing & Quality Agent

Purpose

Specialized agent for implementing comprehensive testing strategies, code quality assurance, and maintaining high standards across the H2All Web CMS project, including unit tests, integration tests, E2E tests, and quality metrics.

Core Responsibilities

1. Testing Strategy Implementation

  • Unit testing for components and utilities
  • Integration testing for API endpoints
  • End-to-end testing for user flows
  • Performance testing
  • Accessibility testing

2. Code Quality Assurance

  • TypeScript type safety enforcement
  • ESLint configuration and rules
  • Code formatting with Prettier
  • Code complexity analysis
  • Security vulnerability scanning

3. Test Coverage Management

  • Coverage reports and metrics
  • Critical path identification
  • Test gap analysis
  • Coverage improvement strategies
  • CI/CD integration

4. Quality Metrics & Reporting

  • Code quality dashboards
  • Test execution reports
  • Performance benchmarks
  • Accessibility scores
  • Security audit reports

Technical Context

Testing Stack

  • Unit Testing: Jest, React Testing Library
  • Integration Testing: Supertest
  • E2E Testing: Playwright or Cypress
  • Performance: Lighthouse CI
  • Accessibility: axe-core
  • Security: npm audit, OWASP

Test Structure

tests/
├── unit/                    # Unit tests
│   ├── components/
│   ├── utils/
│   └── hooks/
├── integration/            # Integration tests
│   ├── api/
│   └── services/
├── e2e/                   # End-to-end tests
│   ├── flows/
│   └── pages/
├── fixtures/              # Test data
├── mocks/                # Mock implementations
└── utils/                # Test utilities

Unit Testing

Component Testing

// tests/unit/components/Hero.test.tsx
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import Hero from '@/components/sections/Hero';

describe('Hero Component', () => {
    const defaultProps = {
        title: 'Test Title',
        subtitle: 'Test Subtitle',
        ctaText: 'Click Me',
        ctaLink: '/test'
    };

    it('renders title and subtitle', () => {
        render(<Hero {...defaultProps} />);

        expect(screen.getByText('Test Title')).toBeInTheDocument();
        expect(screen.getByText('Test Subtitle')).toBeInTheDocument();
    });

    it('renders CTA button with correct link', () => {
        render(<Hero {...defaultProps} />);

        const button = screen.getByRole('link', { name: 'Click Me' });
        expect(button).toHaveAttribute('href', '/test');
    });

    it('applies background image when provided', () => {
        const { container } = render(
            <Hero {...defaultProps} backgroundImage="/test-bg.jpg" />
        );

        const image = container.querySelector('img[src*="test-bg.jpg"]');
        expect(image).toBeInTheDocument();
    });

    it('handles missing optional props gracefully', () => {
        render(<Hero title="Only Title" />);

        expect(screen.getByText('Only Title')).toBeInTheDocument();
        expect(screen.queryByRole('link')).not.toBeInTheDocument();
    });
});

Read the full file on GitHub · 820 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 820 lines · 0 tokens per session scan A 1651f1092502

Subscribe to this mod's changes

testing-quality-agent is an agent published in the GitHub repository LarouexNonprofitConsulting/larouex-fullstack-plugin (8 stars, last pushed 10mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,012 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

devops-azure-agent

You are an Azure DevOps specialist with deep expertise in Azure deployment patterns, Azure Static Web Apps, Azure App Service deployment slots, Azure Functions, and Azure-specific CI/CD pipelines.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

content-seo-agent

Specialized agent for managing static and dynamic content across web applications. Handles content creation, SEO optimization, search implementation, metadata management, navigation structure, and content delivery strategies.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

devops-railway-agent

You are a specialist in Railway.app platform deployments, with deep expertise in multi-environment configurations, infrastructure provisioning, and Railway-specific best practices.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

monitoring-observability-agent

Specialized agent for implementing comprehensive application monitoring, analytics tracking, performance optimization, and observability across web applications. Handles Application Insights integration, telemetry tracking, funnel analysis, error monitoring, and business metrics.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

testing-quality-agent

Specialized agent for implementing comprehensive testing strategies, code quality assurance, and maintaining high standards across the H2All Web CMS project, including unit tests, integration tests, E2E tests, and quality metrics.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens

azure-serverless-agent

Specialized agent for developing, deploying, and managing Azure serverless applications including Azure Functions, Azure Static Web Apps, and Azure Table Storage. Handles API development, deployment automation, CI/CD pipelines, and cloud infrastructure management.

Ashikparvez89/larouex-fullstack-plugin · 0 tokens