Shortcuts you invent, rules you write, gestures you own - all still just data

Claude-Session: https://claude.ai/code/session_01Ms2FbjQy31TVf3CEvQhGM8
This commit is contained in:
Gabriel Brown
2026-08-25 01:51:59 -04:00
parent f9e5d3f470
commit 06c53d6c21
48 changed files with 4749 additions and 140 deletions
@@ -14,7 +14,11 @@ ShellRoot {
count: hits.length,
top: hits.length > 0 ? hits[0].label : "",
topPage: hits.length > 0 ? hits[0].page : "",
labels: hits.slice(0, 6).map(hit => hit.label)
// "" for a result that names no tab, which is most of them.
// The sidebar routes those exactly as it always did.
topSection: hits.length > 0 ? String(hits[0].section ?? "") : "",
labels: hits.slice(0, 6).map(hit => hit.label),
pages: hits.slice(0, 6).map(hit => hit.page)
});
}
}