ワンクリックで
test-runner
Run tests using the project Makefile. Use for executing the Flutter test suite and validating code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run tests using the project Makefile. Use for executing the Flutter test suite and validating code changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Prompt Engineering Expert. Use for agent creation, prompt updates, and team process improvements.
Senior Software Engineer (Dart/Flutter). Use for implementation, coding, debugging, testing, and refactoring tasks.
Multi-persona coordination protocol. Enables AI to switch between specialized personas (Neo, Morpheus, Trin, Oracle, Mouse, Cypher, Bob, Smith) based on task needs. Use for *chat workflow, state management, and cross-agent communication.
Post a short (max 255 chars) message to the team chat log (agents/CHAT.md). Use to communicate between personas, log progress updates, and coordinate handoffs between agents.
HCI Expert and UX Advocate. Use for user story review, usability testing, HCI evaluation, API/CLI feedback, sprint user review gates, and usability defect filing.
QA Guardian and SDET. Use for testing, test suite maintenance, code review, regression prevention, and quality gates.
| name | test-runner |
| description | Run tests using the project Makefile. Use for executing the Flutter test suite and validating code changes. |
| triggers | ["*test","*qa test"] |
One-line summary: Run the Flutter test suite through the Makefile for consistent environment setup.
TLDR:
Use make test to run the full suite with coverage; make test-watch re-runs on change.
On failure: read the error, fix the issue, re-run make test until green.
Used by Neo (*swe test) after implementation changes and by Trin (*qa test) for full verification.
Run tests via make to ensure consistent environment setup (pub deps, LLVM path, etc.).
| Action | Command |
|---|---|
| All tests with coverage | make test |
| Watch mode (re-run on change) | make test-watch |
make testmake test again to confirm green*swe test): Run after implementing changes*qa test): Run full suite for verification