plain.code 0.20.1__tar.gz → 0.20.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.code
3
- Version: 0.20.1
3
+ Version: 0.20.2
4
4
  Summary: Preconfigured code formatting and linting.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -1,5 +1,15 @@
1
1
  # plain-code changelog
2
2
 
3
+ ## [0.20.2](https://github.com/dropseed/plain/releases/plain-code@0.20.2) (2026-01-28)
4
+
5
+ ### What's changed
6
+
7
+ - Converted the `plain-fix` skill to a passive `.claude/rules/` file with path-based activation on `**/*.py` files ([512040ac51](https://github.com/dropseed/plain/commit/512040ac51))
8
+
9
+ ### Upgrade instructions
10
+
11
+ - Run `plain agent install` to update your `.claude/` directory.
12
+
3
13
  ## [0.20.1](https://github.com/dropseed/plain/releases/plain-code@0.20.1) (2026-01-28)
4
14
 
5
15
  ### What's changed
@@ -1,9 +1,11 @@
1
1
  ---
2
- name: plain-fix
3
- description: Fixes code formatting and linting issues. Use during development to clean up code as you work.
2
+ paths:
3
+ - "**/*.py"
4
4
  ---
5
5
 
6
- # Fix Code Issues
6
+ # Code Quality
7
+
8
+ ## Fix Formatting and Linting
7
9
 
8
10
  ```
9
11
  uv run plain fix [path]
@@ -11,12 +13,6 @@ uv run plain fix [path]
11
13
 
12
14
  Automatically fixes formatting and linting issues using ruff and biome.
13
15
 
14
- ## Code Style
15
-
16
- - Add `from __future__ import annotations` at the top of Python files
17
- - Keep imports at the top of the file unless avoiding circular imports
18
- - Don't include args/returns in docstrings if already type annotated
19
-
20
16
  Options:
21
17
 
22
18
  - `--unsafe-fixes` - Apply ruff unsafe fixes
@@ -29,3 +25,9 @@ uv run plain code check [path]
29
25
  ```
30
26
 
31
27
  Runs ruff, ty (type checking), biome, and annotation coverage checks without auto-fixing.
28
+
29
+ ## Code Style
30
+
31
+ - Add `from __future__ import annotations` at the top of Python files
32
+ - Keep imports at the top of the file unless avoiding circular imports
33
+ - Don't include args/returns in docstrings if already type annotated
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.code"
3
- version = "0.20.1"
3
+ version = "0.20.2"
4
4
  description = "Preconfigured code formatting and linting."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes