← 返回 Skills 市场
hans1329

Clawhub Skills

作者 hans1329 · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
1528
总下载
1
收藏
5
当前安装
1
版本数
在 OpenClaw 中安装
/install clawhub-skills
功能描述
Trade K-pop lightstick tokens on a bonding curve market using artist popularity, news trends, and price signals to guide buy and sell decisions.
使用说明 (SKILL.md)

K-Trendz Lightstick Trading Skill

Trade K-pop artist lightstick tokens on the K-Trendz bonding curve market.

Overview

K-Trendz Lightsticks are digital fan tokens tied to K-pop artists. Unlike arbitrage markets, this is a bonding curve system where:

  • Price increases with each purchase (√supply formula)
  • Artist popularity directly affects demand
  • Early buyers benefit from price appreciation

Trading Strategy Context

This is NOT an arbitrage market. Key principles:

  1. Buy when trending - Rising trending_score and recent news indicate growing demand
  2. Buy early - Lower total_supply means earlier position on the curve
  3. Monitor external signals - News headlines often precede on-platform activity
  4. Hold during growth - Bonding curve rewards patient holders

Available Tools

get_token_price

Get current price and popularity signals for a token.

Endpoint: POST /functions/v1/bot-get-token-price

Headers:

x-bot-api-key: YOUR_API_KEY
Content-Type: application/json

Request:

{
  "token_id": "7963681970480434413",
  // OR
  "artist_name": "RIIZE"
}

Response:

{
  "success": true,
  "data": {
    "token_id": "7963681970480434413",
    "artist_name": "RIIZE",
    "current_price_usdc": 1.85,
    "buy_cost_usdc": 1.91,
    "sell_refund_usdc": 1.78,
    "price_change_24h": "+5.2",
    "total_supply": 42,
    "trending_score": 1250,
    "votes": 89,
    "follower_count": 156,
    "view_count": 2340,
    "external_signals": {
      "article_count_24h": 3,
      "headlines": [
        {"title": "RIIZE announces world tour dates", "url": "..."},
        {"title": "New single breaks records", "url": "..."}
      ],
      "has_recent_news": true
    },
    "trading_context": {
      "contract_address": "0xfe7791e3078FD183FD1c08dE2F1e4ab732024489",
      "fee_structure": {
        "buy_fee_percent": 3,
        "sell_fee_percent": 2
      }
    }
  }
}

Decision Factors:

Field Meaning Buy Signal
trending_score On-platform engagement Rising = bullish
price_change_24h Recent momentum Positive = trend continuation
total_supply Holders count Low = early opportunity
external_signals.article_count_24h News volume High = increased attention
external_signals.has_recent_news Recent coverage true = potential catalyst

buy_fanz_token

Purchase 1 lightstick token.

Endpoint: POST /functions/v1/bot-buy-token

Headers:

x-bot-api-key: YOUR_API_KEY
Content-Type: application/json

Request:

{
  "token_id": "7963681970480434413",
  "max_slippage_percent": 5
}

Response:

{
  "success": true,
  "data": {
    "transaction_id": "abc123",
    "tx_hash": "0x...",
    "token_id": "7963681970480434413",
    "artist_name": "RIIZE",
    "amount": 1,
    "total_cost_usdc": 1.91,
    "remaining_daily_limit": 98.09
  }
}

Constraints:

  • Maximum 1 token per transaction (bonding curve protection)
  • $100/day limit per agent
  • Same-block trades blocked (MEV protection)

sell_fanz_token

Sell 1 lightstick token.

Endpoint: POST /functions/v1/bot-sell-token

Headers:

x-bot-api-key: YOUR_API_KEY
Content-Type: application/json

Request:

{
  "token_id": "7963681970480434413",
  "min_slippage_percent": 5
}

Response:

{
  "success": true,
  "data": {
    "transaction_id": "def456",
    "tx_hash": "0x...",
    "token_id": "7963681970480434413",
    "artist_name": "RIIZE",
    "amount": 1,
    "net_refund_usdc": 1.78,
    "fee_usdc": 0.04
  }
}

Available Tokens

Artist Token ID
K-Trendz Supporters 12666454296509763493
RIIZE 7963681970480434413
IVE 4607865675402095874
Cortis 13766662462343366758
BTS 9138265216282739420
All Day Project 18115915419890895215

Fee Structure

Action Fee Distribution
Buy 3% 2% Artist Fund, 1% Platform
Sell 2% Platform

Round-trip cost: 5%


Example Trading Logic

# Pseudocode for news-driven trading

def should_buy(token_data):
    signals = token_data['external_signals']
    
    # Strong buy: Recent news + rising trend
    if signals['has_recent_news'] and signals['article_count_24h'] >= 2:
        if token_data['price_change_24h'] and float(token_data['price_change_24h']) > 0:
            return True
    
    # Moderate buy: High trending score, low supply
    if token_data['trending_score'] > 1000 and token_data['total_supply'] \x3C 50:
        return True
    
    return False

