This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| 'use strict'; | |
| // Local-only session dumper: | |
| // - scans ~/.claude/projects | |
| // - selects top-level sessions between --from and --to (by first event timestamp) | |
| // - writes one compact .txt per session under: <out>/<YYYY-MM-DD>/<sessionId>.txt | |
| // - merges session subagents (<sessionId>/subagents/**/*.jsonl) into the same file | |
| const fs = require('fs'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using System.Reflection; | |
| using UnityEditor; | |
| namespace UnityToolbag | |
| { | |
| public static class PreferenceWindowUtils | |
| { | |
| /// <summary> |