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
+3 -3
View File
@@ -52,7 +52,7 @@ pub const USER_MEMORY_ROOT: &str = "user-memory";
pub const SHARED_MEMORY_ROOT: &str = "shared-memory";
/// Which memory store a path resolves to.
pub(crate) enum MemScope {
pub enum MemScope {
/// `user-memory/…` → the caller's own pool (`ToolContext::pool`).
User,
/// `shared-memory/…` → the shared system pool.
@@ -61,7 +61,7 @@ pub(crate) enum MemScope {
/// A path that falls inside the virtual memory namespace: the store it belongs to
/// and the note key **relative to that store's root** (the root prefix stripped).
pub(crate) struct MemRef {
pub struct MemRef {
pub scope: MemScope,
pub rel: String,
}
@@ -75,7 +75,7 @@ pub(crate) struct MemRef {
/// disk path. The tail is then normalized (resolving `.`/`..`) and clamped at the
/// store root, so a memory path stays within its store and an absolute path is
/// always disk.
pub(crate) fn classify_memory(user_path: &str) -> Option<MemRef> {
pub fn classify_memory(user_path: &str) -> Option<MemRef> {
let mut parts = user_path.trim_start_matches("./").splitn(2, ['/', '\\']);
let scope = match parts.next()? {
USER_MEMORY_ROOT => MemScope::User,
+54 -12
View File
@@ -1,17 +1,20 @@
use std::sync::Arc;
use serde_json::{Value, json};
use sqlx::SqlitePool;
use core_api::user_fs::SharedFs;
use crate::chat_hub::ChatHub;
use crate::db::memory_docs;
use crate::events::{GlobalEvent, ServerEvent};
use crate::session::handler::{InterfaceTool, ToolFuture};
use crate::tools::fs;
use crate::tools::tool_names::SHOW_FILE_TO_USER;
/// Build a `show_file_to_user` InterfaceTool bound to a `ChatHub`, a source and the
/// caller's [`SharedFs`] (their per-user filesystem view).
/// Build a `show_file_to_user` InterfaceTool bound to a `ChatHub`, a source, the
/// caller's [`SharedFs`] (their per-user filesystem view) and the two memory
/// pools (the caller's own + the shared system one).
///
/// Injected only for SPA clients (web copilot + mobile) at the WebSocket entry
/// point, so Telegram — which has its own `send_attachment` — never sees it.
@@ -19,11 +22,20 @@ use crate::tools::tool_names::SHOW_FILE_TO_USER;
/// The path is resolved through the caller's own workspace (`resolve_view_path`):
/// `~/…`, `shared/{X}/…`, `projects/{O}/{S}/…`, a bare relative path, or a
/// container-absolute `/root/…` — anything outside the container view is refused.
/// A path under a memory root (`user-memory/…`, `shared-memory/…`) is a virtual
/// note instead: it is looked up in `memory_docs` on the matching pool — the
/// viewer's `GET /api/file` applies the same routing, so it round-trips.
/// It then emits a `ServerEvent::OpenFile` carrying the **canonical agent path**, so
/// the file-viewer page fetches the same file back through `/api/file` (which applies
/// the identical per-user resolution). The frontend renders every kind in the viewer
/// (HTML live in an origin-isolated iframe; LaTeX compiled to PDF server-side).
pub fn make_tool(hub: Arc<ChatHub>, source: String, fs: SharedFs) -> InterfaceTool {
/// the file-viewer page fetches the same file back through `/api/file`. The
/// frontend renders every kind in the viewer (HTML live in an origin-isolated
/// iframe; LaTeX compiled to PDF server-side).
pub fn make_tool(
hub: Arc<ChatHub>,
source: String,
fs: SharedFs,
user_pool: SqlitePool,
shared_pool: SqlitePool,
) -> InterfaceTool {
let definition = json!({
"type": "function",
"function": {
@@ -34,7 +46,8 @@ pub fn make_tool(hub: Arc<ChatHub>, source: String, fs: SharedFs) -> InterfaceTo
to PDF automatically on the server). HTML files open in a \
new browser tab. Use this to surface a file you created or \
found so the user can look at it directly. One file per call. \
The file must already exist on disk. \
The file must already exist on disk — or as a memory note \
(`user-memory/…`, `shared-memory/…`). \
IMPORTANT for LaTeX: always pass the `.tex` source, never a \
pre-built `.pdf` of a document you have the `.tex` for. The \
`.tex` is compiled on the server and the view live-reloads \
@@ -49,8 +62,9 @@ pub fn make_tool(hub: Arc<ChatHub>, source: String, fs: SharedFs) -> InterfaceTo
"type": "string",
"description": "Path of the file to show, in your own workspace: relative to your \
home (e.g. `report.md` or `~/report.md`), a `shared/<folder>/…` or \
`projects/<owner>/<slug>/…` path, or an absolute container path \
(`/root/…`). Paths outside your workspace are refused."
`projects/<owner>/<slug>/…` path, a memory note \
(`user-memory/…`, `shared-memory/…`), or an absolute container \
path (`/root/…`). Paths outside your workspace are refused."
}
},
"required": ["path"]
@@ -59,14 +73,42 @@ pub fn make_tool(hub: Arc<ChatHub>, source: String, fs: SharedFs) -> InterfaceTo
});
let handler = Arc::new(move |args: Value| -> ToolFuture {
let hub = Arc::clone(&hub);
let source = source.clone();
let fs = fs.clone();
let hub = Arc::clone(&hub);
let source = source.clone();
let fs = fs.clone();
let user_pool = user_pool.clone();
let shared_pool = shared_pool.clone();
Box::pin(async move {
let path = args["path"]
.as_str()
.ok_or_else(|| anyhow::anyhow!("show_file_to_user: missing required parameter 'path'"))?;
// Virtual memory namespace → a `memory_docs` note, not a disk file.
// The viewer serves it through the same routing (see GET /api/file),
// so confirming existence is all that's needed here.
if let Some(mem) = fs::classify_memory(path) {
if mem.rel.is_empty() {
anyhow::bail!("show_file_to_user: '{path}' is a memory folder, not a file");
}
let (pool, root) = match mem.scope {
fs::MemScope::User => (&user_pool, fs::USER_MEMORY_ROOT),
fs::MemScope::Shared => (&shared_pool, fs::SHARED_MEMORY_ROOT),
};
let exists = memory_docs::get(pool, &mem.rel).await
.map_err(|e| anyhow::anyhow!("show_file_to_user: {e}"))?
.is_some();
if !exists {
anyhow::bail!("show_file_to_user: file not found: {path}");
}
let display = format!("{root}/{}", mem.rel);
hub.emit(GlobalEvent {
source: Some(source),
session_id: None,
event: ServerEvent::OpenFile { path: display.clone() },
});
return Ok(format!("Opened {display} in the user's viewer."));
}
// Resolve against the caller's workspace snapshot: gives the host path to
// stat and the canonical agent path the viewer will fetch back.
let user_fs = fs.load();