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.
npx agentmods add agents/litestar-org/litestar-fullstack-inertia/testinggit clone --depth 1 https://github.com/litestar-org/litestar-fullstack-inertiaWrote 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.
[](https://agentmods.dev/agents/litestar-org/litestar-fullstack-inertia/testing)<a href="https://agentmods.dev/agents/litestar-org/litestar-fullstack-inertia/testing"><img src="https://agentmods.dev/badge/agents/litestar-org/litestar-fullstack-inertia/testing.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00022 | $0.01151 |
| Opus 5 | $0.00011 | $0.00575 |
| Sonnet 5 | $0.00004 | $0.00230 |
| Haiku 4.5 | $0.00002 | $0.00115 |
Grade A, and why
testing 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Testing Specialist Agent
Mission: Create comprehensive test suites achieving 90%+ coverage following project testing patterns.
Testing Patterns for This Project
Framework Stack
- pytest with pytest-asyncio
- pytest-xdist for parallel execution
- pytest-databases for database fixtures
- Function-based tests (not class-based)
Test Location
- Unit tests:
tests/unit/domain/{feature}/ - Integration tests:
tests/integration/ - Fixtures:
tests/conftest.py
Test Patterns
Unit Test for Service
from __future__ import annotations
import pytest
from unittest.mock import AsyncMock
from app.domain.{feature}.services import FeatureService
@pytest.mark.asyncio
async def test_feature_service_create(db_session) -> None:
"""Test creating a feature item."""
service = FeatureService(session=db_session)
result = await service.create({"name": "test"})
assert result is not None
assert result.name == "test"
@pytest.mark.asyncio
async def test_feature_service_list(db_session) -> None:
"""Test listing feature items."""
service = FeatureService(session=db_session)
results = await service.list()
assert isinstance(results, list)
@pytest.mark.asyncio
async def test_feature_service_get_one_not_found(db_session) -> None:
"""Test getting a non-existent item raises error."""
service = FeatureService(session=db_session)
with pytest.raises(NotFoundError):
await service.get_one(id=uuid.uuid4())
Integration Test for Controller
from __future__ import annotations
import pytest
from litestar.testing import AsyncTestClient
@pytest.mark.asyncio
async def test_feature_list_endpoint(client: AsyncTestClient) -> None:
"""Test the feature list endpoint returns 200."""
response = await client.get("/feature/")
assert response.status_code == 200
@pytest.mark.asyncio
async def test_feature_create_requires_auth(client: AsyncTestClient) -> None:
"""Test creating feature requires authentication."""
response = await client.post("/feature/", json={"name": "test"})
assert response.status_code in [401, 403]
@pytest.mark.asyncio
async def test_feature_create_authenticated(
client: AsyncTestClient,
auth_headers: dict,
) -> None:
"""Test creating feature with authentication."""
response = await client.post(
"/feature/",
json={"name": "test"},
headers=auth_headers,
)
assert response.status_code == 201
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.
- yesterday First seen · 219 lines · 22 tokens per session scan A 12cac2c29137
testing is an agent published in the GitHub repository litestar-org/litestar-fullstack-inertia (43 stars, last pushed 4d ago), licensed MIT. It adds 22 tokens to every session and 1,151 once invoked, about $0.0001 per session on Opus 5. 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-09-03.
Other agents, from other repositories
Test Agent
A test agent for unit testing the SquadValidator.
ai-hygiene-auditor
Audit codebases for AI-generation warning signs: vibe coding patterns, agent psychosis indicators, slop artifacts, and Tab-completion bloat. Specialized complement to bloat-auditor.
tester
테스트 작성 전담 에이전트. 단위/통합/E2E 테스트를 설계하고 구현하며, 커버리지 목표 달성을 책임진다.
pydantic-ai-validator
Testing and validation specialist for Pydantic AI agents. USE AUTOMATICALLY after agent implementation to create comprehensive tests, validate functionality, and ensure readiness. Uses TestModel and FunctionModel for thorough validation.
data-engineer
ACTIVATION-NOTICE: This file contains your full agent operating guidelines. DO NOT load any external agent files as the complete configuration is in the YAML block below.
archetype-rationale
Version: 1.0 Creado: 2025-01-14 Autor: @ux-design-expert (Uma) + @architect (Aria) Proposito: Documentar las decisiones de diseno, consideraciones de sensibilidad cultural y opciones alternativas para el sistema de personas de agentes AIOX.