ワンクリックで
lint
Run linting, formatting, and static analysis on the codebase
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Run linting, formatting, and static analysis on the codebase
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Orchestrate large-scale changes across the codebase using parallel worktree agents. Use when you need to apply similar changes to many files or modules simultaneously.
Run comprehensive Flutter checks including lint, analyze, test, and format verification. Use before commits to ensure code quality.
Explains the Keychat app architecture and key components
Initialize or reset the Keychat development environment
Clean build artifacts and reset Flutter state
Run code generation for Isar models, JSON serialization, and i18n
| name | lint |
| description | Run linting, formatting, and static analysis on the codebase |
| argument-hint | [fix] |
| disable-model-invocation | true |
| allowed-tools | Bash(melos *), Bash(dart format *), Bash(dart analyze *) |
Run code quality checks on the Keychat project.
$ARGUMENTS - Optional: "fix" to auto-fix formatting issuesmelos run lint:all
melos run analyze
dart format --set-exit-if-changed .
dart format .
If $ARGUMENTS is "fix":
dart format . to fix formattingmelos run analyze to check for remaining issuesOtherwise:
melos run lint:all to check everythingThe project uses very_good_analysis rules defined in analysis_options.yaml.