mirror of
https://github.com/getpaseo/paseo.git
synced 2026-09-14 20:36:44 +08:00
229f3cd5a8
Accept plugin requirements against the runtime version or its stable core while preserving the legacy version boundary. Validate all example manifests, correct the ACP example metadata, and prepare plugin author documentation for the beta.
Linear plugin example
This example adds Attach Linear issue to the composer. Search by issue identifier
or title, then send a stable issue snapshot to the agent.
Set a personal API key in the daemon environment:
export LINEAR_API_KEY="lin_api_..."
Start your daemon with that environment variable set. Then turn on Enable plugins in Settings → Plugins and install the example:
paseo plugin add /absolute/path/to/paseo/plugin-examples/linear
paseo plugin ls linear
Use paseo plugin reload linear after source edits. Changing the API key requires restarting the
daemon with the new environment; installing or reloading plugin source does not.
The split entry point demonstrates the complete attachment-source pattern:
- define the validated search RPC and attachment metadata in
shared/issues.ts; - handle it in the daemon subprocess from
server/issues.tsandindex.server.ts; - register the attachment source from
index.client.ts; - keep credentials and vendor API calls out of the client bundle.