AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Agent Tester

skill-aaaaqwq-agi-super-team-agent-tester · by aAAaqwq

Test agent: dry-run, unit, integration, compatibility

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-aaaaqwq-agi-super-team-agent-tester

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-aaaaqwq-agi-super-team-agent-tester)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Agent Tester? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Agent Tester

> Tests a built agent: dry-run, unit tests, integration, compatibility with other agents.

When to use

  • After Agent Builder has finished
  • "test agent X"
  • "check agent compatibility"

Input

  • Agent from $AGENTS_PATH/[name]/
  • Spec from $AGENTS_PATH/specs/[name].spec.md

How to execute

Step 1: Static analysis

Check the agent code:

  • [ ] File exists and runs without syntax errors
  • [ ] All imports resolve
  • [ ] Config file is valid
  • [ ] Paths in config exist
  • [ ] Credentials are accessible
  • [ ] Dry-run mode is implemented

Step 2: Dry-run test

Run the agent with --dry-run:

python3 $AGENTS_PATH/[name]/[name]_agent.py --dry-run

Check:

  • [ ] Agent starts without errors
  • [ ] Logs are clear
  • [ ] Shows what it WOULD do (without real side effects)
  • [ ] Execution time is reasonable

Step 3: Unit tests

Run tests:

python3 -m pytest $AGENTS_PATH/[name]/test_[name].py -v

Minimum tests:

  • [ ] Input parsing works
  • [ ] Business logic is correct on test data
  • [ ] Error handling works (bad input, missing files, API timeout)
  • [ ] Output format is correct

Step 4: Integration test (one run on real data)

WARNING: only with human approval!

  1. Back up data that the agent modifies:
cp [target.csv] [target.csv.backup]
  1. Run the agent once on real data
  2. Check output:
  • [ ] Data was written correctly
  • [ ] Format matches schema.yaml
  • [ ] Nothing broke
  • [ ] Git commit was created (if needed)
  1. If something is wrong -- rollback:
cp [target.csv.backup] [target.csv]

Step 5: Compatibility test

Check that the new agent does not conflict with existing ones:

## Compatibility Matrix

| Agent | Shared Files | Potential Conflict | Status |
|-------|-------------|-------------------|--------|
| Email Pipeline | activities.csv | Write conflict | ? |
| [other agents] | ... | ... | ? |

Specific checks:

  • [ ] File locks: can two agents write to the same CSV simultaneously
  • [ ] Data consistency: does the agent overwrite another agent's data
  • [ ] ID generation: do IDs conflict (personid, activityid, etc.)
  • [ ] Schedule overlap: do agents run at the same time
  • [ ] Git conflicts: does auto-commit create merge conflicts

Step 6: Report

Create a test report file:

$AGENTS_PATH/specs/[name].test-report.md

Report structure:

# Test Report: [Agent Name]

## Date: YYYY-MM-DD
## Tester: Process Analyst Agent

## Results

| Test | Status | Notes |
|------|--------|-------|
| Static analysis | PASS/FAIL | |
| Dry-run | PASS/FAIL | |
| Unit tests | PASS/FAIL | X/Y passed |
| Integration | PASS/FAIL | |
| Compatibility | PASS/FAIL | |

## Issues Found
1. [Issue description + severity]

## Recommendation
- [ ] READY for production
- [ ] NEEDS FIXES (list what)
- [ ] BLOCKED (list why)

Output

  • Test report in $AGENTS_PATH/specs/[name].test-report.md
  • PASS/FAIL verdict
  • List of issues if any

Related skills

  • process-analyst — creates the spec
  • agent-builder — builds the agent
  • change-review — validates CRM/PM changes

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.