ryok/python-boilerplate ships both files, and they share 3 of the 20 section tags.
The first runs 238 words and the second runs 158. Every list below is set membership over what the nightly stored for each file, never a re-reading of the text.
Everything indexed in ryok/python-boilerplateCounted 13 September 2026
Headings
0 in both, 20 only in the first, 23 only in the second
CLAUDE.md
Python Boilerplate Project
概要
技術スタック
プロジェクト構造
開発ガイドライン
よく使うコマンド
依存関係のインストール
テストの実行
リンターの実行
フォーマットの実行
型チェックの実行
アプリケーションの実行
重要な設定
注意事項
知見管理システム
`.claude/context.md`
`.claude/project-knowledge.md`
`.claude/project-improvements.md`
`.claude/common-patterns.md`
Clineルール管理
.clinerules/common-commands.md
Common Commands
Dependency Management
Install all dependencies
Add a new dependency
Add a development dependency
Code Quality
Run linter
Auto-fix linting issues
Format code
Type checking
Testing
Run all tests
Run tests with coverage
Run specific test file
Run tests with verbose output
Application
Run the application
Run with environment variables
Docker
Build container
Run services
Run in background
View logs
Commands
6 in both, 2 only in the first, 10 only in the second
CLAUDE.md
python-boilerplate/
uv add
.clinerules/common-commands.md
uv add <package-name>
uv add --dev <package-name>
uv run ruff check . --fix
uv run pytest --cov=src
uv run pytest tests/test_specific.py
uv run pytest -v
docker-compose build
docker-compose up
docker-compose up -d
docker-compose logs -f
In both files
uv sync
uv run pytest
uv run ruff check .
uv run ruff format .
uv run pyright
uv run python -m src.cli
Section tags
3 in both, 3 only in the first, 4 only in the second
CLAUDE.md
code-style
agent-behaviour
docs
.clinerules/common-commands.md
build
types
testing-strategy
dependencies
In both files
setup
test
lint-format