← Back to list

coding-standards
by tumma72
A CLI to perform local archiving of GMail emails in mbox format. It keeps GMail clean and tidy, while allowing local search for older emails
⭐ 2🍴 0📅 Dec 23, 2025
SKILL.md
name: coding-standards description: >- Python code style, formatting, linting, and type hints for GMailArchiver. Use when writing Python code, fixing ruff or mypy errors, adding type hints, formatting imports, or reviewing code quality. Triggers on: style, format, lint, ruff, mypy, type hint, import order, line length, docstring.
Coding Standards for GMailArchiver
This skill provides guidance on coding standards and style conventions.
Source Documentation
Always read the authoritative source:
docs/CODING.md - The definitive coding standards document containing:
- Code style and formatting rules
- Naming conventions
- Import organization
- Type hint requirements
- Docstring standards
- Error handling patterns
- Logging conventions
Quick Reference
Key tools used:
- ruff - Linting and formatting (line length: 100)
- mypy - Type checking (strict mode)
- Python 3.14+ - Target version
Quality Commands
# Check linting
uv run ruff check .
# Auto-fix linting issues
uv run ruff check . --fix
# Check formatting
uv run ruff format --check .
# Apply formatting
uv run ruff format .
# Type checking
uv run mypy src/gmailarchiver
Usage
When writing code:
- Read
docs/CODING.mdfor current coding standards - Run quality checks before committing
- If standards change, update
docs/CODING.md(not this skill)
The source documentation is the single source of truth - this skill just points you there.
Score
Total Score
70/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon