@assemblyline-agents/soundcloud 2.0.0 → 3.1.0
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.
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/package.json +3 -4
- package/skills/soundcloud/SKILL.md +0 -11
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Official Assembly Line SoundCloud connection plugin.
|
|
4
4
|
|
|
5
|
-
It connects agents to SoundCloud through its public API: the package exports `defineSoundCloudConnection(options)`, an OpenAPI-backed connection that turns SoundCloud API operations into agent tools, plus an `assemblyLinePlugin` module so the Assembly Line CLI and compiler can discover the plugin's connection metadata.
|
|
5
|
+
It connects agents to SoundCloud through its public API: the package exports `defineSoundCloudConnection(options)`, an OpenAPI-backed connection that turns SoundCloud API operations into agent tools, plus an `assemblyLinePlugin` module so the Assembly Line CLI and compiler can discover the plugin's connection metadata.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@assemblyline-agents/soundcloud",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -9,12 +9,11 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@assemblyline-agents/core": "
|
|
12
|
+
"@assemblyline-agents/core": "3.1.0"
|
|
13
13
|
},
|
|
14
14
|
"description": "Official Assembly Line SoundCloud connection plugin.",
|
|
15
15
|
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
"skills"
|
|
16
|
+
"dist"
|
|
18
17
|
],
|
|
19
18
|
"engines": {
|
|
20
19
|
"node": ">=22.19.0"
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: soundcloud
|
|
3
|
-
description: Search and manage configured SoundCloud tracks, playlists, users, likes, follows, reposts, and comments.
|
|
4
|
-
---
|
|
5
|
-
# SoundCloud
|
|
6
|
-
|
|
7
|
-
Use the `soundcloud` connection to search and inspect tracks, playlists, users, and the authenticated account. Resolve the current resource before proposing a mutation.
|
|
8
|
-
|
|
9
|
-
The deployment owner registers the SoundCloud application and supplies its client ID, client secret, and exact redirect URI. OAuth tokens remain host-side. The scaffold starts read-only; playlist edits, likes, follows, reposts, comments, metadata changes, and deletes require write access with the configured approval gate.
|
|
10
|
-
|
|
11
|
-
Direct track upload is not exposed by the initial plugin because SoundCloud requires multipart binary transfer. Do not work around that boundary by placing audio data or credentials in prompts.
|