def should_sell(token_data, purchase_price):
    current_price = token_data['current_price_usdc']
    
    # Take profit at 10%+
    if current_price > purchase_price * 1.10:
        return True
    
    # Cut loss if no news and price dropping
    signals = token_data['external_signals']
    if not signals['has_recent_news']:
        if token_data['price_change_24h'] and float(token_data['price_change_24h']) \x3C -5:
            return True
    
    return False

Rate Limits

  • Daily Volume: $100 USD per agent
  • Transaction Frequency: Max 100 trades/day per agent
  • Circuit Breaker: Trading pauses if price moves >20% in 10 blocks

Base URL

https://jguylowswwgjvotdcsfj.supabase.co/functions/v1/

Authentication

Include your API key in the x-bot-api-key header for all requests.

Contact K-Trendz team for API key provisioning.

安全使用建议
Do not install or enable this skill until you confirm the missing provenance and credential handling. Specifically: (1) Ask the publisher to correct registry metadata (name/description/homepage) so it matches the SKILL.md and to prove ownership of the K-Trendz integration. (2) Require the skill to declare the required API key (and whether it is read-only or trading-capable) in requires.env (do not place sensitive keys in generic/shared envs). (3) Verify the base URL (jguylows...supabase.co) — confirm it's an official K-Trendz endpoint and served over TLS, and ask for an official domain if possible. (4) Restrict model autonomy: set disableModelInvocation: true or require explicit user invocation for any trade-affecting actions. (5) If you must test, use a scoped API key with minimal permissions, low daily limits, and an ability to revoke it quickly. (6) Because this skill can execute financial transactions, treat it as high-risk until provenance and credential handling are clarified.
功能分析
Type: OpenClaw Skill Name: Developer: Version: Description: OpenClaw Agent Skill The skill bundle defines a trading agent for K-pop lightstick tokens, interacting with a specific Supabase endpoint (`https://jguylowswwgjvotdcsfj.supabase.co/functions/v1/`). The `SKILL.md` file provides clear instructions for using `get_token_price`, `buy_fanz_token`, and `sell_fanz_token` tools, along with trading logic and constraints. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts to subvert the agent's core directives. All described actions are aligned with the stated purpose of token trading.
能力评估
Purpose & Capability
The runtime instructions implement a 'K-Trendz Lightstick Trading' skill (endpoints, trading logic, token IDs) which is coherent for a trading integration; however the registry metadata (skill name 'Clawhub Skills', no description, no homepage, unknown source) does not match the SKILL.md content and provides little provenance. That mismatch reduces trust and should be resolved.
Instruction Scope
SKILL.md only calls a narrow set of POST endpoints to query price and perform buys/sells and includes example decision logic; it does not request reading local files. However it explicitly requires an API key (x-bot-api-key in headers) for all requests but the skill's declared requirements do not list that credential. The instructions also target a specific supabase-hosted base URL (jguylows...supabase.co), which is an external endpoint outside any well-known official domain — verify that endpoint ownership is legitimate. The skill can perform financial actions (buys/sells) so the exact text allowing automated execution is important.
Install Mechanism
Instruction-only skill with no install spec or code files; nothing is written to disk by an installer, which is lower risk. There are no third-party packages or downloads referenced.
Credentials
The skill needs an API key (x-bot-api-key) for requests, but requires.env and primary credential fields are empty in the registry metadata — this is an inconsistency. A trading API key is sensitive and should be explicitly declared, scoped, and limited. There is no guidance about key scope, expiry, or what the key authorizes (trading vs read-only).
Persistence & Privilege
The skill does not set disableModelInvocation and thus may be invoked autonomously by the model. Combined with the skill's ability to place buys/sells and the undeclared API credential, this creates a risk that the agent could perform financial transactions without clear user consent. always is not set, which is good, but the default model-invocable behavior should be verified/controlled.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawhub-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawhub-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
K-Trendz Lightstick Trading Skill v1.0.0 - Initial release for trading K-pop artist lightstick tokens using a bonding curve market. - Supports buy and sell operations through API endpoints with price and trend checks. - Includes trading strategy guidance, leveraging trending scores, external news, and early position advantages. - Lists available artists and tokens, with daily trading and transaction frequency limits. - Defines fees, slippage settings, and circuit breaker protections. - Provides authentication and example pseudocode for trading logic.
元数据
Slug clawhub-skills
版本 1.0.0
许可证
累计安装 6
当前安装数 5
历史版本数 1
常见问题

Clawhub Skills 是什么?

Trade K-pop lightstick tokens on a bonding curve market using artist popularity, news trends, and price signals to guide buy and sell decisions. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1528 次。

如何安装 Clawhub Skills?

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

Clawhub Skills 是免费的吗?

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

Clawhub Skills 支持哪些平台?

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

谁开发了 Clawhub Skills?

由 hans1329(@hans1329)开发并维护,当前版本 v1.0.0。

💬 留言讨论