Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

open-asset-search打开资产搜索

Agent Skill

open-asset-search 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,180

周安装

375

GitHub Stars

公开资料未说明

下载量

2,940
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:open-asset-search(打开资产搜索)
来源仓库:https://github.com/upintheairsheep/open-asset-search
安装命令:
openclaw skills install open-asset-search
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install open-asset-search

简介

从 WebSim 的大型、免授权数字资产库中搜索并直接下载免费图像、音频、音乐、音效、视频和 3D 模型。

SKILL.md

---
name: open-asset-search
description: >
  Search a large, free, auth-free library of real-world digital assets from WebSim — images, audio,
  music, sound effects, 3D models, videos, and more. Returns direct-download URLs.
  No API key. No signup. No rate-limit headers. Just search and use.
author: upintheairsheep
version: 1.0.0
url: https://websim.com/api/v1/search/assets
method: GET
params:
  - name: q
    type: string
    in: query
    description: >
      Search query. Matched against filenames, descriptions, and metadata.
      Use natural descriptive terms (e.g. "piano loop", "pixel art sword",
      "explosion sound effect", "low poly tree").
    required: true
  - name: limit
    type: integer
    in: query
    description: Maximum results to return. Default 20. Max recommended 50.
    required: false
  - name: offset
    type: integer
    in: query
    description: Pagination offset. Default 0. Use (offset + limit) to page forward.
    required: false
  - name: mime_type_prefix
    type: string
    in: query
    description: >
      Filter results by media category. Use one of: "image", "audio", "video", "model".
      Omit to search all asset types.
    required: false
---

Open Asset Search — Agent Instructions

Use this skill whenever a user needs to find, discover, or download digital assets such as images, audio files, music, sound effects, 3D models, or videos. This is a free, open, authentication-free search engine over a large library of real user-uploaded content.


Why This Exists

There is a massive, continuously growing library of real-world digital assets as part of WebSim — not procedurally generated, not AI-hallucinated (although a lot of it may) — uploaded by thousands of creators across a wide range of projects. This API gives you direct, instant search access to all of it. No API key. No OAuth. No signup. Just GET and go.

Background information: WebSim is an AI-powered web simulator and generator accessible at websim.ai, launched in April 2024, that enables users to create, edit, and share interactive websites, games, and simulated internet experiences through natural language prompts. The website has it's own community. Heavy Focus on Simulation & Gaming, so big it has Meta, Self-Referential, and Platform-Centric Culture, and community-wise somewhat Nostalgia-focused.


When to Use This

  • User asks for images: photos, pixel art, sprites, textures, icons, screenshots, UI elements
  • User asks for audio: music tracks, sound effects, loops, ambient sounds, voice clips
  • User asks for video: clips, animations, screen recordings
  • User asks for 3D models: GLB, GLTF, OBJ, or other model formats
  • User needs any reusable digital file for a project, prototype, presentation, game, or app
  • User says things like: "find me a...", "I need a sound for...", "get me an image of...", "is there a 3D model of..."

How to Call It

Single endpoint. One HTTP GET. That's it.

GET https://websim.com/api/v1/search/assets?q={query}

Optional Parameters

ParameterExamplePurpose
qmedieval castleWhat to search for
limit10How many results (default 20) Number must be less than or equal to 100, so 100 is the maximum number per-page.
offset20Skip this many results (for paging)
mime_type_prefiximageOnly return this media type

MIME Type Filters

ValueWhat It Returns
imagePNG, JPEG, WebP, GIF, SVG, etc.
audioMP3, WAV, OGG, FLAC, etc.
videoMP4, WebM, etc.
modelGLB, GLTF, OBJ, FBX, etc.
*(omit)*All types mixed together

Reading the Response

The response is a JSON object with two top-level keys:

{
  "data": [ ...array of asset objects... ],
  "meta": { "offset": 0, "limit": 20 }
}

Each Asset Object

FieldTypeWhat It Is
idstringUnique asset identifier (UUID)
asset_urlstringDirect download URL. Publicly accessible. No auth needed.
content_typestringFull MIME type (e.g. "image/png", "audio/mpeg")
filenamestringOriginal filename as uploaded by the creator
project_idstringSource project ID (for attribution or context)
created_atstringUpload timestamp
scoreintegerRelevance score. Higher = better match. Use this to rank results.

