diff --git a/.claude/History/Raw-Outputs/.gitkeep b/.claude/History/RawOutputs/.gitkeep similarity index 100% rename from .claude/History/Raw-Outputs/.gitkeep rename to .claude/History/RawOutputs/.gitkeep diff --git a/.claude/Hooks/capture-all-events.ts b/.claude/Hooks/capture-all-events.ts index c2f20fee..60a6f104 100755 --- a/.claude/Hooks/capture-all-events.ts +++ b/.claude/Hooks/capture-all-events.ts @@ -43,7 +43,7 @@ function getEventsFilePath(): string { const month = String(pstDate.getMonth() + 1).padStart(2, '0'); const day = String(pstDate.getDate()).padStart(2, '0'); - const monthDir = join(HISTORY_DIR, 'raw-outputs', `${year}-${month}`); + const monthDir = join(HISTORY_DIR, 'RawOutputs', `${year}-${month}`); // Ensure directory exists if (!existsSync(monthDir)) { diff --git a/.claude/Hooks/capture-session-summary.ts b/.claude/Hooks/capture-session-summary.ts index 02f1163c..1f958128 100755 --- a/.claude/Hooks/capture-session-summary.ts +++ b/.claude/Hooks/capture-session-summary.ts @@ -65,7 +65,7 @@ async function main() { async function analyzeSession(conversationId: string, yearMonth: string): Promise { // Try to read raw outputs for this session - const rawOutputsDir = join(HISTORY_DIR, 'raw-outputs', yearMonth); + const rawOutputsDir = join(HISTORY_DIR, 'RawOutputs', yearMonth); let filesChanged: string[] = []; let commandsExecuted: string[] = []; @@ -168,7 +168,7 @@ ${info.commandsExecuted.length > 0 ? '```bash\n' + info.commandsExecuted.join('\ This session summary was automatically generated by the UOCS SessionEnd hook. -For detailed tool outputs, see: \`\${PAI_DIR}/History/raw-outputs/${timestamp.substring(0, 7)}/\` +For detailed tool outputs, see: \`\${PAI_DIR}/History/RawOutputs/${timestamp.substring(0, 7)}/\` --- diff --git a/.claude/Hooks/capture-tool-output.ts b/.claude/Hooks/capture-tool-output.ts index ed784f47..d0175a56 100755 --- a/.claude/Hooks/capture-tool-output.ts +++ b/.claude/Hooks/capture-tool-output.ts @@ -20,7 +20,7 @@ interface ToolUseData { } // Configuration -const CAPTURE_DIR = join(HISTORY_DIR, 'raw-outputs'); +const CAPTURE_DIR = join(HISTORY_DIR, 'RawOutputs'); const INTERESTING_TOOLS = ['Bash', 'Edit', 'Write', 'Read', 'Task', 'NotebookEdit']; async function main() {