@signalsandsorcery/plugin-sdk 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +18 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Plugin SDK for building custom generator plugins for [Signals & Sorcery](https://signalsandsorcery.com) — an AI-powered music production workstation.
4
4
 
5
+ <p align="center">
6
+ <img src="assets/signals-and-sorcery.png" alt="Signals & Sorcery" width="420" />
7
+ </p>
8
+
9
+ > Part of the **[Signals & Sorcery](https://signalsandsorcery.com)** ecosystem.
10
+
5
11
  Plugins extend the Loop Workstation with custom input generators that create MIDI patterns, manage audio samples, generate AI audio textures, or combine all three. Each plugin gets its own accordion section in the workstation UI and a scoped `PluginHost` API for interacting with tracks, MIDI, audio, and more.
6
12
 
7
13
  ## Installation
@@ -363,6 +369,18 @@ All errors are `PluginError` instances with a typed `code` property:
363
369
  - **Secret isolation** — Each plugin's secrets are encrypted and scoped per plugin
364
370
  - **Track limits** — 16 tracks per plugin per scene (configurable)
365
371
 
372
+ ## The Signals & Sorcery Ecosystem
373
+
374
+ - **[Signals & Sorcery](https://signalsandsorcery.com)** — the flagship AI music production workstation
375
+ - **[sas-synth-plugin](https://github.com/shiehn/sas-synth-plugin)** — AI MIDI generation with Surge XT
376
+ - **[sas-sample-plugin](https://github.com/shiehn/sas-sample-plugin)** — Sample library browser with time-stretching
377
+ - **[sas-audio-plugin](https://github.com/shiehn/sas-audio-plugin)** — AI audio texture generation
378
+ - **[DeclarAgent](https://github.com/shiehn/DeclarAgent)** — Declarative agent + MCP transport for S&S
379
+
380
+ <p align="center">
381
+ <a href="https://signalsandsorcery.com">signalsandsorcery.com</a>
382
+ </p>
383
+
366
384
  ## License
367
385
 
368
386
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signalsandsorcery/plugin-sdk",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Plugin SDK for Signals & Sorcery — types, components, and hooks for building generator plugins",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",