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

# tangent plugin scaffold

> Create new WASM plugin

Create a minimal plugin project in **Go**, **Python**, or **Rust** with tests and build scripts.

```bash theme={null}
tangent plugin scaffold --lang go --name my-plugin
# or:
tangent plugin scaffold --lang python --name my-plugin
# or:
tangent plugin scaffold --lang rust --name my-plugin
```

What you get:

* Plugin interface stub (`process_logs`)
* Test fixtures (`tests/`)
* WIT assets (`.tangent/wit`)
* `tangent.yaml` to compile, test, bench, and run the plugin.

Then run: `compile-wasm` → `test` → `bench` → `run`.
