From testing-plugin
Sets up testing infrastructure: pre-commit hooks, unit/integration/e2e test directories, GitHub Actions CI/CD with coverage/Codecov, docs workflows, and badges for Python/JS/Go/Rust projects.
npx claudepluginhub laurigates/claude-plugins --plugin testing-pluginThis skill uses the workspace's default tool permissions.
- Package files: !`find . -maxdepth 1 \( -name "package.json" -o -name "pyproject.toml" -o -name "setup.py" -o -name "go.mod" -o -name "Cargo.toml" \) -type f`
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
find . -maxdepth 1 \( -name "package.json" -o -name "pyproject.toml" -o -name "setup.py" -o -name "go.mod" -o -name "Cargo.toml" \) -type ffind . -maxdepth 1 \( -name "pytest.ini" -o -name "jest.config.*" -o -name "vitest.config.*" -o -name ".mocharc.*" \) -type ffind . -maxdepth 1 -name ".pre-commit-config.yaml" -type ffind .github/workflows -maxdepth 1 -type f -name "*.yml" -o -name "*.yaml"pip install pre-commit.pre-commit-config.yaml with language-specific hookspre-commit installpre-commit run --all-filestests/unit, tests/integration, tests/e2e/test:run to verify test execution/lint:check to ensure test code quality.github/workflows/tests.yml with matrix testing.github/workflows/docs.yml for auto-generation