> ## Documentation Index
> Fetch the complete documentation index at: https://aidocs.zorid.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Status bar

> The status bar core plugin renders the bottom workspace bar with word count, indexing state, and items contributed by other plugins through the Platform API.

The status bar plugin owns the bottom status strip on desktop (and an equivalent strip on mobile when present) and provides a registration API for other plugins to contribute items.

## v0 scope

* Active file word count and character count.
* Cursor position (line:column).
* Indexing state indicator (idle / indexing / failed).
* Vault path indicator.
* Public registration API for plugin-contributed items (text, icon, click handler).

## Public API

```ts theme={null}
const statusBar = await ctx.plugins.getApi("zorid.core.status-bar");

ctx.register.dispose(
  statusBar.addItem({
    id: "my-plugin.sync",
    text: "↑ 3 unsynced",
    icon: "cloud-arrow-up",
    onClick: () => ctx.commands.run("my-plugin.sync-now"),
  })
);
```

<Card title="Source" icon="github" href="https://github.com/zorid-app/Zorid/blob/main/docs/core-plugins/06-status-bar.md">
  Full status-bar plan on GitHub.
</Card>
