ワンクリックで
linter
Run code quality checks including linting, formatting, type analysis, and complexity metrics.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run code quality checks including linting, formatting, type analysis, and complexity metrics.
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 | linter |
| description | Run code quality checks including linting, formatting, type analysis, and complexity metrics. |
| triggers | ["*qa lint","*qa quality","*qa check"] |
One-line summary: Runs Flutter/Dart code quality checks — style, analyzer, complexity, duplication, and formatting — through make.
TLDR:
Use make lint to run the full quality suite (style + metrics + format); narrower targets exist for each stage.
Triggered by Trin via *qa lint, *qa quality, or *qa check; run the full suite before any PR.
Fix priority: errors first, then warnings, then style; auto-format with make format and re-check with make lint-format.
Code quality analysis via make. All checks run against the Flutter/Dart toolchain.
| Check | Command |
|---|---|
| All quality checks | make lint |
| Style + fatal warnings | make lint-style |
| Complexity + duplication metrics | make lint-metrics |
| Formatting check (no changes) | make lint-format |
| Auto-format source | make format |
| Dart analyzer (non-fatal) | make analyze |
make lint — runs style, metrics, and format checksmake format then re-run make lint-format*qa lint — Run make lint on changed files area*qa quality — Full quality report via make lint*qa check — Pre-commit gate: make lint && make test