Trade K-pop lightstick tokens on a bonding curve market using artist popularity, news trends, and price signals to guide buy and sell decisions.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install clawhub-skills或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install clawhub-skills⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/clawhub-skills/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
Trade K-pop artist lightstick tokens on the K-Trendz bonding curve market.
K-Trendz Lightsticks are digital fan tokens tied to K-pop artists. Unlike arbitrage markets, this is a bonding curve system where:
This is NOT an arbitrage market. Key principles:
trending_score and recent news indicate growing demandtotal_supply means earlier position on the curveGet 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 |
---
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:
---
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
}
}
---
| Artist | Token ID | |--------|----------| | K-Trendz Supporters | 12666454296509763493 | | RIIZE | 7963681970480434413 | | IVE | 4607865675402095874 | | Cortis | 13766662462343366758 | | BTS | 9138265216282739420 | | All Day Project | 18115915419890895215 |
---
| Action | Fee | Distribution | |--------|-----|--------------| | Buy | 3% | 2% Artist Fund, 1% Platform | | Sell | 2% | Platform |
Round-trip cost: 5%
---
# 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'] < 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']) < -5:
return True
return False
---
---
https://jguylowswwgjvotdcsfj.supabase.co/functions/v1/
---
Include your API key in the x-bot-api-key header for all requests.
Contact K-Trendz team for API key provisioning.
安装 Clawhub Skills 后,可以对 AI 说这些话来触发它
Help me get started with Clawhub Skills
Explains what Clawhub Skills does, walks through the setup, and runs a quick demo based on your current project
Use Clawhub Skills to trade K-pop lightstick tokens on a bonding curve market using artis...
Invokes Clawhub Skills with the right parameters and returns the result directly in the conversation
What can I do with Clawhub Skills in my finance & investment workflow?
Lists the top use cases for Clawhub Skills, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/clawhub-skills/ 目录(个人级,所有项目可用),或 .claude/skills/clawhub-skills/(项目级)。重启 AI 客户端后,用 /clawhub-skills 主动调用,或让 AI 根据上下文自动发现并使用。
Clawhub Skills 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
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.
Clawhub Skills 属于「Finance & Investment」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my finance & investment tasks using Clawhub Skills
Identifies repetitive steps in your workflow and sets up Clawhub Skills to handle them automatically