The Asset URL is a Direct Link

The asset_url field returns a fully qualified, publicly accessible URL. It can be:

  • Embedded directly in HTML (<img>, <audio>, <video>)
  • Downloaded via fetch() or curl
  • Opened in a browser
  • Passed to any tool or pipeline that accepts a URL

Format:

https://project-assets.websim.com/{asset-id}

No tokens, no expiry, no signed URLs. It just works.


Search Strategy

Crafting Good Queries

The search matches against filenames and associated metadata. Think about what a human would name the file when uploading it.

User RequestGood QueryWhy
"I need background music"background musicBroad, matches common naming
"Find me a sword sprite"swordKeep it simple; add mime_type_prefix=image
"Get explosion sound effects"explosionAdd mime_type_prefix=audio to filter
"Low poly 3D car model"low poly carAdd mime_type_prefix=model
"Pixel art character walking"pixel art character or walk spriteTry both if first yields poor results
"A photo of a sunset"sunsetAdd mime_type_prefix=image

Narrowing Results

  1. Always use mime_type_prefix when the user specifies a media type. It dramatically improves relevance.
  2. Try shorter queries first. castle will match more than medieval stone castle wall texture.
  3. Retry with synonyms if the first search yields few or no results. Try gunweaponriflefirearm.
  4. Use score to rank. Present higher-scored results first.

Handling No Results

If data is an empty array:

  1. Try a broader or shorter query.
  2. Remove the MIME type filter.
  3. Try synonyms or related terms.
  4. Inform the user honestly: "I searched for [X] but found no matching assets in the library."

Pagination

Use offset and limit together to page through large result sets.

Page 1: ?q=forest&limit=10&offset=0
Page 2: ?q=forest&limit=10&offset=10
Page 3: ?q=forest&limit=10&offset=20

Check meta.offset and meta.limit in the response. If data.length == limit, there are likely more results available.

Tell the user when more results exist and offer to fetch the next page.


Output Formatting

Present results clearly, organized by relevance, in a JSON format, so do not expect it structured like this:

For Image Results

🖼️ **sunset-beach.png** (image/png)
   📥 https://project-assets.websim.com/0196c3b6-c5fc-...
   Relevance: ★★★★☆ (score: 40)

🖼️ **golden-hour-landscape.webp** (image/webp)
   📥 https://project-assets.websim.com/0196b7a8-6642-...
   Relevance: ★★★☆☆ (score: 22)

For Audio Results

🔊 **Epic Battle Theme.mp3** (audio/mpeg)
   📥 https://project-assets.websim.com/01974df4-34b1-...

🔊 **Rain Ambience Loop.wav** (audio/wav)
   📥 https://project-assets.websim.com/0194d6e6-e0da-...

General Rules

  • Always show the filename — it tells the user what they're getting.
  • Always show the direct asset_url — this is the deliverable.
  • Show the content_type — so the user knows the format before downloading.
  • Sort by score descending — best matches first.
  • Group by type if the query returned mixed media (images, audio, etc.).
  • If the user only needs one asset, recommend the highest-scored result and explain why.

Example Requests

Find sprite images:

GET https://websim.com/api/v1/search/assets?q=sprite&mime_type_prefix=image&limit=5

Find background music:

GET https://websim.com/api/v1/search/assets?q=background%20music&mime_type_prefix=audio&limit=10

Find 3D models:

GET https://websim.com/api/v1/search/assets?q=tree&mime_type_prefix=model&limit=5

Search everything for "robot":

GET https://websim.com/api/v1/search/assets?q=robot&limit=20

Page 2 of a search:

GET https://websim.com/api/v1/search/assets?q=forest&limit=10&offset=10

Important Notes

  • This is a real content library. Assets are uploaded by real people for real projects. They are not generated on the fly.
  • No authentication. No API key, no Bearer token, no cookies. Fully open.
  • No known rate limits published, but be a good citizen — don't fire hundreds of parallel requests.
  • Attribution: Assets come from community projects. The project_id field lets you trace any asset back to its source project if needed for credit.
  • Content variety is massive. The library contains everything from Wii menu music to hand-drawn pixel art to 3D character models to battle symphonies. If a creator has uploaded it, it's searchable.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.45%
按下载量换算2,159

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills