Check code quality and formatting before committing changes
Scanned 5/29/2026
Install via CLI
openskills install zjunlp/Skills---
name: lint
description: Check code quality and formatting before committing changes
---
# Lint Skill
Check code quality and formatting before committing changes.
## Usage
Run this skill to check for lint errors and formatting issues.
## Instructions
1. Run the lint check:
```bash
make lint
```
2. If clippy reports warnings or errors, fix them before proceeding
3. Check formatting:
```bash
make fmt CHECK=1
```
4. If formatting check fails, apply formatting:
```bash
make fmt
```
5. If license headers are missing, add them:
```bash
cd src/redisearch_rs && cargo license-fix
```
## Common Clippy Fixes
- **Document unsafe blocks**: Add `// SAFETY:` comment explaining why the unsafe code is sound
- **Use `#[expect(...)]`**: Prefer over `#[allow(...)]` for lint suppressions
## Rust-Specific Checks
For Rust-only linting:
```bash
cd src/redisearch_rs && cargo clippy --all-targets --all-features
```
No comments yet. Be the first to comment!
Interact with the Paperclip control plane API to manage tasks, coordinate with other agents, and follow company governance. Use when you need to check assignments, update task status, delegate work, post comments, set up or manage routines (recurring scheduled tasks), or call any Paperclip API endpoint. Do NOT use for the actual domain work itself (writing code, research, etc.) — only for Paperclip coordination.