🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
305 B
Markdown
9 lines
305 B
Markdown
# Development Guidelines
|
|
|
|
## Python Environment
|
|
- Always use `python3` directly, never `python`
|
|
- Run `black` code formatter after creating or modifying Python files
|
|
|
|
## Git Workflow
|
|
- Avoid committing unrelated untracked files (e.g., `node_modules/`, build artifacts)
|
|
- Only commit relevant project files |