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