fused-mcp
01MCP server Claude CodeCodexCursor +2
MCP server "fused-mcp" as configured in fusedio/fused-mcp. Runs locally from the fused-mcp Python package.
MCP server Claude CodeCodexCursor +2
MCP server "fused-mcp" as configured in fusedio/fused-mcp. Runs locally from the fused-mcp Python package.
Plugin Claude Code
Skills for authoring fused-render views and custom preview templates.
Plugin Claude Code
Skills for using and authoring fused-render: running the local explorer and opening views, authoring HTML pages with a fused.runPython() bridge to local Python, URL-synced params, file IO helpers, custom preview templates, the machine-wide file index, the AI API (fused.ai text/streaming, local models, image…
Skill Claude CodeCodex
Use when adding, editing, or vendoring a helper in fusedrender/templates/shared/ — a module both built-in templates AND arbitrary user .py files need one copy of (env facts, a stdlib API client). Covers the stdlib-only constraint, why it must never import fusedrender, the sibling-import-by-path rule, the two…
Skill Claude CodeCodex
Use when adding, removing, or swapping a model in one of the curated suggested-model lists in fusedrender/ai/catalog.py — the AI Models page's shortlists. Covers the two id shapes (repo id vs. GGUF filename), publishing the new model to our own mirror, and verifying the mirror actually holds it before shipping.
Skill Claude CodeCodex
Use when cutting a new fused-render release, bumping the version, or creating a release tag — bumps version, lands it on protected main via a bump PR, then tags vX.Y.Z and pushes the tag to trigger the DMG build/release workflow.
Skill Claude CodeCodex
Use when setting up a fused-render checkout or git worktree for the first time — before running pytest, the dev server, or any daemon — so tests and the server actually work instead of silently failing on missing deps or an unbuilt React shell.
Skill Claude CodeCodex
Call an AI model from a fused-render page or .py file — fused.ai text and streaming, .image, .video, .transcribe, .embed, .models, and import fusedai. Use when a page needs a model, or an AI call rejects (aiunavailable, modelloading, timeout, stalled).
Skill Claude CodeCodex
Design the optional icon.svg for a fused-render app — the file the shell shows as the app's sidebar glyph and browser-tab favicon. Use when the user asks for an app icon, logo, favicon or glyph, or wants to add, change or fix icon.svg.
Skill Claude CodeCodex
Author .html views and .py data files for fused-render — the fused.runPython() bridge, URL-synced params, file IO, preview mode. Use when creating, editing or debugging a view, a data file or a preview template; when a view renders blank or shows a traceback overlay; or on any mention of…
Skill Claude CodeCodex
Give a fused-render app folder a resident daemon the server supervises — exempt from idle-retire, opt-in autostart. Use when a folder must keep running after its page closes, hold a connection or native tray UI, or when a warm worker "keeps dying" after 15 minutes idle; covers [tool.fused-render.app] and fused.daemon..
Skill Claude CodeCodex
Record the screen, record the microphone, or grab a screenshot natively from a fused-render page — fused.capture.screen/audio/screenshot/sources. Use when a page records or captures anything, or a capture option is refused on this platform.
Skill Claude CodeCodex
Register a custom preview template so files of an extension render with your own template — the /.fused-render layout, registry.json mode lists, and mode. Use when the user wants their own viewer for a file type, or to override/reorder template modes.
Skill Claude CodeCodex
Read fused-render's machine-wide file index instead of walking the filesystem — the fused.fileIndex.search/query bridge and a copy-paste duckdb reader for bulk Python. Use for a file search box, a disk-usage or file-type breakdown, or SQL over the filesystem.
Skill Claude CodeCodex
Work that outlives one fused.runPython call — the 60 s executor timeout and the ways around it, plus fused.trackJob reporting into the shell's download manager from the page and from a detached worker. Use on a timeout, or when a progress row goes stalled.
Skill Claude CodeCodex
Light/dark theming for a fused-render view — data-fused-theme="shell", the token rules, and colours handed to canvas/charts/maplibre. Use when a view must follow the app's appearance or looks wrong in the opposite one.
Skill Claude CodeCodex
Open and run a fused-render project — launching the FusedRender desktop app, opening files and views, browsing the filesystem. Use when the user wants to open, run or show a project or view rather than author one.
Plugin Claude Code
Fused plugins for Claude Code.
Plugin Claude Code
Skills for working with Fused as a Claude Code plugin: usage/guide skills for setting up Fused and building projects end-to-end (guide, setup, infra, cli, projects, execute, verify, storage, widgets, feedback). Load with claude --plugin-dir .
Skill Claude CodeCodex
Reference for the fused CLI — environment management, file storage, secrets, code execution, and infrastructure commands. Use when writing or explaining shell commands that invoke fused, or when helping users set up, switch between, or provision environments. If the commands are part of building or running a project…
Skill Claude CodeCodex
Best practices for running code through fused's executecode tool. Use when writing or reviewing any mcpopenfusedexecutecode call — covers how to structure user code, choose a data library, handle results, and write outputs to the file store. For security scanning, spec checks, and testing see fused-verify. If this is…
Skill Claude CodeCodex
Show the human a real browser UI — to ask a question, get an approval/decision, or review a plan — built from Fused's JSON-UI primitives and opened with fused widget open (one-shot — inline --config or a .json file) or the parley (widget push/widget watch, standing). Use in Claude Code whenever a structured choice…
Skill Claude CodeCodex
Entry-point router for the Fused skills in this repo. Use when a user asks how to get started with, set up, or install Fused, how to build a project or UDF, how to get a widget UI / dashboard out of Fused, or is unsure which Fused skill to load. Maps a goal to the specific skill(s) to read next.
Skill Claude CodeCodex
Authoring standalone HTML artifacts — scripts/ /main.html documents that Fused and Flow serve full-bleed and wire to a window.fused runtime (callUdf / runSql / params). Use when the output of a project is a bespoke interactive HTML page — a custom chart, a form, a report, a small app — that calls UDFs and runs SQL…