Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
openclaw-soundcloud-plugin logo

openclaw-soundcloud-plugin

x3x3n0m0rph/openclaw-soundcloud-plugin

Otheropenclawby x3x3n0m0rph

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add x3x3n0m0rph/openclaw-soundcloud-plugin

Run in Claude Code. Add the marketplace first with /plugin marketplace add x3x3n0m0rph/openclaw-soundcloud-plugin if you haven't already.

README.md

OpenClaw SoundCloud Plugin

!Sound Cloud ![AI Slop Inside](https://sladge.net)

OpenClaw plugin that registers a soundcloud agent tool.

The tool downloads a SoundCloud URL with x3x3n0m0rph/soundcloud-dl and returns the path to the downloaded audio file.

Requirements

  • Node.js 22 or newer.
  • soundcloud-dl available in PATH, unless downloaderCommand is configured.

The upstream README shows this CLI shape:

<binary> <url> [flags]

and this download directory flag:

<binary> <url> --download-path <dir>

Install from source:

go install github.com/x3x3n0m0rph/soundcloud-dl@latest

Install

From this repository:

npm install
openclaw plugins install -l .
openclaw plugins enable openclaw-soundcloud-plugin

Restart the OpenClaw Gateway after enabling or changing plugin config.

Configure

Minimal config:

{
  plugins: {
    entries: {
      openclaw-soundcloud-plugin: {
        enabled: true,
        config: {}
      }
    }
  }
}

With optional plugin options:

{
  plugins: {
    entries: {
      openclaw-soundcloud-plugin: {
        enabled: true,
        config: {
          downloadFolder: "/tmp/openclaw/plugins/openclaw-soundcloud-plugin",
          force: false,
          socksProxy: null
        }
      }
    }
  }
}

Tool Parameters

soundcloud accepts:

  • url: SoundCloud URL to download.
  • timeoutSeconds: optional timeout for the download command.

Example agent tool call payload:

{
  "url": "https://soundcloud.com/artist/track",
  "message": "Track from SoundCloud"
}

Downloader Command

By default the plugin runs:

soundcloud-dl <url> --download-path <temp-media-dir> [--force] [--socks-proxy <proxy>] --best

<temp-media-dir> is a unique directory created for each tool call under tempRoot. If tempRoot is not configured, the plugin uses the OS temp directory and creates directories like:

%TEMP%/openclaw-soundcloud/media-...

The plugin recursively scans that per-call directory and returns the newest completed file path.

You can replace downloaderArgs in plugin config. Arguments are passed directly to the downloader process after URL and --download-path; no shell string is built.

downloaderForce and downloaderSocksProxy map directly to the corresponding CLI flags from your fork.

Security Notes

  • The plugin only allows soundcloud.com, on.soundcloud.com, and m.soundcloud.com by default.
  • Commands are launched through the OpenClaw system runtime helper rather than direct process spawning.
  • Downloaded files are stored in an isolated per-call directory under tempRoot.

Development

npm install
npm run check
npm run pack:dry

License

MIT

Related plugins

Browse all →