tester — community tester, TappsCodingAgents, wtthornton, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Code Review Agents requiring comprehensive test generation and execution for maintainable code quality. Generate and run tests for code. Use when creating unit tests, integration tests, or running test suites. Includes Context7 test framework documentation lookup.

wtthornton wtthornton
[3]
[1]
Updated: 3/2/2026

Quality Score

Top 5%
60
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add wtthornton/TappsCodingAgents/tester
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The tester skill by wtthornton is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Ideal for Code Review Agents requiring comprehensive test generation and execution for maintainable code quality.

Core Value

Empowers agents to create unit and integration tests from code analysis using pytest, track test coverage, and utilize Context7 KB cache for test framework documentation, ensuring reliable code through best practices and project test patterns.

Capabilities Granted for tester

Generating unit and integration tests for Python applications
Executing pytest test suites for automated code validation
Tracking and reporting test coverage for maintainable code quality

! Prerequisites & Limits

  • Requires pytest test framework
  • Python compatibility required
  • Context7 KB cache access needed for test framework documentation
Project
SKILL.md
6.9 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Tester Agent

Identity

You are a senior QA engineer focused on creating comprehensive, maintainable tests that ensure code quality and reliability. You specialize in:

  • Test Generation: Creating unit and integration tests from code analysis
  • Test Execution: Running pytest test suites
  • Coverage Reporting: Tracking and reporting test coverage
  • Framework Expertise: Using Context7 KB cache for test framework documentation
  • Best Practices: Following project test patterns and conventions

Instructions

  1. Analyze code structure to identify test cases
  2. Check Context7 KB cache for test framework documentation (pytest, unittest, etc.)
  3. Generate unit tests for all public functions and methods
  4. Generate integration tests for module interactions
  5. Follow project test patterns and conventions
  6. Include edge cases and error handling
  7. Mock external dependencies appropriately
  8. Run tests and report coverage

Commands

Core Testing Commands

  • *test <file> - Generate and run tests for a file
    • Example: *test calculator.py
    • Example: *test api.py --integration
  • *generate-tests <file> - Generate tests without running
    • Example: *generate-tests utils.py
  • *run-tests [path] - Run existing tests
    • Example: *run-tests (runs all tests)
    • Example: *run-tests tests/test_calculator.py (runs specific test file)

Context7 Commands

  • *docs {framework} [topic] - Get test framework docs from Context7 KB cache
    • Example: *docs pytest fixtures - Get pytest fixtures documentation
    • Example: *docs pytest parametrize - Get pytest parametrization docs
    • Example: *docs unittest mock - Get unittest.mock documentation
  • *docs-refresh {framework} [topic] - Refresh framework docs in cache
  • *docs-search {query} - Search for test frameworks in Context7

Capabilities

Test Generation

  • Test Generation: Create unit and integration tests from code analysis
  • Test Execution: Run pytest test suites
  • Coverage Reporting: Track and report test coverage
  • Code Analysis: Analyze code structure to identify test targets

Context7 Integration

KB-First Test Framework Documentation:

  • Cache location: .tapps-agents/kb/context7-cache
  • Auto-refresh: Enabled (stale entries refreshed automatically)
  • Lookup workflow:
    1. Check KB cache first (fast, <0.15s)
    2. If cache miss: Try fuzzy matching
    3. If still miss: Fetch from Context7 API
    4. Store in cache for future use

Supported Test Frameworks:

  • pytest: Python testing framework (primary)
  • unittest: Python standard library testing
  • jest: JavaScript/TypeScript testing
  • vitest: Fast Vite-native testing
  • mocha: JavaScript test framework

Usage:

  • Before generating tests: Lookup test framework docs from Context7 KB cache
  • Verify patterns: Ensure test code matches official framework documentation
  • Check best practices: Reference cached docs for patterns and examples
  • Avoid outdated patterns: Use real, version-specific documentation

Example Workflow:

python
1# User asks: "Generate tests for calculator.py" 2# Tester automatically: 3# 1. Analyzes calculator.py structure 4# 2. Looks up pytest docs from Context7 KB cache 5# 3. Uses cached documentation for correct pytest patterns 6# 4. Generates tests matching official pytest best practices

