# Send Pt Site 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "pt-site",
    "name": "Pt Site",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fengqi/pt-site",
    "canonicalUrl": "https://clawhub.ai/fengqi/pt-site",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/pt-site",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pt-site",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/pt-search.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "pt-site",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T13:07:41.216Z",
      "expiresAt": "2026-05-14T13:07:41.216Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pt-site",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=pt-site",
        "contentDisposition": "attachment; filename=\"pt-site-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "pt-site"
      },
      "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/pt-site"
    },
    "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/pt-site",
    "downloadUrl": "https://openagent3.xyz/downloads/pt-site",
    "agentUrl": "https://openagent3.xyz/skills/pt-site/agent",
    "manifestUrl": "https://openagent3.xyz/skills/pt-site/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/pt-site/agent.md"
  }
}
```
## Documentation

### PT Site - NexusPHP Torrent Search & Download

Search torrents on NexusPHP-based private trackers, download .torrent files, and add them to qBittorrent.

### Setup

Credentials: ~/.clawdbot/credentials/pt-site/sites.json

{
  "sites": {
    "mySite": {
      "url": "https://pt.example.com",
      "cookie": "c_secure_uid=xxx; c_secure_pass=xxx"
    }
  }
}

### 1. Search Torrents

# Search using browser or web_fetch
browser action=open targetUrl="https://pt.example.com/torrents.php?search=keyword&search_type=0"

Or use the site's search API if available.

### 2. Parse Results

NexusPHP torrent pages typically have:

Table with class torrents
Columns: #, Type, Title, Download, Size, Seeders, Leechers, Complete
Download link: download.php?id=<id> or download.php?id=<id>&passkey=<passkey>

Extract:

Torrent ID
Download URL (may need passkey)
Title, size, seeders/leechers

### 3. Download Torrent

# Download with curl, include Cookie header
curl -L -o /tmp/torrent.torrent "https://pt.example.com/download.php?id=123" \\
  -H "Cookie: c_secure_uid=xxx; c_secure_pass=xxx"

### 4. Add to qBittorrent

Use qbittorrent skill:

# Add downloaded torrent
./scripts/qbit-api.sh add-file /tmp/torrent.torrent --category "PT"

Or by magnet/URL:

./scripts/qbit-api.sh add "magnet:?xt=..." --category "PT"

### Workflow

Ask user which PT site and search term
Load credentials from sites.json
Search via browser or direct URL
Present results (title, size, seeds, leeches)
User selects which torrent to download
Download .torrent file
Add to qBittorrent using qbittorrent skill

### Notes

Many NexusPHP sites require passkey for download - may need to extract from user's profile
Respect site rules - don't spam requests
Store torrents in /tmp/ with unique names to avoid conflicts
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: fengqi
- 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-07T13:07:41.216Z
- Expires at: 2026-05-14T13:07:41.216Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/pt-site)
- [Send to Agent page](https://openagent3.xyz/skills/pt-site/agent)
- [JSON manifest](https://openagent3.xyz/skills/pt-site/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/pt-site/agent.md)
- [Download page](https://openagent3.xyz/downloads/pt-site)