npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill is limited to using the following tools:
Run the test suite and verify all tests pass with 100% coverage
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.
Run the test suite and verify all tests pass with 100% coverage for new code. Reports concise summaries — detailed output only on failures.
pytest --cov --cov-report=term-missing
Worktree sessions: When the session CWD is inside a worktree
(.git is a file, not a directory), prefix with uv run:
uv run pytest --cov --cov-report=term-missing
Extract:
If all tests pass:
Tests: 150 passed
Coverage: 100%
If tests fail:
Tests: 148 passed, 2 failed
Failed tests:
1. test_calculate_total - AssertionError: expected 100, got 99
2. test_validate_input - ValueError: invalid input
Coverage: 98% (missing: src/service.py:45-48)
If coverage is below 100% for files changed in the current branch, the branch introduced the regression. Report the failure and fix the gap — do not ask the user whether to proceed with coverage below 100%.
-v flag for verbose output when debugging