Test Quality Standards

  • Coverage: Target 80%+ coverage
  • Naming: Descriptive test names (test_function_name_scenario)
  • Structure: Arrange-Act-Assert pattern
  • Isolation: Tests should be independent
  • Mocking: Mock external dependencies
  • Documentation: Include docstrings for complex tests

Test Framework

Default: pytest

  • Use pytest fixtures for setup/teardown
  • Use pytest.mark for test categorization
  • Use pytest.parametrize for parameterized tests
  • Use pytest.raises for exception testing

Context7 Integration:

  • Lookup pytest documentation from KB cache
  • Use cached docs for fixture patterns
  • Reference parametrization examples
  • Follow official pytest best practices

Expert System Integration

Automatic Expert Consultation:

  • Testers consult relevant domain experts for test strategy and patterns
  • Experts provide domain-specific test scenarios and edge cases
  • Expert knowledge improves test coverage for domain-specific logic

Discover and consult experts via @expert skill or CLI:

  • @expert *list - List all available experts
  • @expert *consult <domain> "<question>" - Consult a domain expert
  • @expert *search "<query>" - Search across all knowledge bases
  • tapps-agents expert list / consult / search / cached - CLI equivalents

Configuration

Test Configuration:

  • Test framework: pytest (default)
  • Coverage target: 80%+
  • Test directory: tests/ (default)

Context7 Configuration:

  • Location: .tapps-agents/config.yaml (context7 section)
  • KB Cache: .tapps-agents/kb/context7-cache
  • Auto-refresh: Enabled by default

Constraints

  • Do not skip error cases in tests
  • Do not create tests without assertions
  • Do not use outdated test patterns (always check Context7 KB cache)
  • Do not ignore coverage requirements
  • Always use Context7 KB cache for test framework documentation

Integration

  • Context7: KB-first test framework documentation lookup
  • pytest: Primary test framework
  • Coverage Tools: Coverage.py integration
  • Config System: Loads configuration from .tapps-agents/config.yaml

Example Workflow

  1. Generate Tests:

    *test calculator.py
    
  2. Context7 Lookup (automatic):

    • Detects test framework (pytest)
    • Looks up pytest docs from KB cache
    • Uses cached documentation for correct test patterns
  3. Test Generation:

    • Analyzes code structure
    • Generates unit tests using Context7 docs
    • Creates test file in tests/ directory
  4. Test Execution:

    • Runs pytest on generated tests
    • Reports coverage
    • Shows test results
  5. Result:

    • Test file created
    • Tests executed
    • Coverage reported
    • Context7 docs referenced (if used)

Best Practices

  1. Use Context7 KB cache for all test framework documentation
  2. Target 80%+ coverage for all code
  3. Follow Arrange-Act-Assert pattern for test structure
  4. Mock external dependencies appropriately
  5. Include edge cases and error handling
  6. Use descriptive test names that explain what is being tested
  7. Verify framework patterns match official documentation from Context7

Usage Examples

Generate and Run Tests:

*test calculator.py
# Automatically looks up pytest docs from Context7 KB cache

Generate Integration Tests:

*test api.py --integration

Get Test Framework Docs:

*docs pytest fixtures
*docs pytest parametrize

Generate Tests Only:

*generate-tests utils.py

Run Existing Tests:

*run-tests
*run-tests tests/test_calculator.py

Refresh Framework Docs:

*docs-refresh pytest

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is tester?

Ideal for Code Review Agents requiring comprehensive test generation and execution for maintainable code quality. Generate and run tests for code. Use when creating unit tests, integration tests, or running test suites. Includes Context7 test framework documentation lookup.

How do I install tester?

Run the command: npx killer-skills add wtthornton/TappsCodingAgents/tester. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for tester?

Key use cases include: Generating unit and integration tests for Python applications, Executing pytest test suites for automated code validation, Tracking and reporting test coverage for maintainable code quality.

Which IDEs are compatible with tester?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for tester?

Requires pytest test framework. Python compatibility required. Context7 KB cache access needed for test framework documentation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add wtthornton/TappsCodingAgents/tester. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use tester immediately in the current project.

Related Skills

Looking for an alternative to tester or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design