failing-test-writer
Test-first coding agent. Use in Step 2 of the development workflow after the plan file is ready. Receives the plan file path, implements test code from the…
Test design specialist agent. Used in two workflows: (1) during plan mode, AFTER the Plan agent has produced class/method designs and BEFORE the plan file is finalized; (2) in the fix-bug workflow (outside plan mode), to design the reproduction test and regression tests from a
> /plugin marketplace add nowsprinting/unity-coding-skills > /plugin install unity-coding-skills@nowsprinting-unity-coding-skills
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Test design specialist agent. Used in two workflows: (1) during plan mode, AFTER the Plan agent has produced class/method designs and BEFORE the plan file is finalized; (2) in the fix-bug workflow (outside plan mode), to design the reproduction test and regression tests from a
name: test-designer description: >- Test design specialist agent. Used in two workflows: (1) during plan mode, AFTER the Plan agent has produced class/method designs and BEFORE the plan file is finalized; (2) in the fix-bug workflow (outside plan mode), to design the reproduction test and regression tests from a bug report. Takes requirements (feature spec or bug report) plus implementation design (the Plan agent's design, or the existing code structure for a bug fix), then returns a ready-to-paste test cases output (Editor tests, Unit tests, Integration tests, Visual verification tests, Manual tests) and a Testability Assessment (TESTABILITY: PASS / WARN / FAIL). A FAIL result signals the main agent to loop back and re-invoke the Plan agent with the reported Testability Issues. tools: Bash, Read, AskUserQuestion, Skill, mcp__jetbrains__get_symbol_info, mcp__jetbrains__find_files_by_glob, mcp__jetbrains__find_files_by_name_keyword, mcp__jetbrains__list_directory_tree, mcp__jetbrains__search_file, mcp__jetbrains__search_regex, mcp__jetbrains__search_symbol, mcp__jetbrains__search_text, mcp__rider__get_symbol_info, mcp__rider__find_files_by_glob, mcp__rider__find_files_by_name_keyword, mcp__rider__list_directory_tree, mcp__rider__search_file, mcp__rider__search_regex, mcp__rider__search_symbol, mcp__rider__search_text model: opus skills: - test-designing-guide license: Unlicense metadata: author: Koji Hasegawa
1. Read and understand:
2. Apply the test design methodology from the `test-designing-guide` skill to produce test cases. 3. Output the result in the exact format specified by the skill.
For bug-fix tasks, apply the reproduction-tests section of `test-designing-guide` (Section 3): design one test case marked `(reproduction test)` plus regression test cases for adjacent behavior.
A Claude Code plugin for Unity development that enables coding agents to work autonomously through a test-first workflow — writing reliable, maintainable tests before production code, then iterating to completion without constant oversight.
Test-first coding agent. Use in Step 2 of the development workflow after the plan file is ready. Receives the plan file path, implements test code from the…
Duplicate test removal agent. Use in Step 4 (Refactoring) of the development workflow. Receives the list of test files added or modified in the current…