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

### Quiver Quantitative Skill

Access alternative data sets from Quiver Quantitative to track non-traditional market signals.

### Prerequisites

API Token: You need a Quiver Quantitative API token.
Environment: Set QUIVER_API_KEY in your environment or TOOLS.md.

### Usage

This skill uses a Python script to fetch data and return it as JSON.

### Congress Trading

Track stock trades by US Senators and Representatives.

# Recent trades by all members
skills/quiver/scripts/query_quiver.py congress

# Specific Ticker
skills/quiver/scripts/query_quiver.py congress --ticker NVDA

# Specific Politician
skills/quiver/scripts/query_quiver.py congress --politician "Nancy Pelosi"

### Corporate Lobbying

Track lobbying spend by companies.

skills/quiver/scripts/query_quiver.py lobbying AAPL

### Government Contracts

Track government contracts awarded to companies.

skills/quiver/scripts/query_quiver.py contracts LMT

### Insider Trading

Track corporate insider transactions.

skills/quiver/scripts/query_quiver.py insiders TSLA

### Output

All commands output a JSON array of records. You can pipe this to jq to filter or format it.

# Get Pelosi's recent NVDA trades
skills/quiver/scripts/query_quiver.py congress --politician "Nancy Pelosi" | jq '.[] | select(.Ticker == "NVDA")'
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: stuhorsman
- Version: 1.0.1
## 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-30T02:07:20.521Z
- Expires at: 2026-05-07T02:07:20.521Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/quiver)
- [Send to Agent page](https://openagent3.xyz/skills/quiver/agent)
- [JSON manifest](https://openagent3.xyz/skills/quiver/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/quiver/agent.md)
- [Download page](https://openagent3.xyz/downloads/quiver)