Add-ons

Ready-to-run packages built on Devframe: built-in devframes you can run, compose, or learn from, and wire services that share one node-side capability across every devframe on a host.

Ready-to-run packages built on Devframe, in two families:

  • Devframes — complete built-in devtools (@devframes/plugin-*). Run one standalone, compose several into your own DevTools, or read one as a reference for building your own.
  • Services — wire services (@devframes/service-*): one node-side capability installed once per host and consumed by every devframe and RPC client, without re-bundling it.

Devframes

Complete tools, each picking its own UI framework yet sharing one node-side API — RPC, shared state, and connectDevframe.

DevframeUI frameworkWhat it does
Data InspectorVueQuery live server-side objects with jora.
Devframe InspectorVueBrowse RPC, shared state, and agent exposure.
Open Graph ViewerVueInspect Open Graph / Twitter metadata and card previews.
Accessibility InspectorSolidRun axe-core; list WCAG violations.
GitReact (Next.js)Repository dashboard: status, graph, branches, diffs.
TerminalsSvelteStream output and run interactive PTY shells.
Code ServerVueRun VS Code in the browser.
AssetsVueBrowse, preview, upload, rename, and delete files.

Services

Shared node-side capabilities other devframes install and consume — see Cross-Devframe Services for the mechanism, and the Node-Side API reference for the host API.

ServiceScopeWhat it does
Open (@devframes/service-open)devframes:service:openOpen files in an editor or the OS explorer, with workspace-root containment.
Git (@devframes/service-git)devframes:service:gitTyped read/write git operations over RPC on one repo.
Shiki (@devframes/service-shiki)devframes:service:shikiNode-side Shiki syntax highlighting, cached and dual-theme.

Running a built-in devframe

Most built-in devframes publish a bin:

pnpx @devframes/plugin-inspect      # the Devframe Inspector, standalone
pnpx @devframes/plugin-og           # inspect Open Graph metadata and social cards
pnpx @devframes/plugin-git          # the Git dashboard against the current repo
pnpx @devframes/plugin-assets       # manage the files under <cwd>/public

Each also exports a create…Devframe factory; see each page for options.