mcpbeat Sign in

Testdriver:hosted Agent Skill

The fastest way to get started with TestDriver. Just set your API key and start testing.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
237
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/testdriverai/testdriverai --skill testdriver:hosted

The instruction itself

5 sections, as written by the author

<!-- Generated from hosted.mdx. DO NOT EDIT. -->

Hosted pricing is based on device-seconds: the amount of time your tests run on our infrastructure.

  • Zero Setup — Start testing immediately. No DevOps required.
  • Free Tier — Get started with a limited preview at no cost.
  • Pay As You Go — Only pay for the device-seconds you use.

Hosted Plans

<CardGroup cols={3}>

<Card title="Free Trial" icon="gift" href="https://docs.testdriver.ai">

$0/month

  • 1 Concurrent Sandbox
  • 60 Minutes Included
  • 1 Team User
  • Community Support

</Card>

<Card title="Pro" icon="rocket" href="https://console.testdriver.ai/checkout/pro">

$20/month per user

  • 2 Concurrent Sandboxes
  • 600 Minutes Included
  • Overage: $0.001/second
  • Test Recordings
  • Community Support

</Card>

<Card title="Team" icon="users" href="https://console.testdriver.ai/checkout/team">

$600/month

  • 8 Concurrent Sandboxes
  • 10,000 Minutes Included
  • Overage: $0.001/second
  • 5 Team Users
  • Test Recordings
  • Private Support
  • Test Analytics
  • CPU, RAM, & Network Profiles

</Card>

</CardGroup>

Get Started

Hosted is the default when you follow the Quickstart guide.

<Card

title="Try the Quickstart"

icon="play"

href="/v7/quickstart"

>

Set your API key and start testing in minutes.

</Card>

Parallel Testing Limits

Your account has a set number of license slots that determine how many devices can run simultaneously. You can view your available slots in the TestDriver Dashboard.

<Info>

When is a slot in use? A license slot is occupied when a test client is connected. As soon as your device is destroyed the slot becomes available immediately.

</Info>

Avoiding Slot Conflicts

To prevent tests from failing due to exceeding your license slot limit, we recommend two key configurations:

<AccordionGroup>

<Accordion title="Set Maximum Concurrency in Vitest">

Limit concurrent tests to match your available license slots:

    import { defineConfig } from 'vitest/config';
    import TestDriver from 'testdriverai/vitest';

    export default defineConfig({
      test: {
        testTimeout: 900000,
        hookTimeout: 900000,
        maxConcurrency: 5, // Set to your license slot limit
        reporters: ['default', TestDriver()],
        setupFiles: ['testdriverai/vitest/setup'],
      },
    });

<Tip>

Check your slot count at console.testdriver.ai and set maxConcurrency to that number or lower.

</Tip>

</Accordion>

<Accordion title="Use GitHub Concurrency Keys">

Prevent multiple workflow runs from competing for the same slots by using GitHub's concurrency controls:

    name: Tests

    on:
      push:
        branches: [main]
      pull_request:

    # Prevent concurrent runs from competing for license slots
    concurrency:
      group: ${{ github.workflow }}-${{ github.ref }}
      cancel-in-progress: true

    jobs:
      test:
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          
          - name: Setup Node.js
            uses: actions/setup-node@v4
            with:
              node-version: '20'
          
          - name: Install dependencies
            run: npm install
          
          - name: Run tests
            run: vitest run
            env:
              TD_API_KEY: ${{ secrets.TD_API_KEY }}

The concurrency block ensures:

  • Only one workflow run per branch runs at a time
  • New pushes cancel in-progress runs on the same branch
  • Different branches/PRs can run in parallel (up to your slot limit)

</Accordion>

</AccordionGroup>

When to Consider Self-Hosted

Hosted is perfect for getting started and for teams that want zero infrastructure management. However, you might consider Self-Hosted if you:

  • Want to escape per-second billing with a flat license fee
  • Require greater concurrency than offered in Cloud plans
  • Need full control over your infrastructure and privacy
  • Want to use your own AI API keys
  • Require custom hardware configurations
  • Have high test volumes that make self-hosting more economical

<Card

title="Explore Self-Hosted"

icon="server"

href="/v7/self-hosted"

>

Learn about self-hosting for unlimited test execution at a flat rate.

</Card>

Other skills for the same job

different authors, same section of the catalogue
Webapp Testing
by anthropics
vendor ×12

Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.

6k tokens scripts
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
Test Driven Development
by w95
×7

Use when implementing any feature or bugfix, before writing implementation code

2k tokens
Systematic Debugging
by ratacat
×7

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

10k tokens scripts
Verification Before Completion
by ZhanlinCui
×6

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always

1k tokens
Backtest Expert
by BaggaT236
×3

Expert guidance for systematic backtesting of trading strategies. Use when developing, testing, stress-testing, or validating quantitative trading strategies. Covers "beating ideas to death" methodology, parameter robustness testing, slippage modeling, bias prevention, and interpreting backtest results. Applicable when user asks about backtesting, strategy validation, robustness testing, avoiding overfitting, or systematic trading development.

15k tokens scripts
Adaptyv
by christophacham
×3

Cloud laboratory platform for automated protein testing and validation. Use when designing proteins and needing experimental validation including binding assays, expression testing, thermostability measurements, enzyme activity assays, or protein sequence optimization. Also use for submitting experiments via API, tracking experiment status, downloading results, optimizing protein sequences for better expression using computational tools (NetSolP, SoluProt, SolubleMPNN, ESM), or managing protein design workflows with wet-lab validation.

16k tokens
Aeon
by christophacham
×3

This skill should be used for time series machine learning tasks including classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. Use when working with temporal data, sequential patterns, or time-indexed observations requiring specialized algorithms beyond standard ML approaches. Particularly suited for univariate and multivariate time series analysis with scikit-learn compatible APIs.

19k tokens

How to use it

Copy the folder

Take testdriverai/testdriver:hosted from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npm. Without those the skill loads but fails at the first command.