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

### Crypto Sentiment Widget

Market mood at a glance. Embeddable Fear & Greed Index for crypto dashboards and trading apps.

Drop-in React and HTML components. Real-time updates. No API key required. Powered by Strykr PRISM.

### Quick Usage

# Get current Fear & Greed value
./fear-greed.sh

# Get JSON output
./fear-greed.sh --json

# Get historical data
./fear-greed.sh --history

### PRISM Endpoint

EndpointDescriptionSpeedGET /market/fear-greedCurrent index229ms

### Index Values

RangeLabelMeaning0-25Extreme FearBuy opportunity?26-45FearCaution46-55NeutralWait and see56-75GreedTake profits?76-100Extreme GreedPossible top

### Terminal (Default)

📊 Crypto Fear & Greed Index

   ┌─────────────────────┐
   │                     │
   │         72          │
   │       GREED         │
   │                     │
   │  ████████████████░░ │
   │                     │
   └─────────────────────┘

   Last updated: 2026-01-28 13:15 UTC

### JSON

{
  "value": 72,
  "label": "Greed",
  "timestamp": "2026-01-28T13:15:00Z"
}

### 1. Gauge (Circle)

╭───────╮
   ╱    72   ╲
  │   GREED   │
   ╲         ╱
    ╰───────╯

### 2. Bar (Horizontal)

Fear & Greed: 72 (Greed)
████████████████░░░░░░░░░░

### 3. Badge (Compact)

┌────────┐
│ FG: 72 │
│   😀   │
└────────┘

### React Component

import { FearGreedGauge } from '@strykr/fear-greed-widget';

function Dashboard() {
  return (
    <FearGreedGauge 
      theme="dark"
      size="md"
      variant="gauge"
      refreshInterval={300000}  // 5 minutes
    />
  );
}

### HTML Embed

<div id="fear-greed-widget"></div>
<script src="https://cdn.strykr.com/fear-greed.js"></script>
<script>
  StrykrWidget.FearGreed({
    element: '#fear-greed-widget',
    theme: 'dark',
    variant: 'gauge'
  });
</script>

### iframe

<iframe 
  src="https://widgets.strykr.com/fear-greed?theme=dark&variant=gauge"
  width="200" 
  height="200"
  frameborder="0"
></iframe>

### Themes

ThemeBackgroundTextdark#0D0D0D#F5F3EFlight#FFFFFF#1A1A1Atransparentnoneauto

### Auto-Refresh

Widget auto-refreshes every 5 minutes by default.

// Custom refresh interval (in milliseconds)
FearGreedGauge({ refreshInterval: 60000 })  // 1 minute

### Use Cases

Trading Dashboard — Quick sentiment check
Blog/Newsletter — Embed in market updates
Discord Server — Daily sentiment bot
Portfolio App — Contextual indicator

### Environment Variables

PRISM_URL=https://strykr-prism.up.railway.app

Built by @NextXFrontier
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: NextFrontierBuilds
- Version: 1.1.2
## 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-01T12:24:56.264Z
- Expires at: 2026-05-08T12:24:56.264Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fear-greed)
- [Send to Agent page](https://openagent3.xyz/skills/fear-greed/agent)
- [JSON manifest](https://openagent3.xyz/skills/fear-greed/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fear-greed/agent.md)
- [Download page](https://openagent3.xyz/downloads/fear-greed)