Community | FOSS | Infinite Scale | marketplace | opensource | ownCloud | ownCloud Client | Product | Release | Updates

What’s New in ownCloud Web: A Summer of AI Extensions (and Two Admin Tools Worth Knowing About)

Eleven new oCIS Web extensions shipped this summer — AI summarizers, taggers, and a sensitive-data scanner, plus two long-requested admin tools. All AI features run through an operator-controlled proxy, so your LLM endpoint, your rules.
ownCloud Web: A Summer of AI Extensions

Over the past couple of months, the owncloud/web-extensions repository has quietly shipped a wave of first releases for ownCloud Infinite Scale (oCIS) Web. Most of them plug an LLM into some part of the Files experience: summarizing a folder, tagging a document, catching sensitive data before it goes out the door. A couple of others aren’t AI at all — they just fill in UI gaps oCIS has had for a while.

Here’s the whole wave in one place, plus how to actually get your hands on each one.

One architecture, nine extensions

Before getting into each one individually, it’s worth naming the pattern nearly all of them share, since it’s as much the story here as any single feature. Every AI extension in this batch routes requests through an ai-llm-proxy sidecar that the operator deploys and configures: browser → sidecar → LLM endpoint. The LLM API key lives only in the sidecar’s environment configuration and is injected server-side; it’s never present in the browser or in client-side storage. The sidecar validates the user’s existing oCIS session before forwarding anything, and several of the extensions additionally require the configured LLM endpoint to be same-origin with oCIS itself.

None of these extensions ship with a bundled AI provider. You point them at whatever OpenAI-compatible endpoint you choose, self-hosted or not. Setup for all of them follows the same oCIS web app loading process.

The extensions

AI Multi-Document Synthesizer — select 2–10 text or Markdown files and get back a synthesis of shared themes, differences, and action items. Files over 10,000 characters are truncated; the extension switches to a two-pass summarize-then-synthesize approach once combined input crosses 8,000 characters.

AI Sensitive Data Scanner (source) — a batch action that reads selected files (TXT, MD, PDF) and reports back categorized findings: PII, credentials, and confidential text. Findings are generated fresh on each scan rather than cached.

AI Document Summary (source) — adds a Summary sidebar panel and a Summarize context-menu action for PDF, TXT, and MD files, downloading the file, extracting its text, and returning a short overview plus key points.

AI Smart Collections Nav — clusters a user’s recently modified files by topic in the global app switcher, so a returning user sees “Invoices” or “Contracts” instead of a flat recent-files list. It’s a read-only, derived view recomputed on load; nothing gets renamed or tagged on the backend.

AI Folder README Generator — a context-menu action that writes a README.md for a folder based on an LLM’s read of its top-level contents (sampling up to 10 files, 12,000 characters total). Asks before overwriting an existing README.

AI Quick Draft Creator — adds “Draft from description” to the upload menu; describe what you need, pick Markdown or plain text, and a new file gets written to the current folder. Hides itself automatically if no LLM endpoint is configured.

AI Smart File Tagger — suggests 3–5 tags for a selected file based on its content (or just filename/MIME type for unsupported formats), applied additively through the Graph API so existing tags aren’t overwritten.

AI Data Insights Sidebar — reads a CSV or TSV file (client-side, up to 200 rows, 5 MB cap) and generates 2–3 natural-language observations about the data. Shows a consent disclosure before any file content is sent to the configured LLM.

AI Folder Brief Sidebar (source) — generates a folder overview (summary, files by type, recent changes) from the folder’s file listing rather than by downloading file contents. Falls back to a static file-type breakdown if no LLM is configured.

A further three shipped in the same window, described here from their Marketplace listings: AI Image Alt Text Sidebar generates AI alt text for images from a sidebar panel and context action, useful for teams with WCAG or accessibility obligations; Chat With File opens a conversational interface scoped to a single file’s content; and AI Version Changelog Sidebar turns raw version history into a human-readable summary of what changed between file versions.

Two non-AI additions worth their own mention

Group Management (source) fills a real gap: oCIS has shipped without a dedicated UI for managing groups, and admins have had to go through the LibreGraph API directly. This extension adds a proper app-switcher entry for creating, renaming, deleting, and managing group membership, including bulk operations with per-user success/failure reporting. Two honest limitations: no nested groups (oCIS doesn’t support them at the backend level) and no group descriptions (the backend doesn’t persist that field).

File Comments (source) adds a Markdown-capable comment panel to files and folders, stored as custom WebDAV properties rather than requiring a separate database. Worth flagging plainly for anyone evaluating this for a multi-user environment: the extension’s own documentation states that comment-author restrictions (only the author can edit or delete their own comment) are currently enforced in the UI only, not on the server side. Treat this as a known, documented scope limitation of a v0.1.0 release rather than a discovered flaw, and don’t rely on it as an access-control boundary until that’s addressed upstream.

Getting these extensions

Nine of the eleven extensions above are already listed in the ownCloud Marketplace’s Web Extensions catalog, which doubles as a drop-in oCIS app-store feed — add the repository feed URL to your oCIS Web configuration and they’ll show up in the in-product App Store. The remaining extensions (Multi-Document Synthesizer, Smart Collections Nav, Folder README Generator, Quick Draft Creator, Smart File Tagger, and Data Insights Sidebar) aren’t in the Marketplace catalog yet.
Install the extensions by downloading the release artifact from GitHub and extracting it into your oCIS apps folder, per the web app loading instructions.
General oCIS documentation is at doc.owncloud.com.

ownCloud

September 8, 2026

Read now: