-
Notifications
You must be signed in to change notification settings - Fork 0
chore(registry): publish marketplace registry update #269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "schema_version": 1, | ||
| "id": "aac-encoder", | ||
| "name": "AAC Encoder", | ||
| "version": "0.1.0", | ||
| "node_kind": "aac_encoder", | ||
| "kind": "native", | ||
| "description": "AAC-LC audio encoder using FDK AAC (Fraunhofer). Accepts 48 kHz mono or stereo f32 PCM audio, outputs AAC-LC encoded stereo frames. Mono input is automatically upmixed. Requires libfdk-aac.so.2 at runtime.", | ||
| "license": "MPL-2.0", | ||
| "homepage": "https://github.com/streamer45/streamkit", | ||
| "entrypoint": "libaac_encoder.so", | ||
| "bundle": { | ||
| "url": "https://github.com/streamer45/streamkit/releases/download/plugin-aac-encoder-v0.1.0/aac-encoder-0.1.0-bundle.tar.zst", | ||
| "sha256": "74777d4d70037fcae10d87a4dded5d4cafddd1dc7cad9b1c0bbe623816937a26", | ||
| "size_bytes": 368918 | ||
| }, | ||
| "models": [] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| untrusted comment: signature from minisign secret key | ||
| RUQ/85JEqYXEgcOugclZrkJHOzPbcKFtvzi5UdGQrQQ1o3p1OGts9+FlJGqXP70Mk24xyiAHFJDU2P6qPCRibHCyyAe3OCV3EQk= | ||
| trusted comment: timestamp:1775589110 file:manifest.json hashed | ||
| mHqZIKKrjXfiujEsSgJorN90wlR/oHnag86Ymmorl6gJdTp1ln90c3jRCx4/CsPYvEvO7fJ2l/jcoz2p6PA5Cg== |
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚩 Pre-existing: supertonic plugin also missing from docs index The Was this helpful? React with 👍 or 👎 to provide feedback. Debug |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "schema_version": 1, | ||
| "id": "aac-encoder", | ||
| "name": "AAC Encoder", | ||
| "version": "0.1.0", | ||
| "node_kind": "aac_encoder", | ||
| "kind": "native", | ||
| "description": "AAC-LC audio encoder using FDK AAC (Fraunhofer). Accepts 48 kHz mono or stereo f32 PCM audio, outputs AAC-LC encoded stereo frames. Mono input is automatically upmixed. Requires libfdk-aac.so.2 at runtime.", | ||
| "license": "MPL-2.0", | ||
| "homepage": "https://github.com/streamer45/streamkit", | ||
| "entrypoint": "libaac_encoder.so", | ||
| "bundle": { | ||
| "url": "https://github.com/streamer45/streamkit/releases/download/plugin-aac-encoder-v0.1.0/aac-encoder-0.1.0-bundle.tar.zst", | ||
| "sha256": "74777d4d70037fcae10d87a4dded5d4cafddd1dc7cad9b1c0bbe623816937a26", | ||
| "size_bytes": 368918 | ||
| }, | ||
| "models": [] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| untrusted comment: signature from minisign secret key | ||
| RUQ/85JEqYXEgcOugclZrkJHOzPbcKFtvzi5UdGQrQQ1o3p1OGts9+FlJGqXP70Mk24xyiAHFJDU2P6qPCRibHCyyAe3OCV3EQk= | ||
| trusted comment: timestamp:1775589110 file:manifest.json hashed | ||
| mHqZIKKrjXfiujEsSgJorN90wlR/oHnag86Ymmorl6gJdTp1ln90c3jRCx4/CsPYvEvO7fJ2l/jcoz2p6PA5Cg== |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Missing required docs page and index.md listing for aac-encoder plugin
The AGENTS.md checklist under "Adding an official plugin" requires: "Docs: add/update the plugin page under
docs/src/content/docs/reference/plugins/and list it indocs/src/content/docs/reference/plugins/index.mdif applicable." This PR publishes the aac-encoder to the registry but does not include adocs/src/content/docs/reference/plugins/plugin-native-aac-encoder.mdpage (every other plugin in the registry except supertonic has one), nor does it add aac-encoder to the plugin listing atdocs/src/content/docs/reference/plugins/index.md:17-28(which still says "Official plugins (10)" and omits the new plugin).Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.
Debug
Playground