← 返回 Skills 市场
benny-conn

Trackyard

作者 Benny · GitHub ↗ · v1.0.2
cross-platform ✓ 安全检测通过
627
总下载
0
收藏
2
当前安装
3
版本数
在 OpenClaw 中安装
/install trackyard
功能描述
Search and download licensed music from Trackyard's AI-powered catalog. Use for finding background music for videos, social content, podcasts, or any project...
使用说明 (SKILL.md)

Trackyard Music API

Trackyard gives you instant access to tens of thousands of curated tracks — every song 100% legally cleared for social media, YouTube, podcasts, and online content (non-film/TV). Three things make it stand out:

  1. Massive cleared catalog — tens of thousands of hand-curated songs ready to use on any social platform, no licensing headaches.
  2. AI-powered search — describe what you need in plain English ("moody lo-fi for a coffee shop vlog") and the API finds the right track, even inferring genre, mood, BPM, and instrumentation from your description.
  3. Smart clip downloader — trim any track to an exact duration and the algorithm automatically finds the best-sounding segment. Optionally specify a hit point so the biggest moment in the song lands exactly where you need it in your video.

Use Cases

  • Social media content farms — automate music selection at scale for TikTok, Reels, and Shorts pipelines; search once per video brief and clip to the exact platform duration (15s, 30s, 60s)
  • Social media ads — find brand-safe tracks that match your ad's energy, trimmed to exact ad lengths with the hook or drop landing right at the key visual moment
  • AI video generation — pair AI-generated video with AI-selected music; feed the video description into search and clip the result to match the video length exactly
  • YouTube & podcast backgrounds — find instrumental, low-energy tracks to sit under voiceover without competing with it
  • Product demo & unboxing videos — match music energy to product vibe; minimal synth for a productivity app, high-energy for a fitness brand
  • Real estate & property walkthroughs — calm, spacious ambient tracks that complement visuals without distraction
  • Corporate & training videos — professional, neutral background music that keeps viewers engaged without distracting from content
  • App & game trailers — build tension or excitement with the hit point placed exactly on the key reveal moment

Setup

Requires TRACKYARD_API_KEY environment variable. Users get an API key at trackyard.com.

export TRACKYARD_API_KEY="trackyard_live_..."

Or add to OpenClaw config: env.vars.TRACKYARD_API_KEY

Quick Reference

Search for music

scripts/trackyard.sh search "upbeat electronic for tech startup video"

With filters:

scripts/trackyard.sh search "chill background music" --limit 5 --no-vocals --energy medium

Download a track

Full track:

scripts/trackyard.sh download TRACK_ID

Trimmed to 22 seconds:

scripts/trackyard.sh download TRACK_ID --duration 22

With hit-point alignment (drop lands at 12s mark):

scripts/trackyard.sh download TRACK_ID --duration 22 --hit-point 12

Check credits

scripts/trackyard.sh me

Workflow

  1. Search with natural language → get track IDs and metadata
  2. Download the chosen track (1 credit), optionally trimmed

Filter Options

Filter Values
--genres electronicDance, pop, rock, hiphop, ambient, classical, jazz, etc.
--moods happy, energetic, sad, calm, dramatic, mysterious, romantic
--energy low, medium, high
--min-bpm / --max-bpm 60-200
--no-vocals Instrumental only
--instruments synthesizer, guitar, piano, drums, strings, etc.

Trimming

When downloading with --duration:

  • Algorithm finds the most energetic segment with smooth cut points
  • --hit-point N places the peak/drop at N seconds into the clip
  • Perfect for syncing music hits to video moments

Credits

  • Search: 1 credit
  • Download: 1 credit
  • Account info: Free

Output

  • Search returns JSON with track metadata
  • Downloads save as .mp3 to current directory (filename from track title)
