# Send last.fm to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "last-fm",
    "name": "last.fm",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/keyfrog-21K/last-fm",
    "canonicalUrl": "https://clawhub.ai/keyfrog-21K/last-fm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/last-fm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=last-fm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "last-fm",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T05:47:12.303Z",
      "expiresAt": "2026-05-19T05:47:12.303Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=last-fm",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=last-fm",
        "contentDisposition": "attachment; filename=\"last-fm-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "last-fm"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/last-fm"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/last-fm",
    "downloadUrl": "https://openagent3.xyz/downloads/last-fm",
    "agentUrl": "https://openagent3.xyz/skills/last-fm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/last-fm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/last-fm/agent.md"
  }
}
```
## Documentation

### Album

album.getInfo

Get album metadata (tracks, tags, playcount, cover art, etc.) for a given artist and album.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=album.getinfo&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json

album.getTopTags

Get the most popular tags applied to a specific album.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=album.gettoptags&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json

album.search

Search for albums by name and get possible matches.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=album.search&album=OK+Computer&api_key=YOUR_API_KEY&format=json

### Track

track.getInfo

Get detailed metadata for a track, including album, duration, listeners, playcount, and wiki (if available).

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=track.getinfo&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json

track.getTopTags

Get the most popular tags for a given track.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=track.gettoptags&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json

track.search

Search for tracks by name (and optionally by artist) and get a list of matches.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=track.search&track=Karma+Police&api_key=YOUR_API_KEY&format=json

### User

user.getInfo

Get profile information about a user (playcount, country, age (if public), images, etc.).

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=user.getinfo&user=someusername&api_key=YOUR_API_KEY&format=json

user.getRecentTracks

Get the list of recently scrobbled tracks by a user, including timestamps and “now playing” status.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=someusername&limit=20&api_key=YOUR_API_KEY&format=json

user.getTopArtists

Get a user’s top artists over a specific period (overall, 7day, 1month, 3month, 6month, 12month).

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=someusername&period=1month&limit=20&api_key=YOUR_API_KEY&format=json

user.getTopTracks

Get a user’s top tracks over a selected period.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=user.gettoptracks&user=someusername&period=3month&limit=20&api_key=YOUR_API_KEY&format=json

### Library

library.getArtists

Get a paginated list of all artists in a user’s library with play counts and tag counts.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=library.getartists&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json

library.getAlbums

Get albums from a user’s library, optionally filtered by artist.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=library.getalbums&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json

library.getTracks

Get tracks from a user’s library with their play counts.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=library.gettracks&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json

### Chart

chart.getTopArtists

Get the global top artists chart on Last.fm.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=chart.gettopartists&api_key=YOUR_API_KEY&format=json

chart.getTopTracks

Get the global top tracks chart.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=chart.gettoptracks&api_key=YOUR_API_KEY&format=json

chart.getTopTags

Get the global top tags chart.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=chart.gettoptags&api_key=YOUR_API_KEY&format=json

### Tag

tag.getInfo

Get metadata for a tag (description, reach, total uses, etc.).

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=tag.getinfo&tag=k-pop&api_key=YOUR_API_KEY&format=json

tag.getTopArtists

Get top artists associated with a specific tag.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=tag.gettopartists&tag=k-pop&api_key=YOUR_API_KEY&format=json

tag.getTopTracks

Get top tracks associated with a tag.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=tag.gettoptracks&tag=k-pop&api_key=YOUR_API_KEY&format=json

tag.getTopAlbums

Get top albums associated with a tag.

Example request:

GET https://ws.audioscrobbler.com/2.0/?method=tag.gettopalbums&tag=k-pop&api_key=YOUR_API_KEY&format=json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: keyfrog-21K
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T05:47:12.303Z
- Expires at: 2026-05-19T05:47:12.303Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/last-fm)
- [Send to Agent page](https://openagent3.xyz/skills/last-fm/agent)
- [JSON manifest](https://openagent3.xyz/skills/last-fm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/last-fm/agent.md)
- [Download page](https://openagent3.xyz/downloads/last-fm)