From pda
Run TDD workflow — write failing tests, implement, verify. For bugs, use the Prove-It pattern.
npx claudepluginhub spaghetti-lover/pda-plugins --plugin pdaInvoke the skills:test-driven-development skill. For new features: 1. Write tests that describe the expected behavior (they should FAIL) 2. Implement the code to make them pass 3. Refactor while keeping tests green For bug fixes (Prove-It pattern): 1. Write a test that reproduces the bug (must FAIL) 2. Confirm the test fails 3. Implement the fix 4. Confirm the test passes 5. Run the full test suite for regressions For browser-related issues, also invoke skills:browser-testing-with-devtools to verify with Chrome DevTools MCP.
/testRuns pytest tests for CLI harness on local path or GitHub repo, verifies CLI resolution, and updates TEST.md with results if all pass.
/testRuns TDD workflow: writes failing tests for new features or bugs (Prove-It pattern), implements code to pass them, verifies full test suite.
/testExecutes unit, integration, or e2e tests with coverage analysis, quality metrics, failure diagnostics, and optional watch mode or auto-fixes.
/testGenerates test strategy overview, unit and integration test code, coverage analysis, execution plan, and maintenance roadmap for a specified component or feature.
/testLaunches Chrome for manual UI testing at given URL, monitors console errors during interaction, generates report with screenshots and logs on completion.
/testInvokes the testing-coach agent to provide guidance on screen reader, keyboard navigation, and automated testing for the given request.
Invoke the skills:test-driven-development skill.
For new features:
For bug fixes (Prove-It pattern):
For browser-related issues, also invoke skills:browser-testing-with-devtools to verify with Chrome DevTools MCP.