ccakashic 0.2.1 → 0.2.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.
- package/bin/ccakashic.js +14 -3
- package/lib/discover.js +69 -1
- package/lib/html-generator.js +23 -0
- package/lib/template-assets.js +17 -0
- package/package.json +1 -1
package/bin/ccakashic.js
CHANGED
|
@@ -5,7 +5,7 @@ const http = require('http');
|
|
|
5
5
|
const fs = require('fs');
|
|
6
6
|
const path = require('path');
|
|
7
7
|
const { exec } = require('child_process');
|
|
8
|
-
const { listProjects, listSessions } = require('../lib/discover');
|
|
8
|
+
const { listProjects, listSessions, findSessionForCwd } = require('../lib/discover');
|
|
9
9
|
const { parseSession } = require('../lib/parser');
|
|
10
10
|
const { generate } = require('../lib/html-generator');
|
|
11
11
|
const { generateIndex, generateSessionList } = require('../lib/pages');
|
|
@@ -85,10 +85,21 @@ const server = http.createServer(async (req, res) => {
|
|
|
85
85
|
}
|
|
86
86
|
});
|
|
87
87
|
|
|
88
|
-
server.listen(PORT, '127.0.0.1', () => {
|
|
88
|
+
server.listen(PORT, '127.0.0.1', async () => {
|
|
89
89
|
const addr = server.address();
|
|
90
90
|
const url = `http://127.0.0.1:${addr.port}`;
|
|
91
91
|
console.log(`ccakashic running at ${url}`);
|
|
92
92
|
console.log('Press Ctrl+C to stop');
|
|
93
|
-
|
|
93
|
+
|
|
94
|
+
let openUrl = url;
|
|
95
|
+
try {
|
|
96
|
+
const match = await findSessionForCwd(process.cwd());
|
|
97
|
+
if (match) {
|
|
98
|
+
openUrl = `${url}/project/${encodeURIComponent(match.projectRawName)}/session/${encodeURIComponent(match.sessionId)}#session-bottom`;
|
|
99
|
+
console.log(`Detected session for ${process.cwd()} → opening at bottom`);
|
|
100
|
+
}
|
|
101
|
+
} catch (err) {
|
|
102
|
+
console.error('Failed to auto-detect session:', err.message);
|
|
103
|
+
}
|
|
104
|
+
openInBrowser(openUrl);
|
|
94
105
|
});
|
package/lib/discover.js
CHANGED
|
@@ -150,4 +150,72 @@ async function listSessions(projectDir) {
|
|
|
150
150
|
return sessions;
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
-
|
|
153
|
+
function readCwdFromSession(filePath) {
|
|
154
|
+
return new Promise((resolve) => {
|
|
155
|
+
const rl = readline.createInterface({
|
|
156
|
+
input: fs.createReadStream(filePath, { encoding: 'utf-8' }),
|
|
157
|
+
crlfDelay: Infinity,
|
|
158
|
+
});
|
|
159
|
+
|
|
160
|
+
let found = null;
|
|
161
|
+
rl.on('line', (line) => {
|
|
162
|
+
if (found) return;
|
|
163
|
+
try {
|
|
164
|
+
const obj = JSON.parse(line);
|
|
165
|
+
if (obj.cwd) {
|
|
166
|
+
found = obj.cwd;
|
|
167
|
+
rl.close();
|
|
168
|
+
}
|
|
169
|
+
} catch {
|
|
170
|
+
// skip
|
|
171
|
+
}
|
|
172
|
+
});
|
|
173
|
+
|
|
174
|
+
rl.on('close', () => resolve(found));
|
|
175
|
+
rl.on('error', () => resolve(found));
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function latestSessionFile(projectDir) {
|
|
180
|
+
const files = fs.readdirSync(projectDir).filter(f => f.endsWith('.jsonl'));
|
|
181
|
+
if (!files.length) return null;
|
|
182
|
+
let best = null;
|
|
183
|
+
let bestMtime = 0;
|
|
184
|
+
for (const f of files) {
|
|
185
|
+
const mtime = fs.statSync(path.join(projectDir, f)).mtimeMs;
|
|
186
|
+
if (mtime > bestMtime) {
|
|
187
|
+
bestMtime = mtime;
|
|
188
|
+
best = f;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
return best ? { file: best, mtimeMs: bestMtime } : null;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
async function findSessionForCwd(cwd) {
|
|
195
|
+
// Pick the project whose cwd is the most specific (longest) match for the
|
|
196
|
+
// given cwd. A brand-new session in a specific subdir should win over an
|
|
197
|
+
// older, more-active ancestor project.
|
|
198
|
+
const projects = listProjects();
|
|
199
|
+
let bestMatch = null;
|
|
200
|
+
let bestLen = -1;
|
|
201
|
+
|
|
202
|
+
for (const project of projects) {
|
|
203
|
+
const latest = latestSessionFile(project.dir);
|
|
204
|
+
if (!latest) continue;
|
|
205
|
+
const projectCwd = await readCwdFromSession(path.join(project.dir, latest.file));
|
|
206
|
+
if (!projectCwd) continue;
|
|
207
|
+
|
|
208
|
+
const isMatch = cwd === projectCwd || cwd.startsWith(projectCwd + path.sep);
|
|
209
|
+
if (isMatch && projectCwd.length > bestLen) {
|
|
210
|
+
bestMatch = {
|
|
211
|
+
projectRawName: project.rawName,
|
|
212
|
+
sessionId: path.basename(latest.file, '.jsonl'),
|
|
213
|
+
};
|
|
214
|
+
bestLen = projectCwd.length;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return bestMatch;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
module.exports = { listProjects, listSessions, decodeDirName, findSessionForCwd, CLAUDE_DIR };
|
package/lib/html-generator.js
CHANGED
|
@@ -384,6 +384,9 @@ ${detailLayoutCSS()}
|
|
|
384
384
|
</nav>
|
|
385
385
|
<main class="chat-container" id="session-top">
|
|
386
386
|
${groupsHtml}
|
|
387
|
+
<div class="load-more-row">
|
|
388
|
+
<button class="load-more-btn" id="loadMoreBtn" type="button">Load more ↻</button>
|
|
389
|
+
</div>
|
|
387
390
|
<div id="session-bottom"></div>
|
|
388
391
|
</main>
|
|
389
392
|
</div>
|
|
@@ -407,6 +410,26 @@ function detailLayoutCSS() {
|
|
|
407
410
|
min-width: 0;
|
|
408
411
|
}
|
|
409
412
|
|
|
413
|
+
/* Load more (reload) button at the bottom of the thread */
|
|
414
|
+
.load-more-row {
|
|
415
|
+
display: flex;
|
|
416
|
+
justify-content: center;
|
|
417
|
+
margin: 24px 0 12px;
|
|
418
|
+
}
|
|
419
|
+
.load-more-btn {
|
|
420
|
+
padding: 8px 18px;
|
|
421
|
+
font-size: 0.85rem;
|
|
422
|
+
color: var(--text);
|
|
423
|
+
background: var(--bg-secondary);
|
|
424
|
+
border: 1px solid var(--border);
|
|
425
|
+
border-radius: 6px;
|
|
426
|
+
cursor: pointer;
|
|
427
|
+
transition: background 0.1s;
|
|
428
|
+
}
|
|
429
|
+
.load-more-btn:hover {
|
|
430
|
+
background: var(--bg-hover, var(--border));
|
|
431
|
+
}
|
|
432
|
+
|
|
410
433
|
/* Stats bar */
|
|
411
434
|
.stats-bar {
|
|
412
435
|
display: flex;
|
package/lib/template-assets.js
CHANGED
|
@@ -633,6 +633,23 @@ function getAppJS() {
|
|
|
633
633
|
el.innerHTML = renderMarkdown(el.textContent);
|
|
634
634
|
});
|
|
635
635
|
|
|
636
|
+
// Scroll to bottom when hash is #session-bottom. We re-scroll here (after
|
|
637
|
+
// markdown rendering) because the DOM height grows when markdown expands,
|
|
638
|
+
// making the browser's initial anchor scroll land in the wrong place.
|
|
639
|
+
if (window.location.hash === '#session-bottom') {
|
|
640
|
+
window.scrollTo(0, document.body.scrollHeight);
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
// Load more: reload the page to pick up any newly appended messages, then
|
|
644
|
+
// scroll back to the bottom.
|
|
645
|
+
var loadMoreBtn = document.getElementById('loadMoreBtn');
|
|
646
|
+
if (loadMoreBtn) {
|
|
647
|
+
loadMoreBtn.addEventListener('click', function() {
|
|
648
|
+
window.location.hash = 'session-bottom';
|
|
649
|
+
window.location.reload();
|
|
650
|
+
});
|
|
651
|
+
}
|
|
652
|
+
|
|
636
653
|
// Keyboard navigation: j/k to move between user messages
|
|
637
654
|
var msgEls = Array.from(document.querySelectorAll('.msg-user, .msg-assistant'));
|
|
638
655
|
var currentIdx = -1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccakashic",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Browse Claude Code session logs (~/.claude/projects/) as beautiful HTML in your browser — an Akashic Record of your Claude Code sessions",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ccakashic": "bin/ccakashic.js"
|