file viewer, docs, ws: add image/media preview path, projects doc, ws wiring
Nightly Build / build (push) Successful in 6m44s

Show file gains image and video display for capable agents. Docs add
projects.md and update index. Wire ws file-watch in project-board.
Minor fs tool and CLAUDE.md updates.
This commit is contained in:
2026-07-22 18:52:03 +01:00
parent f34f800e5c
commit e70c4a90f3
8 changed files with 176 additions and 30 deletions
+6 -7
View File
@@ -222,17 +222,16 @@ export class ProjectBoardSection extends LightElement {
_renderTabs() {
const tab = (id, icon, label) => html`
<li class="nav-item">
<button class="nav-link ${this._tab === id ? 'active' : ''}" @click=${() => this._selectTab(id)}>
<i class="bi ${icon} me-1"></i>${label}
</button>
</li>
<button class="project-tab ${this._tab === id ? 'project-tab--active' : ''}"
@click=${() => this._selectTab(id)}>
<i class="bi ${icon}"></i>${label}
</button>
`;
return html`
<ul class="nav nav-tabs px-3">
<div class="project-tab-bar">
${tab('files', 'bi-folder2-open', t('projects.tabs.files'))}
${tab('sharing', 'bi-people', t('projects.tabs.sharing'))}
</ul>
</div>
`;
}