← Back to list

python
by lambdamechanic
⭐ 1🍴 1📅 Dec 30, 2025
SKILL.md
name: python description: "Default Python stack for Lambda: uv + Astral tools, typed code, schemas, and Hypothesis."
Python Workflow
Use this skill when working on Python projects or adding Python support.
Tooling baseline
- Use
uvfor environments, dependency management, and running commands. - Prefer Astral tooling for quality gates:
rufffor lint/format andtyfor type checking. - Favor strict typing everywhere; avoid
Anyunless the boundary truly requires it.
Typing and schemas
- Type every function signature (params + return) and keep types narrow.
- Use Pydantic models for inputs, outputs, and configuration schemas.
- Prefer typed collections and
typing_extensionsfor newer typing features.
Testing
- Write tests with
pytestand property tests withhypothesiswhen behavior is stateful or rule-based. - Add coverage checks (e.g., pytest-cov) and keep coverage green for new code paths.
Packaging
- Structure the code as a releasable PyPI package.
- Use a
pyproject.tomlwith build metadata, versioning, and asrc/layout. - Ensure imports and entrypoints work when installed from a wheel.
Quality gates
- Run formatting last.
- Keep linting, type checking, and tests passing before closing work.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon