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