---
title: "plugins"
description: "plugins is a Luau API namespace of the Zero engine, holding 1 function: status."
section: "API Reference"
slug: "api-plugins"
canonical: "https://origozero.ai/docs/api-plugins"
updated: "2026-09-27T17:43:57.269360171+00:00"
tags: ["api", "reference"]
---

# plugins

The `plugins` namespace: 1 function.

## plugins/status {#plugins-status}

```lua
plugins.status() -> table
```

What the plugin host loaded. `started` is whether it has run; `plugins` lists each one with `loaded`, its `scope` and `storage`, and the `namespaces` it registered, or the `error` that refused it. In the browser build `jspi` names what the browser offers of the WebAssembly feature every plugin runs its host calls through.

**Returns** `table` — The host's report

```lua
local report = plugins.status()
print(report.started, #report.plugins)
```
