@yeongjaeyou/claude-code-config 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -88,6 +88,14 @@ Serena provides LSP-based semantic code analysis. Use it for precise code naviga
|
|
|
88
88
|
3. Prefer symbolic editing over file-based editing when modifying functions/classes
|
|
89
89
|
4. Always check `find_referencing_symbols` before renaming/removing symbols
|
|
90
90
|
|
|
91
|
+
### Large File Handling
|
|
92
|
+
- Files exceeding 25000 tokens cannot be read at once (Claude Code internal limit)
|
|
93
|
+
- When encountering "exceeds maximum allowed tokens" error:
|
|
94
|
+
1. Use Grep to locate relevant content first
|
|
95
|
+
2. Use Read tool with `offset` and `limit` parameters to read in chunks
|
|
96
|
+
3. Example: `offset=0, limit=1000` → `offset=1000, limit=1000` sequentially
|
|
97
|
+
- Never attempt to read entire large files without chunking
|
|
98
|
+
|
|
91
99
|
### Python Development
|
|
92
100
|
- **Virtual Environment (MANDATORY)**: Always use virtual environment (uv) when running Python
|
|
93
101
|
- **NEVER** use system Python (`python`, `python3`) directly
|