# Send Vajra 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": "vajra",
    "name": "Vajra",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/minhyeong112/vajra",
    "canonicalUrl": "https://clawhub.ai/minhyeong112/vajra",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vajra",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vajra",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vajra",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:27:58.728Z",
      "expiresAt": "2026-05-17T13:27:58.728Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vajra",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vajra",
        "contentDisposition": "attachment; filename=\"vajra-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vajra"
      },
      "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/vajra"
    },
    "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/vajra",
    "downloadUrl": "https://openagent3.xyz/downloads/vajra",
    "agentUrl": "https://openagent3.xyz/skills/vajra/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vajra/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vajra/agent.md"
  }
}
```
## Documentation

### Vajra - Signal Filter for the Internet

Vajra is a content-analysis API by Humanity Labs. It scores content for epistemic quality (1-10), detects bias, extracts key takeaways, flags questionable claims, and produces structured verdicts.

### Privacy and Data Handling

Important: This skill sends content to the Vajra API at https://www.vajra.to. Before using it:

Content you submit (URLs, text) is transmitted to Vajra's servers for analysis.
Analyzed content is cached server-side. If another user submits the same URL, they receive the cached result (0 credits). The original text you submit is not stored -- only the analysis output.
Every analysis generates a public permalink (e.g. vajra.to/a/ID). These are shareable and publicly accessible.
Do not submit private, proprietary, or personally identifiable content unless you understand and accept this behavior.
Vajra's privacy policy and terms are available at vajra.to.

### Setup

An API key is required. Get one free at vajra.to/dashboard (Connections tab).

The key must be stored as the environment variable VAJRA_API_KEY. The agent will be prompted to set this during installation.

### Analyze Content

curl -s -X POST https://www.vajra.to/api/analyze \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $VAJRA_API_KEY" \\
  -d '{"content": "URL_OR_TEXT", "type": "url"}'

Set type to "text" for raw text (max 50,000 chars). Default is "url".

Supported content: articles, YouTube videos, X/Twitter posts, and raw text.

### Parse the Response

The response JSON contains:

success        - boolean
cached         - boolean (0 credits if true)
credits_used   - 0 or 1
url            - permalink to full report (e.g. https://www.vajra.to/a/UUID)
analysis.title - content title
analysis.quality_score - 1-10 rating
analysis.bias_level    - bias assessment
analysis.markdown      - full report in markdown
analysis.metadata.tldr - one-sentence summary
analysis.metadata.verdict      - reliability assessment
analysis.metadata.key_takeaways - array of takeaways
analysis.metadata.warnings      - array of warnings

### Present Results

When showing results to the user, format as:

**Title** - Quality: X/10
TLDR: [tldr]
Verdict: [verdict]
Key takeaways: [list]
Warnings: [list if any]
Full report: [permalink url]

### Retrieve Existing Analysis

Fetch a previously completed analysis by ID (no auth needed, public endpoint):

curl -s https://www.vajra.to/api/analysis/ANALYSIS_ID

### Credits and Pricing

Cached results cost 0 credits (same URL already analyzed by any user)
Free tier: 5 analyses/month
Pro: 100 analyses/month ($12/mo or $79/yr)
Analyses take 10-60 seconds depending on content length
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: minhyeong112
- Version: 1.1.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-10T13:27:58.728Z
- Expires at: 2026-05-17T13:27:58.728Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vajra)
- [Send to Agent page](https://openagent3.xyz/skills/vajra/agent)
- [JSON manifest](https://openagent3.xyz/skills/vajra/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vajra/agent.md)
- [Download page](https://openagent3.xyz/downloads/vajra)