# Send Skill 3 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": "skill-3",
    "name": "Skill 3",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/claudiodrusus/skill-3",
    "canonicalUrl": "https://clawhub.ai/claudiodrusus/skill-3",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-3",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-3",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "main.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-3",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:44:21.391Z",
      "expiresAt": "2026-05-07T04:44:21.391Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-3",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-3",
        "contentDisposition": "attachment; filename=\"skill-3-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-3"
      },
      "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/skill-3"
    },
    "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/skill-3",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-3",
    "agentUrl": "https://openagent3.xyz/skills/skill-3/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-3/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-3/agent.md"
  }
}
```
## Documentation

### JSON Toolkit

A zero-dependency Python utility for working with JSON data. Validates, formats, minifies, queries, and inspects JSON files — all with Python's standard library.

### Features

Pretty-print with configurable indentation (2, 4, or any number of spaces)
Minify JSON to reduce file size for APIs and storage
Validate JSON and get structural stats (type, key count, size)
Query nested data with dot-notation paths including array indices
Sort keys alphabetically for deterministic output and easier diffs
Stdin support for use in shell pipelines with other tools

### Usage Examples

Pretty-print a JSON file:

python main.py data.json

Validate without output:

python main.py config.json --validate
# ✓ Valid JSON
#   Type: object (12 keys)
#   Size: 4832 bytes

Query a nested value:

python main.py users.json --query data.users.0.name
# "Alice"

Minify for production:

python main.py config.json --minify -o config.min.json

Sort keys for consistent diffs:

python main.py package.json --sort-keys -o package-sorted.json

Pipe from curl:

curl -s https://api.example.com/data | python main.py - --query results.0

### Query Syntax

Use dot notation to navigate nested structures. Array indices are numbers:

name — top-level key
data.users — nested object key
data.users.0 — first element of an array
data.users.0.email — field of the first array element
config.servers.2.host — deeply nested value

### Command Line Options

input — JSON file path, or - for stdin
-o, --output — Output file (defaults to stdout)
--indent N — Indentation spaces (default: 2)
--minify — Output minified JSON (no whitespace)
--query PATH / -q PATH — Extract a value at the given dot-notation path
--validate — Only validate and print stats, no output
--sort-keys — Sort object keys alphabetically
--json — (implicit) Output is always valid JSON
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: claudiodrusus
- 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-04-30T04:44:21.391Z
- Expires at: 2026-05-07T04:44:21.391Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-3)
- [Send to Agent page](https://openagent3.xyz/skills/skill-3/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-3/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-3/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-3)