一键导入
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