Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/Hooks/capture-all-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down
4 changes: 2 additions & 2 deletions .claude/Hooks/capture-session-summary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function main() {

async function analyzeSession(conversationId: string, yearMonth: string): Promise<any> {
// 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[] = [];
Expand Down Expand Up @@ -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)}/\`

---

Expand Down
2 changes: 1 addition & 1 deletion .claude/Hooks/capture-tool-output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down