← 返回 Skills 市场
nextfrontierbuilds

Fear Greed

作者 Next Frontier AI · GitHub ↗ · v1.1.2
cross-platform ⚠ suspicious
3175
总下载
1
收藏
5
当前安装
3
版本数
在 OpenClaw 中安装
/install fear-greed
功能描述
Embeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor.
使用说明 (SKILL.md)

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

Endpoint Description Speed
GET /market/fear-greed Current index 229ms

Index Values

Range Label Meaning
0-25 Extreme Fear Buy opportunity?
26-45 Fear Caution
46-55 Neutral Wait and see
56-75 Greed Take profits?
76-100 Extreme Greed Possible 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 (
    \x3CFearGreedGauge 
      theme="dark"
      size="md"
      variant="gauge"
      refreshInterval={300000}  // 5 minutes
    />
  );
}

HTML Embed

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

iframe

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

Themes

Theme Background Text
dark #0D0D0D #F5F3EF
light #FFFFFF #1A1A1A
transparent none auto

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

安全使用建议
This skill will fetch sentiment from an external PRISM endpoint and print or return JSON — it does not include the promised React/JS widget files in the package and instead references external CDNs. Before installing/using: 1) Verify the external domains (strykr-prism.up.railway.app, cdn.strykr.com, widgets.strykr.com) and the repository/author to confirm you trust those hosts; 2) Be aware the included script requires curl and jq on PATH (not declared); 3) If you expected local, drop-in components, know that assets will be loaded from third-party CDNs (which can change behavior or collect usage data); 4) Inspect or run the shell script in a sandbox before allowing an agent to execute it; and 5) If you need stronger assurance, ask the publisher for the actual React/JS source and a canonical homepage or release host (GitHub release or official domain).
功能分析
Type: OpenClaw Skill Name: fear-greed Version: 1.1.2 The skill is designed to fetch and display a crypto Fear & Greed Index. The `fear-greed.sh` script uses `curl` to retrieve data from `https://strykr-prism.up.railway.app/market/fear-greed` and `jq` to parse it, which is entirely consistent with its stated purpose. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts in `SKILL.md` that would instruct an AI agent to perform harmful actions. The network access is specific and necessary for the skill's functionality.
能力评估
Purpose & Capability
The description advertises drop-in React/HTML components and a distributable widget, but the bundle does not include any React/JS component files or widget code — only a shell script (scripts/fear-greed.sh), SKILL.md, and skill.json. The SKILL.md shows embed snippets that load assets from cdn.strykr.com and widgets.strykr.com, so the package appears to rely on external CDN-hosted assets rather than providing them. That mismatch between claimed deliverables and actual contents is incoherent and should be verified with the author.
Instruction Scope
Runtime instructions are narrowly scoped: they call the included shell script which performs a single HTTP GET to PRISM_URL and formats the result. The SKILL.md references external endpoints (strykr-prism.up.railway.app, cdn.strykr.com, widgets.strykr.com). The script only uses PRISM_URL and does not read other files or environment variables, nor does it exfiltrate local data — however it assumes availability of curl and jq (not declared in registry).
Install Mechanism
There is no install specification (instruction-only) and no downloads or archive extraction. The only executable is the included shell script. This lowers install-time risk.
Credentials
No credentials or secret environment variables are required. The only configurable variable is PRISM_URL (defaulting to https://strykr-prism.up.railway.app). That is proportionate for a widget that queries a public API.
Persistence & Privilege
The skill does not request always:true or modify other skills or system configuration. It is user-invocable and can be invoked autonomously (platform defaults) but has no elevated persistence or privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fear-greed
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fear-greed 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.2
Rebranded to OpenClaw
v1.1.1
SEO update
v1.0.0
Initial release
元数据
Slug fear-greed
版本 1.1.2
许可证
累计安装 5
当前安装数 5
历史版本数 3
常见问题

Fear Greed 是什么?

Embeddable Fear & Greed Index for crypto dashboards. Real-time sentiment gauge. Drop-in React/HTML components. Works with AI agents, Claude, Cursor. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 3175 次。

如何安装 Fear Greed?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fear-greed」即可一键安装,无需额外配置。

Fear Greed 是免费的吗?

是的,Fear Greed 完全免费(开源免费),可自由下载、安装和使用。

Fear Greed 支持哪些平台?

Fear Greed 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Fear Greed?

由 Next Frontier AI(@nextfrontierbuilds)开发并维护,当前版本 v1.1.2。

💬 留言讨论