安全使用建议
This skill appears coherent with its stated purpose. Before installing: (1) confirm you trust trackyard.com and that TRACKYARD_API_KEY is a legitimate key from that service; (2) be aware the script sends your API key to api.trackyard.com (expected behavior) and saves downloaded .mp3 files to the current working directory (could overwrite files with the same name); (3) the script builds JSON payloads by inserting user input directly — avoid passing untrusted or specially crafted strings as queries/filters/IDs to prevent malformed requests; and (4) if you need stronger safety, inspect or run the script in a sandbox or review/patch input sanitization before use.
功能分析
Type: OpenClaw Skill Name: trackyard Version: 1.0.2 The OpenClaw skill bundle is benign. The `SKILL.md` provides clear, non-malicious instructions for the AI agent and users, without any prompt injection attempts. The `scripts/trackyard.sh` script correctly uses `curl` and `jq` as declared in the metadata, handles the `TRACKYARD_API_KEY` securely for authentication to `api.trackyard.com`, and constructs API requests safely using `jq` to prevent shell injection. Filename sanitization is also implemented when downloading tracks. There is no evidence of data exfiltration, persistence mechanisms, or other malicious behaviors.
能力评估
Purpose & Capability
Name/description, required binaries (curl, jq), and required env var (TRACKYARD_API_KEY) align with a CLI that calls Trackyard's API. The script targets api.trackyard.com endpoints and only needs an API key.
Instruction Scope
SKILL.md and the script confine activity to searching, downloading, and querying account/usage via the Trackyard API. The script sends the TRACKYARD_API_KEY as a Bearer token and writes downloaded .mp3 files to the current directory. Note: some request-body construction uses raw shell string concatenation (user-supplied filters/query/IDs are embedded into JSON payloads) which can break requests or mis-handle odd input values; this is a functional/safety note but not evidence of misaligned purpose.
Install Mechanism
No install spec; this is an instruction-only skill with an included shell script. No external packages or remote downloads beyond calls to the Trackyard API are performed during use.
Credentials
Only a single credential is requested (TRACKYARD_API_KEY) and it is the primaryEnv. That is proportionate for an API-based music-download client; no unrelated secrets or config paths are requested.
Persistence & Privilege
always is false and the skill does not request or modify other skills or system-wide agent settings. It runs as-invoked and does not demand permanent elevated presence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install trackyard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /trackyard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
- Expanded documentation to clearly highlight use cases, platform strengths, and practical scenarios for Trackyard. - Added a detailed introduction explaining the catalog size, AI search capabilities, and smart clip downloading features. - Listed specific real-world workflows for different audiences (content creators, advertisers, corporate, AI video generators, etc.). - No code or API changes; update is documentation only.
v1.0.1
- Added a homepage link and metadata section, including requirements for external tools and environment variable. - Clarified workflow: search provides track IDs and metadata; download is now step 2. - Removed references to audio preview URLs and free previews. - No code or functional changes; documentation and metadata updates only.
v1.0.0
Initial release of the Trackyard skill: - Search and download licensed music using Trackyard's AI-powered catalog with natural language queries. - Supports advanced audio trimming options, including precise duration and hit-point alignment. - Filter results by genre, mood, BPM, energy, vocals, and instruments for tailored track selection. - Preview tracks for free and manage your credit usage for searches and downloads. - Downloads are delivered as MP3 files, ready to sync with videos, podcasts, or social content.
元数据
Slug trackyard
版本 1.0.2
许可证
累计安装 2
当前安装数 2
历史版本数 3
常见问题

Trackyard 是什么?

Search and download licensed music from Trackyard's AI-powered catalog. Use for finding background music for videos, social content, podcasts, or any project... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 627 次。

如何安装 Trackyard?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install trackyard」即可一键安装,无需额外配置。

Trackyard 是免费的吗?

是的,Trackyard 完全免费(开源免费),可自由下载、安装和使用。

Trackyard 支持哪些平台?

Trackyard 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Trackyard?

由 Benny(@benny-conn)开发并维护,当前版本 v1.0.2。

💬 留言讨论