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.
- {plain_code-0.20.1 → plain_code-0.20.2}/PKG-INFO +1 -1
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/CHANGELOG.md +10 -0
- plain_code-0.20.1/plain/code/skills/plain-fix/SKILL.md → plain_code-0.20.2/plain/code/agents/.claude/rules/plain-code.md +11 -9
- {plain_code-0.20.1 → plain_code-0.20.2}/pyproject.toml +1 -1
- {plain_code-0.20.1 → plain_code-0.20.2}/.gitignore +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/LICENSE +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/README.md +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/README.md +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/__init__.py +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/annotations.py +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/biome.py +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/cli.py +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/entrypoints.py +0 -0
- {plain_code-0.20.1 → plain_code-0.20.2}/plain/code/ruff_defaults.toml +0 -0
|
@@ -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
|
-
|
|
3
|
-
|
|
2
|
+
paths:
|
|
3
|
+
- "**/*.py"
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
#
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|