OpenAssetSearch

v1.0.0

Search and directly download free images, audio, music, sound effects, videos, and 3D models from WebSim's large, auth-free digital asset library.

0· 274·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description claim a search-and-download interface for WebSim assets and the SKILL.md only requires calling a single public GET endpoint (https://websim.com/api/v1/search/assets). The requested capabilities (search, return asset_url, content_type, etc.) match the stated purpose.
Instruction Scope
Runtime instructions are narrowly scoped to crafting queries, calling the documented public endpoint, parsing the JSON response, and returning direct asset URLs. The instructions do not request unrelated files, system paths, or extra environment variables. Note: skill instructs using and returning public direct-download URLs (project-assets.websim.com), so the agent will expose those URLs to users.
Install Mechanism
No install spec and no code files are present — this is instruction-only, so nothing is written to disk or installed. This is the lowest-risk install model and coherent with the skill's purpose.
Credentials
The skill requires no environment variables, credentials, or config paths. That is proportionate for an unauthenticated public API. There are no unrelated secrets requested.
Persistence & Privilege
always is false and the skill does not request persistent privileges or modify other skills. It can be invoked autonomously per platform defaults, which is expected for a user-invocable search utility.
Assessment
This skill appears coherent and low-risk: it simply queries a public WebSim search endpoint and returns direct asset URLs, and it requires no credentials or installation. Before installing: - Confirm you trust websim.com and its content licensing/terms (assets are user-uploaded and may be copyrighted). - Be cautious when automatically downloading or executing binary assets (models, unfamiliar files) — validate and scan them before use. - Remember the returned asset_url values are public and permanent per the documentation; do not rely on them for private data. - If you need stricter controls, test with non-sensitive queries and limit autonomous usage or set agent policies to review outputs before automated downloads.

Like a lobster shell, security has layers — review code before you run it.

latestvk970ng9nzptfcwrm2qk5dm5a7582b3r2
274downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0
---
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.

Comments

Loading comments...