# Send letterboxd-companion 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": "letterboxd-tracker",
    "name": "letterboxd-companion",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/tamil-9421/letterboxd-tracker",
    "canonicalUrl": "https://clawhub.ai/tamil-9421/letterboxd-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/letterboxd-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letterboxd-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "lb_tool.py",
      "README.md",
      "requirements.txt",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "letterboxd-tracker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T04:16:37.907Z",
      "expiresAt": "2026-05-08T04:16:37.907Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letterboxd-tracker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=letterboxd-tracker",
        "contentDisposition": "attachment; filename=\"letterboxd-tracker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "letterboxd-tracker"
      },
      "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/letterboxd-tracker"
    },
    "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/letterboxd-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/letterboxd-tracker",
    "agentUrl": "https://openagent3.xyz/skills/letterboxd-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/letterboxd-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/letterboxd-tracker/agent.md"
  }
}
```
## Documentation

### Letterboxd Skill

This skill allows the agent to retrieve information about movies or user activity from Letterboxd.

### Setup

pip install letterboxdpy

### Usage

Use this when the user asks about:

Their Letterboxd profile stats
Movies they've watched recently
Their watchlist
Specific movie details

### lb_user

command: python lb_tool.py user "{{username}}"
description: Gets user profile stats (watched count, reviews, lists, favorites)
parameters:

username: The Letterboxd username

### lb_diary

command: python lb_tool.py diary "{{username}}" [limit]
description: Gets recently watched movies from user's diary
parameters:

username: The Letterboxd username
limit: Optional, default 10

### lb_watchlist

command: python lb_tool.py watchlist "{{username}}" [limit]
description: Gets movies in user's watchlist
parameters:

username: The Letterboxd username
limit: Optional, default 10

### lb_movie

command: python lb_tool.py movie "{{slug}}"
description: Gets movie details (title, year, rating, directors, description)
parameters:

slug: Movie URL slug (e.g., vikram-2022, the-batman)

### Examples

User: "How many movies have I watched on Letterboxd?"
Agent: (Calls lb_user with username="tamilventhan")

User: "What movies did I watch recently?"
Agent: (Calls lb_diary with username="tamilventhan")

User: "Show my watchlist"
Agent: (Calls lb_watchlist with username="tamilventhan")

User: "Tell me about the movie Vikram"
Agent: (Calls lb_movie with slug="vikram-2022")
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tamil-9421
- 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-01T04:16:37.907Z
- Expires at: 2026-05-08T04:16:37.907Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/letterboxd-tracker)
- [Send to Agent page](https://openagent3.xyz/skills/letterboxd-tracker/agent)
- [JSON manifest](https://openagent3.xyz/skills/letterboxd-tracker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/letterboxd-tracker/agent.md)
- [Download page](https://openagent3.xyz/downloads/letterboxd-tracker)