@yeongjaeyou/claude-code-config 0.18.5 → 0.18.6
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.
|
@@ -94,8 +94,8 @@ Utilize MCP servers whenever possible:
|
|
|
94
94
|
- `firecrawl` - Web scraping and search
|
|
95
95
|
|
|
96
96
|
### Agent & Skill Usage
|
|
97
|
-
-
|
|
98
|
-
-
|
|
97
|
+
- Use appropriate agent or skill when available
|
|
98
|
+
- If intent is clear, use directly; if unclear, propose and get approval
|
|
99
99
|
|
|
100
100
|
### Code Exploration Strategy
|
|
101
101
|
|
|
@@ -220,6 +220,10 @@ If pip install errors occur, try in order:
|
|
|
220
220
|
- **Minimal Output**: Avoid unnecessary print statements in code - only include meaningful debug output when explicitly requested
|
|
221
221
|
- **No Emojis**: Never use emojis anywhere, whether in documentation or code
|
|
222
222
|
|
|
223
|
+
### Code Documentation Language
|
|
224
|
+
- **Docstrings**: English (for API docs, IDE tooltips, type checker integration)
|
|
225
|
+
- **Inline/block comments**: Korean (for quick understanding and clarity)
|
|
226
|
+
|
|
223
227
|
---
|
|
224
228
|
|
|
225
229
|
## File Organization
|
|
@@ -10,11 +10,12 @@ GUIDELINES_DIR="$PROJECT_DIR/.claude/guidelines"
|
|
|
10
10
|
|
|
11
11
|
# Primary guideline file to always inject
|
|
12
12
|
PRIMARY_GUIDELINE="$GUIDELINES_DIR/work-guidelines.md"
|
|
13
|
+
RELATIVE_GUIDELINE=".claude/guidelines/work-guidelines.md"
|
|
13
14
|
|
|
14
15
|
# Output as system-reminder for Claude to process
|
|
15
16
|
if [ -f "$PRIMARY_GUIDELINE" ]; then
|
|
16
17
|
echo "<system-reminder>"
|
|
17
|
-
echo "Called the Read tool with the following input: {\"file_path\":\"$
|
|
18
|
+
echo "Called the Read tool with the following input: {\"file_path\":\"$RELATIVE_GUIDELINE\"}"
|
|
18
19
|
echo "</system-reminder>"
|
|
19
20
|
echo "<system-reminder>"
|
|
20
21
|
echo "Result of calling the Read tool:"
|