# Send Trakt Read-only 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": "trakt-readonly",
    "name": "Trakt Read-only",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/dennisooki/trakt-readonly",
    "canonicalUrl": "https://clawhub.ai/dennisooki/trakt-readonly",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/trakt-readonly",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trakt-readonly",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "references/trakt-api.md",
      "scripts/trakt-api.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "trakt-readonly",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T05:06:59.402Z",
      "expiresAt": "2026-05-11T05:06:59.402Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trakt-readonly",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trakt-readonly",
        "contentDisposition": "attachment; filename=\"trakt-readonly-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "trakt-readonly"
      },
      "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/trakt-readonly"
    },
    "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/trakt-readonly",
    "downloadUrl": "https://openagent3.xyz/downloads/trakt-readonly",
    "agentUrl": "https://openagent3.xyz/skills/trakt-readonly/agent",
    "manifestUrl": "https://openagent3.xyz/skills/trakt-readonly/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/trakt-readonly/agent.md"
  }
}
```
## Documentation

### Trakt (OpenClaw) — Read-only

Use this skill to query Trakt.tv user data via the API (read-only). Default to read-only; do not implement write operations unless the user explicitly asks for OAuth support.

### Requirements

Env vars:

TRAKT_CLIENT_ID (Trakt API Client ID)
TRAKT_USERNAME (Trakt username or user slug)
TRAKT_ACCESS_TOKEN (OAuth Bearer token, required for playback)
TRAKT_CLIENT_SECRET (required for device token exchange)


Binaries: curl, jq

### Commands (script)

Use {baseDir}/scripts/trakt-api.sh.

watching — current movie/episode being watched
recent [limit] — recent episode history (default 10, max 100)
watched-shows — recently watched shows list
profile — user profile
stats — user stats
playback <type> <start_at> <end_at> — playback progress (OAuth required)

Examples:

TRAKT_CLIENT_ID=xxx TRAKT_USERNAME=user {baseDir}/scripts/trakt-api.sh watching
TRAKT_CLIENT_ID=xxx TRAKT_USERNAME=user {baseDir}/scripts/trakt-api.sh recent 5
TRAKT_CLIENT_ID=xxx TRAKT_ACCESS_TOKEN=yyy {baseDir}/scripts/trakt-api.sh playback movies 2016-06-01T00:00:00.000Z 2016-07-01T23:59:59.000Z
TRAKT_CLIENT_ID=xxx {baseDir}/scripts/trakt-api.sh device-code
TRAKT_CLIENT_ID=xxx TRAKT_CLIENT_SECRET=zzz {baseDir}/scripts/trakt-api.sh device-token <device_code>

### Guardrails

Never log or expose API keys or access tokens.
Only call https://api.trakt.tv.
Read-only endpoints only; playback uses OAuth token read access.
Device OAuth flow is read-only; do not request write scopes.
Validate recent limit is numeric and between 1–100.
Handle empty/404 responses gracefully (public profile required).

### References

Read references/trakt-api.md for endpoints, headers, and auth notes.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dennisooki
- Version: 1.0.3
## 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-04T05:06:59.402Z
- Expires at: 2026-05-11T05:06:59.402Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/trakt-readonly)
- [Send to Agent page](https://openagent3.xyz/skills/trakt-readonly/agent)
- [JSON manifest](https://openagent3.xyz/skills/trakt-readonly/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/trakt-readonly/agent.md)
- [Download page](https://openagent3.xyz/downloads/trakt-readonly)