원클릭으로
lint
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Search OLX.pt listings, track prices, and detect deals. Use for finding products, monitoring prices, and getting alerts on good deals in Portugal and other OLX regions.
Create a new filter for the tracker system. Use when adding custom filtering logic or when the user asks to create a filter.
Create a new notification backend (e.g., Telegram, Email, Slack). Use when adding custom notification channels.
Build the olx-tracker project. Use when compiling the project or when the user asks to build.
Create a git commit following project conventions. Use when the user asks to commit changes or create a commit.
Run olx-tracker CLI commands. Use when executing tracker operations, managing searches, or testing the application.
SOC 직업 분류 기준
| name | lint |
| description | Check code quality and formatting. Use when checking code style, running pre-commit checks, or when the user asks to lint or format code. |
| argument-hint | ["--fix to auto-fix"] |
| disable-model-invocation | true |
| allowed-tools | Bash(cargo *) |
Run linting and formatting checks before committing code.
# Check formatting (no changes)
cargo fmt --check
# Apply formatting
cargo fmt
# Run clippy lints
cargo clippy --all-targets
# Fix clippy warnings automatically (where possible)
cargo clippy --fix --allow-dirty --allow-no-vcs
unsafe_code = "forbid")Run both format and clippy fixes:
cargo fmt
cargo clippy --fix --allow-dirty --allow-no-vcs --all-targets
Otherwise, just check without modifying files:
cargo fmt --check
cargo clippy --all-targets