FAQ
workersio-skills is a Claude Code plugin with 1 hand-picked skill for testing work, indexed on Flowy. Install it with the command on its page. It includes wio. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Repo: workersio/skills
Most AI-written tests optimize for coverage. They assert implementation details,
mock away the real risk, and pass even when the product breaks.
@workersio/skills gives coding agents a testing workflow that asks a stricter
question: will this test catch a real regression that users, operators,
reviewers, or maintainers care about?
@workersio/skills is one skill with five command modes:
$wio scan # Find high-value tests to add next.
$wio test # Run candidate discovery, strategy, implementation, and review.
$wio workload # Generate realistic, replayable workloads with new bug-finding value.
$wio review # Judge whether a test should be kept, redone, or removed.
$wio doctor # Audit suite health, weak assertions, flakes, mocks, and CI blind spots.
@workersio/skills is packaged for Codex and Claude Code today. The core skill
content is plain Markdown, so the testing workflow can also be adapted by other
coding agents that support project skills, instructions, or reusable prompts.
Direct skill install:
npx skills add workersio/skills
Codex plugin marketplace:
codex plugin marketplace add workersio/skills
Claude Code plugin marketplace:
claude plugin marketplace add workersio/skills
claude plugin install wio@workersio-skills
For local Codex plugin testing from this checkout:
codex plugin marketplace add .
| Area | What the agent gets |
|---|---|
| Test discovery | Maps product behavior, recent changes, existing tests, CI, and risk areas before choosing what to test. |
| Strategy selection | Chooses the right level: unit, component, integration, contract, E2E, workload, fuzz, property, mutation, resilience, or monitoring. |
| Test writing | Adds focused tests using the repository's own framework, naming, fixtures, helpers, and runner conventions. |
| Workload generation | Creates realistic, adversarial, seeded, replayable sessions or traffic that add coverage beyond wrappers and parameter sweeps. |
| Test review | Applies a strict value gate: KEEP, REDO, or REMOVE. Coverage alone is not enough. |
| Suite health | Finds weak assertions, over-mocking, broad snapshots, flakes, skipped tests, slow feedback loops, and CI blind spots. |
| Command | Use it when | Example |
|---|---|---|
$wio scan [target] | You do not yet know what to test. | $wio scan checkout |
$wio test [target] | You want the full write-and-review loop. | $wio test billing eligibility regression |
$wio workload [target] | The risk lives in realistic user, API, CLI, job, or load behavior. | $wio workload onboarding session |
$wio review [target] | A test exists and you need to decide whether it has real value. | $wio review tests/billing_eligibility_test.py |
$wio doctor [target] | The suite is hard to trust or maintain. | $wio doctor API test suite |
An approved test should answer:
If those answers are weak, the test should be redesigned or removed.
@workersio/skills includes three optional focused subagents:
| Subagent | Role |
|---|---|
wio-candidate-scout | Read-only discovery of high-value test candidates before implementation. |
wio-strategy-critic | Read-only challenge of the selected strategy before editing tests. |
wio-test-reviewer | Read-only post-write review that returns KEEP, REDO, or REMOVE. |
The main agent still writes the test and owns the final decision. Subagents inspect, challenge, and review; they do not duplicate the reference library or replace the main workflow.
| Path | Purpose |
|---|---|
plugins/wio/skills/wio/SKILL.md | Source of truth for the skill workflow. |
plugins/wio/skills/wio/references/ | Detailed testing guidance loaded only when relevant. |
plugins/wio/agents/ | Claude Code plugin subagents. |
.codex/agents/ | Codex custom-agent TOML files for project or user installs. |
plugins/wio/hooks/hooks.json | Shared plugin hook config. |
.agents/plugins/marketplace.json | Codex marketplace entry. |
.claude-plugin/marketplace.json | Claude Code marketplace entry. |
public/ | README assets, demo GIF, and agent icons. |
Codex plugin installs include the skill and plugin hook config. Codex custom
agents are a separate native surface loaded from .codex/agents/ in a project
or ~/.codex/agents/ for the user.
Enable the Codex agents globally:
mkdir -p ~/.codex/agents
cp .codex/agents/wio-*.toml ~/.codex/agents/
Enable the Codex agents for the current project:
mkdir -p .codex/agents
cp /path/to/wio-skills/.codex/agents/wio-*.toml .codex/agents/
Enable the Codex hook config for the current project:
mkdir -p .codex
cp /path/to/wio-skills/.codex/hooks.json .codex/hooks.json
Claude plugin installs include the skill, plugin hooks, and Markdown
subagents from plugins/wio/agents/. Project-local Claude Code agents can also
be copied into .claude/agents/ when a repository is not using the plugin.
Detailed testing guidance lives only in
plugins/wio/skills/wio/references/. Reference topics cover behavior mapping,
risk-based testing, test levels, workload modeling, oracles, fixtures, mocks,
suite health, static analysis, security testing, fuzzing, property-based
testing, mutation testing, performance testing, resilience testing, and
regression selection.
Keep the public surface area small: one skill, wio, with command modes
scan, test, workload, review, and doctor.
Detailed testing guidance belongs in
plugins/wio/skills/wio/references/, not duplicated inside cloud folders,
subagents, hooks, or extra skill trees. When adding a reference topic, add both
overview.md and tools.md, then link it from
plugins/wio/skills/wio/references/index.md.
See CONTRIBUTING.md for contribution workflow and release expectations.
MIT. See LICENSE.
.agents/
plugins/
marketplace.json
.claude/
.claude-plugin/
marketplace.json
settings.json
.codex/
agents/
wio-candidate-scout.toml
wio-strategy-critic.toml
wio-test-reviewer.toml
hooks.json
AGENTS.md
CHANGELOG.md
CLAUDE.md
CONTRIBUTING.md
LICENSE
plugins/
wio/
.claude-plugin/
plugin.json
.codex-plugin/
plugin.json
agents/
wio-candidate-scout.md
wio-strategy-critic.md
wio-test-reviewer.md
hooks/
hooks.json
skills/
wio/
references/
behavior-to-test-map/
overview.md
tools.md
flaky-test-detection-and-management/
overview.md
tools.md
fuzz-testing-continuous-fuzzing/
overview.md
tools.md
index.md
mocking-and-test-doubles/
overview.md
tools.md
mutation-testing/
overview.md
tools.md
performance-load-and-stress-testing/
overview.md
tools.md
property-based-testing/
overview.md
tools.md
regression-test/
overview.md
tools.md
resilience-testing-and-fault-injection/
overview.md
tools.md
risk-based-testing/
overview.md
tools.md
security-testing-beyond-sast/
overview.md
tools.md
static-testing-static-analysis/
overview.md
tools.md
test-automation-pyramid/
overview.md
tools.md
test-data-and-fixtures/
overview.md
tools.md
test-feedback-loops/
overview.md
tools.md
test-level-selection/
overview.md
tools.md
test-oracles-and-assertions/
overview.md
tools.md
test-suite-health-diagnostics/
overview.md
tools.md
testability/
overview.md
tools.md
testing-core-concepts/
overview.md
tools.md
user-behavior-testing/
overview.md
tools.md
workload-modeling/
overview.md
tools.md
scripts/
check-wio-report.py
test-review-reminder.py
SKILL.md
public/
claude-dark.svg
claude-light.svg
claude.svg
copilot-dark.svg
copilot-light.svg
copilot.svg
cursor-dark.svg
cursor-light.svg
cursor.svg
gemini-dark.svg
gemini-light.svg
gemini.svg
header.jpg
openai-dark.svg
openai-light.svg
openai.svg
readme-demo.gif
wio-demo.gif
README.md
SECURITY.md© 2026 Flowy · Free and open source
Built for Claude Code · Not affiliated with Anthropic