원클릭으로
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