Python — real code
A folder, a manifest, an entry script
Arbitrary code in its own process, talking to the app over JSON-RPC. Plugins target one pinned Python 3.12 the app carries itself, so a plugin written once behaves the same on every platform.
from xverb import Plugin, table
plugin = Plugin("com.example.zip")
@plugin.viewer("zip.list", "Contents", extensions=["zip"])
def view(url):
... # read_file works on any file system
plugin.run()



