Built-In Example Plugins

Map first-party plugin binaries and fixtures to user and author goals.

The repository includes plugin binaries that are both useful tools and reference implementations. Operators can use these to try real plugin behavior. Authors can read them to see the smallest practical shape for each plugin category.

If you are only trying to install and run a plugin, start with Install and Use Plugins. If you are writing one, read the relevant author guide after finding the closest example here.

Operator-Facing Plugins

PluginPathUse it for
restish-csvcmd/restish-csv/main.goRender array responses as CSV.
restish-bulkcmd/restish-bulk/main.goManage API collections as local files.
restish-mcpcmd/restish-mcp/main.goServe registered APIs as MCP tools.
restish-pkcs11cmd/restish-pkcs11/main.goSign mTLS handshakes with PKCS#11-backed keys.

These binaries are built like normal Go commands. Once installed where Restish can discover them, they participate in the same plugin lifecycle as third-party plugins.

Author Fixtures

FixturePathUse it for
Multipurpose test plugininternal/cli/testdata/testplugin/main.goMinimal command, hook, and TLS signer behavior in tests.

Fixtures are intentionally small and test-oriented. Use them to understand the protocol shape, then use the first-party binaries above for production-style examples.