Artifact Sharing & External Delivery
When your Agent finishes a web page, report, PDF, or a multi-file site, Myrm can turn it into a read-only share link that anyone can open in a browser — no account, no install, no login. It is the final step of the “say → do → see → share” delivery loop.One-Click Share Links
From the artifact card, click Share to generate a public link instantly:- Zero signup for recipients — the link opens directly in any browser
- Read-only by design — recipients can view, not edit; editing happens inside Myrm
- Optional password gate — protect sensitive content (weekly reports, contract drafts) behind a password
- TTL auto-expiry — links live from 1 to 30 days (configurable) and then stop working automatically
Immutable Version Snapshots
A share link is always locked to a specific immutable version of the artifact:- The content never drifts — later edits to the artifact do not pollute a link you already sent
- Each snapshot is fingerprinted by SHA-256, so shared content is provably the exact bytes at share time
- If the materialized bundle is removed, it is automatically re-materialized from the immutable snapshot on next access
Multi-File Bundles
Myrm automatically collects everything a page needs into a single share bundle:- HTML + CSS + JavaScript + images discovered from the real reference chain — not just the entry file
- Nested directories are preserved, so sub-resources resolve correctly
- Inline styles with single-quoted URLs are handled correctly
- Lockfiles and build artifacts (
package-lock.json,node_modules) are excluded from bundles - Documents and PDFs are served with correct media types even when the vault object has no filename extension — a Chinese-named document renders as Markdown, a PDF opens as a PDF
Share Lifecycle — Revoke, Status & Audit
Share links are fully manageable and revocable at any time — for both artifacts and conversations:- One-click revoke — revoking a link makes it return
404 Link Revokedimmediately, with no grace period and no cache bypass - Revoked password-protected links — lifecycle checks run before the password gate, so a revoked protected link shows the dead-link page to fresh visitors, never a password prompt
- Revoked tokens never resurrect — the current
share_token_fingerprintand a persistedshare_revoked_fingerprintsset ensure a revoked link stays 404 forever, even if you share the same conversation again later - Search-engine blocking — every public share response carries
X-Robots-Tag: noindex, nofollow+Cache-Control: no-store+Referrer-Policy: no-referrer, so a revoked link cannot be reached through cached or indexed copies - Live status in the UI — the share dialog shows the current state (
unshared/revoked/active/password_protected), the link URL, and remaining expiry every time you open it; after revoking, the dialog stays open showing “revoked” - Revocation audit log — every revoke is recorded for traceability
- Conversation deletion cascades — deleting the source conversation immediately invalidates its share (
404 Content Unavailable)
Security Design
Deployment Modes
Artifact sharing works identically across all three deployment modes — the shared bundle is served from your own sandbox, so data never leaves your instance:- Local WebUI — self-hosted, links served from your machine
- Tauri Desktop — served from your desktop instance
- Cloud-hosted — served from your dedicated sandbox via the control plane
Honest Boundaries
- Read-only sharing is a deliberate choice: external recipients view only, and collaborative editing is out of scope for the single-user sandbox architecture
- Revocation is final, not live-collaborative —
noindex/no-storestop indexing at the source, but copies already downloaded by recipients cannot be recalled - Password gate is single-factor — it prevents accidental leakage, not enterprise-grade access control
- Password-protected links require a new password after re-sharing — passwords are never stored (HMAC-derived), so after revoking, a fresh share needs a new password; this is deliberate so old passwords cannot rebuild old links