@yeongjaeyou/claude-code-config 0.18.0 → 0.18.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.
@@ -75,6 +75,11 @@ You are a code review expert reviewing work in progress.
75
75
  ### CLAUDE.md
76
76
  [Project guidelines]
77
77
 
78
+ ### Work Guidelines
79
+ Read and follow: .claude/guidelines/work-guidelines.md
80
+ If .claude/rules/ exists, also read relevant rule files for module-specific guidance.
81
+ (Use your file access to read these files directly)
82
+
78
83
  ### Directory Structure
79
84
  [tree output]
80
85
 
@@ -105,6 +110,14 @@ You are a code review expert reviewing work in progress.
105
110
 
106
111
  ### Summary
107
112
  [1-2 sentence conclusion]
113
+
114
+ ### Beyond the Question (Evidence-Based)
115
+ If you identify improvements beyond the direct question:
116
+ - Alternative approaches FOUND IN this codebase (with file:line)
117
+ - Architectural patterns ALREADY USED that could apply
118
+ - Potential optimizations BASED ON actual code analysis
119
+
120
+ DO NOT suggest generic best practices without codebase evidence.
108
121
  ```
109
122
 
110
123
  ### 2. Parse Response
@@ -79,6 +79,11 @@ You are a code review expert reviewing work in progress.
79
79
  ### CLAUDE.md
80
80
  [Project guidelines]
81
81
 
82
+ ### Work Guidelines
83
+ Read and follow: .claude/guidelines/work-guidelines.md
84
+ If .claude/rules/ exists, also read relevant rule files for module-specific guidance.
85
+ (Use your file access to read these files directly)
86
+
82
87
  ### Directory Structure
83
88
  [tree output]
84
89
 
@@ -109,6 +114,14 @@ You are a code review expert reviewing work in progress.
109
114
 
110
115
  ### Summary
111
116
  [1-2 sentence conclusion]
117
+
118
+ ### Beyond the Question (Evidence-Based)
119
+ If you identify improvements beyond the direct question:
120
+ - Alternative approaches FOUND IN this codebase (with file:line)
121
+ - Architectural patterns ALREADY USED that could apply
122
+ - Potential optimizations BASED ON actual code analysis
123
+
124
+ DO NOT suggest generic best practices without codebase evidence.
112
125
  ```
113
126
 
114
127
  ### 2. Parse Response
@@ -92,6 +92,10 @@ council_member:
92
92
  context: "why this is relevant"
93
93
  caveats: # optional
94
94
  - "potential limitation or edge case"
95
+ beyond_question: # optional, evidence-based only
96
+ - insight: "improvement opportunity"
97
+ evidence: "file:line or codebase reference"
98
+ rationale: "why this is relevant to the question context"
95
99
  # Round 2+ additional fields
96
100
  gaps:
97
101
  - "aspect not fully addressed"
@@ -103,6 +107,14 @@ council_member:
103
107
  - Sub-agents that fail to follow this schema will have their results flagged
104
108
  - Missing required fields trigger re-query in next round
105
109
 
110
+ **Beyond the Question (Evidence-Based Only):**
111
+ Council members may suggest improvements beyond the direct question, but ONLY with:
112
+ - Specific file:line references from the codebase
113
+ - Evidence from actual code analysis
114
+ - Clear connection to the question context
115
+
116
+ Generic best practices without codebase evidence are NOT accepted.
117
+
106
118
  ---
107
119
 
108
120
  ## Context Gathering (Before Round 1)
@@ -118,6 +130,8 @@ Model-specific guidelines (project root):
118
130
  - ./CLAUDE.md (Claude Opus/Sonnet)
119
131
  - ./AGENTS.md (Codex)
120
132
  - ./gemini.md (Gemini)
133
+ - .claude/guidelines/work-guidelines.md (All models - style and response guidelines)
134
+ - .claude/rules/*.md (All models - module-specific rules, if directory exists)
121
135
  ```
122
136
 
123
137
  **Conditional Code Exploration:**
@@ -235,6 +249,7 @@ Task(model="opus", subagent_type="general-purpose", run_in_background: true):
235
249
 
236
250
  ## Guidelines
237
251
  Read and follow ./CLAUDE.md project guidelines.
252
+ Read and follow: .claude/guidelines/work-guidelines.md for style guidelines.
238
253
  You have access to MCP tools. Use them actively to gather accurate information.
239
254
 
240
255
  ## Question
@@ -257,7 +272,8 @@ Task(model="opus", subagent_type="general-purpose", run_in_background: true):
257
272
  **Claude Sonnet:**
258
273
  ```
259
274
  Task(model="sonnet", subagent_type="general-purpose", run_in_background: true):
260
- prompt: [Same structure as Opus]
275
+ prompt: [Same structure as Opus, including:
276
+ Read and follow: .claude/guidelines/work-guidelines.md for style guidelines.]
261
277
  ```
262
278
 
263
279
  **Codex:**
@@ -275,6 +291,7 @@ Task(subagent_type="general-purpose", run_in_background: true):
275
291
 
276
292
  ## Guidelines
277
293
  Read and follow ./AGENTS.md project guidelines.
294
+ Read and follow: .claude/guidelines/work-guidelines.md for style guidelines.
278
295
  You have access to MCP tools. Use them actively to gather accurate information.
279
296
 
280
297
  ## Question
@@ -308,6 +325,7 @@ Task(subagent_type="general-purpose", run_in_background: true):
308
325
 
309
326
  ## Guidelines
310
327
  Read and follow ./gemini.md project guidelines.
328
+ Read and follow: .claude/guidelines/work-guidelines.md for style guidelines.
311
329
  You have access to MCP tools. Use them actively to gather accurate information.
312
330
 
313
331
  ## Question
@@ -49,6 +49,22 @@ Safely edit Jupyter Notebook files using the correct tools.
49
49
  - **Verification required**: Immediately verify changes after editing
50
50
  - **Follow CLAUDE.md**: Adhere strictly to project guidelines
51
51
 
52
+ ## Path Compatibility
53
+
54
+ Notebooks in `notebooks/` cannot use project-root relative paths directly.
55
+
56
+ ```python
57
+ # First code cell - set PROJECT_ROOT
58
+ from pathlib import Path
59
+
60
+ PROJECT_ROOT = Path.cwd().parent
61
+ if not (PROJECT_ROOT / 'outputs').exists():
62
+ PROJECT_ROOT = Path.cwd()
63
+
64
+ # Use PROJECT_ROOT for all file paths
65
+ data = np.load(PROJECT_ROOT / 'outputs/data.npz')
66
+ ```
67
+
52
68
  ## Computation Efficiency
53
69
 
54
70
  ### Avoid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yeongjaeyou/claude-code-config",
3
- "version": "0.18.0",
3
+ "version": "0.18.2",
4
4
  "description": "Claude Code CLI custom commands, agents, and skills",
5
5
  "bin": {
6
6
  "claude-code-config": "./bin/cli.js"