dropseed

plain-fix

@dropseed/plain-fix
dropseed
652
13 forks
Updated 1/18/2026
View on GitHub

Fixes code formatting and linting issues. Use during development to clean up code as you work.

Installation

$skills install @dropseed/plain-fix
Claude Code
Cursor
Copilot
Codex
Antigravity

Details

Repositorydropseed/plain
Pathplain-code/plain/code/skills/plain-fix/SKILL.md
Branchmaster
Scoped Name@dropseed/plain-fix

Usage

After installing, this skill will be available to your AI coding assistant.

Verify installation:

skills list

Skill Instructions


name: plain-fix description: Fixes code formatting and linting issues. Use during development to clean up code as you work.

Fix Code Issues

uv run plain fix [path]

Automatically fixes formatting and linting issues using ruff and biome.

Code Style

  • Add from __future__ import annotations at the top of Python files
  • Keep imports at the top of the file unless avoiding circular imports
  • Don't include args/returns in docstrings if already type annotated

Options:

  • --unsafe-fixes - Apply ruff unsafe fixes
  • --add-noqa - Add noqa comments to suppress errors

Check Without Fixing

uv run plain code check [path]

Runs ruff, ty (type checking), biome, and annotation coverage checks without auto-fixing.