← All plugins
test-pilot
v4.0.1Generates unit tests from real call sites, hunts flaky tests by rerunning suspects in isolation, and exposes coverage data over MCP.
2 skills1 MCP serverstdio
by SkylarkMIT7.6kupdated 1 month ago
Install
git clone https://github.com/skylark-dev/test-pilotClone into your agent client’s plugin directory — components are discovered from fixed locations per the spec.
Layout
test-pilot/
├── plugin.json├── skills/│ ├── flaky-hunt/│ │ └── SKILL.md│ └── generate-tests/│ └── SKILL.md└── mcp.json
Skills2
flaky-huntskills/flaky-hunt/
Rerun suspected flaky tests in isolation, bisect ordering dependencies, and report the true culprit.
generate-testsskills/generate-tests/
Write unit tests for a module using its real call sites as the source of expected behavior.
MCP servers1
coveragestdio
- command
- npx
- args
- -y @skylark/test-pilot-mcp
Manifest
plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "test-pilot",
"version": "4.0.1",
"description": "Generates unit tests from real call sites, hunts flaky tests by rerunning suspects in isolation, and exposes coverage data over MCP.",
"author": {
"name": "Skylark"
},
"homepage": "https://skylark.dev/test-pilot",
"repository": "https://github.com/skylark-dev/test-pilot",
"license": "MIT",
"keywords": [
"testing",
"coverage",
"quality"
]
}