annotations
1
总安装量
1
周安装量
#50050
全站排名
安装命令
npx skills add https://github.com/dropseed/plain --skill annotations
Agent 安装分布
mcpjam
1
claude-code
1
kilo
1
junie
1
zencoder
1
Skill 文档
Type Annotation Workflow
We are gradually adding type annotations using Python 3.13+.
Workflow
-
Check current coverage:
uv run plain code annotations <directory> --details -
Add annotations: Focus on function/method signatures (parameters and return types)
-
Type check:
./scripts/type-check <directory> -
Format:
./scripts/fix -
Test:
./scripts/test <package> -
Verify improvement:
uv run plain code annotations <directory> -
Add to validation: Once a directory reaches 100% coverage, add it to
FULLY_TYPED_PATHSinscripts/type-validate
Guidelines
- Add
from __future__ import annotationswhen necessary - Focus on public APIs and user-facing methods first
- Don’t annotate
__init__return types (type checkers inferNone) - Use explicit
return Nonefor functions with-> Type | Nonereturn type - Some Django-style ORM patterns are inherently difficult to type – that’s okay
- Goal is progress, not perfection
Example
# Check coverage
uv run plain code annotations plain/plain/assets --details
# After adding annotations...
./scripts/type-check plain/plain/assets
./scripts/fix
./scripts/test plain
uv run plain code annotations plain/plain/assets # Should show 100%