ワンクリックで
tdd
Test-Driven Development loop — write a failing test first, then the minimum code to pass it, then refactor. Repeat.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Test-Driven Development loop — write a failing test first, then the minimum code to pass it, then refactor. Repeat.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Find and fix a bug or issue — from any source (GitHub issue, error message, user report, or observed behavior)
Review code changes or a pull request — delegates to specialist agents for code quality, security, performance, and documentation.
Safely refactor code with test coverage as a safety net
Scan changes, commit, push, and create a PR — with confirmation at each step
Write comprehensive tests for new or changed code. Use automatically when new features are added, functions are created, or behavior is modified.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
| name | tdd |
| description | Test-Driven Development loop — write a failing test first, then the minimum code to pass it, then refactor. Repeat. |
| argument-hint | [feature description or function signature] |
| disable-model-invocation | true |
Build the following using strict Test-Driven Development:
Feature: $ARGUMENTS
Repeat this cycle for each behavior. Never skip steps.
should return 0 for empty cartWork from simple to complex:
Each test should require a small code change. If you need to write more than ~10 lines of production code to pass a test, the test is too big — split it.
After each cycle, briefly state:
When the feature is complete, provide a summary of all behaviors covered and any gaps that would need integration or manual testing.