skills$openclaw/fear-greed
nextfrontierbuilds4.4kā˜…

by nextfrontierbuilds

fear-greed – OpenClaw Skill

fear-greed is an OpenClaw Skills integration for coding workflows. Embeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor.

4.4k stars3.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namefear-greed
descriptionEmbeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor. OpenClaw Skills integration.
ownernextfrontierbuilds
repositorynextfrontierbuilds/fear-greed
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @nextfrontierbuilds/fear-greed
last updatedFeb 7, 2026

Maintainer

nextfrontierbuilds

nextfrontierbuilds

Maintains fear-greed in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
scripts
fear-greed.sh
1.3 KB
_meta.json
462 B
skill.json
699 B
SKILL.md
3.6 KB
SKILL.md

name: fear-greed description: Embeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor. version: 1.1.1 keywords: fear-greed, crypto-sentiment, market-indicator, trading-widget, dashboard-component, react-widget, bitcoin-sentiment, ai, ai-agent, ai-coding, trading-bot, fintech, market-data, openclaw, moltbot, vibe-coding, agentic

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

EndpointDescriptionSpeed
GET /market/fear-greedCurrent index229ms

Index Values

RangeLabelMeaning
0-25Extreme FearBuy opportunity?
26-45FearCaution
46-55NeutralWait and see
56-75GreedTake profits?
76-100Extreme GreedPossible top

Output Formats

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"
}

Widget Variants

1. Gauge (Circle)

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

2. Bar (Horizontal)

Fear & Greed: 72 (Greed)
ā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–ˆā–‘ā–‘ā–‘ā–‘ā–‘ā–‘ā–‘ā–‘ā–‘ā–‘

3. Badge (Compact)

ā”Œā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”
│ FG: 72 │
│   šŸ˜€   │
ā””ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”€ā”˜

Embed Options

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

ThemeBackgroundText
dark#0D0D0D#F5F3EF
light#FFFFFF#1A1A1A
transparentnoneauto

Auto-Refresh

Widget auto-refreshes every 5 minutes by default.

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

Use Cases

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

Environment Variables

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

Built by @NextXFrontier

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install fear-greed?

Run openclaw add @nextfrontierbuilds/fear-greed in your terminal. This installs fear-greed into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/nextfrontierbuilds/fear-greed. Review commits and README documentation before installing.