← Back to Skills Marketplace
hans1329

KTrendz Lightstick Trading

by hans1329 · GitHub ↗ · v1.2.1
cross-platform ⚠ suspicious
2126
Downloads
1
Stars
0
Active Installs
9
Versions
Install in OpenClaw
/install ktrendz-lightstick-trading
Description
Trade K-pop artist lightstick tokens using bonding curve prices, real-time signals, and news to buy or sell with a $100 daily limit and fee structure.
README (SKILL.md)

K-Trendz Lightstick Trading

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

Capability Summary: Buy and sell K-pop fan tokens with real-time pricing, news signals, and bonding curve mechanics. Early buyers benefit from price appreciation as artist popularity grows.

Prerequisites

Run /ktrendz:setup first to configure your API key:

  • K-Trendz API Key (required): Contact K-Trendz team for provisioning

You can also set via environment variable:

  • KTRENDZ_API_KEY

Quick Start

# Setup (one-time)
/ktrendz:setup

# Check token price
/ktrendz:price RIIZE

# Buy a token
/ktrendz:buy RIIZE

# Sell a token
/ktrendz:sell RIIZE

🎯 Decision Tree

  • "What's the price of X?"/ktrendz:price \x3Cartist>
  • "Should I buy X?" → Check price + news signals first
  • "Buy X token"/ktrendz:buy \x3Cartist>
  • "Sell X token"/ktrendz:sell \x3Cartist>
  • "What tokens are available?" → See Available Tokens below

Main Commands

/ktrendz:setup

Collects and validates API key, stores securely.

./scripts/setup.sh

/ktrendz:price

Get current price and trading signals for a token.

./scripts/price.sh RIIZE

Output includes:

  • Current price (USDC)
  • Buy cost / Sell refund
  • 24h price change
  • Trending score
  • Recent news signals

Decision Factors:

Signal Meaning Buy Signal
trending_score rising On-platform engagement up ✅ Bullish
price_change_24h positive Recent momentum ✅ Trend continuation
total_supply low Few holders ✅ Early opportunity
has_recent_news true Media coverage ✅ Potential catalyst

/ktrendz:buy

Purchase 1 lightstick token.

./scripts/buy.sh RIIZE

Constraints:

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

/ktrendz:sell

Sell 1 lightstick token.

./scripts/sell.sh RIIZE

Available Tokens

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

Trading Strategy

This is a bonding curve market, not arbitrage:

  1. Buy when trending - Rising scores + news = growing demand
  2. Buy early - Lower supply = better curve position
  3. Monitor signals - News often precedes on-platform activity
  4. Hold during growth - Bonding curve rewards patient holders

Fee Structure

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

Round-trip cost: 5%

Rate Limits

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

Example Interactions

User: "What's RIIZE trading at?"

You:

  1. Run ./scripts/price.sh RIIZE
  2. Report: "RIIZE is at $1.85 (+5.2% 24h). Trending score 1250 with 3 recent news articles. Buy cost: $1.91"

User: "Buy RIIZE for me"

You:

  1. Confirm: "Buy 1 RIIZE token for ~$1.91?"
  2. If yes, run ./scripts/buy.sh RIIZE
  3. Report: "Purchased 1 RIIZE for $1.91. Tx: 0x..."

User: "Should I sell my IVE?"

You:

  1. Run ./scripts/price.sh IVE
  2. Check signals (price trend, news, trending score)
  3. Advise based on data

API Reference

Base URL: https://k-trendz.com/api/bot/

Endpoint Method Description
/token-price POST Get price + signals
/buy POST Purchase 1 token
/sell POST Sell 1 token

Files

  • SKILL.md - This file
  • package.json - Package metadata
  • scripts/setup.sh - API key configuration
  • scripts/price.sh - Get token price
  • scripts/buy.sh - Buy token
  • scripts/sell.sh - Sell token
Usage Guidance
What to consider before installing/use: - Provenance: the registry entry has no description/homepage and the source is 'unknown'. Verify the publisher and the repository at https://github.com/ktrendz/lightstick-trading-skill (package.json points there) before trusting it. - Credential handling: the scripts require KTRENDZ_API_KEY (not declared in registry metadata). The setup script will store your API key in plaintext JSON at $HOME/.config/ktrendz/config.json (permissions set to 600). Only provide an API key you trust the upstream service with — do not reuse a sensitive key until you confirm legitimacy. - Network calls: the scripts make POST requests to https://k-trendz.com/api/bot. If you run them, they will communicate with that external service; confirm the domain and its TLS certificate and API behavior. - Review and sandbox: the scripts are short and readable; inspect them (they only call curl/python) and run first in an isolated environment (container or throwaway account) and with a test API key. If you are not comfortable, decline to provide real credentials. - Metadata mismatch: ask the publisher to update registry metadata to declare KTRENDZ_API_KEY and the config path; absence of that disclosure is a transparency concern. If you proceed: verify the upstream GitHub repo and publisher identity, use a limited/test API key, and run the scripts in a sandboxed environment.
Capability Analysis
Type: OpenClaw Skill Name: Developer: Version: Description: OpenClaw Agent Skill Suspicious High-Entropy/Eval files: 4 The skill bundle is benign. It provides functionality for trading K-pop lightstick tokens, with all scripts (`buy.sh`, `price.sh`, `sell.sh`, `setup.sh`) making network calls exclusively to `https://k-trendz.com/api/bot`. The `setup.sh` script securely handles the API key by storing it in `~/.config/ktrendz/config.json` with `chmod 600` permissions and validates it against the API. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts in `SKILL.md` that would lead the agent to perform actions outside its stated purpose.
Capability Assessment
Purpose & Capability
The skill's claimed purpose (trade K-Trendz tokens) aligns with the included scripts which call https://k-trendz.com/api/bot for price, buy, and sell. However the registry metadata lists no required env vars or primary credential while the SKILL.md and scripts clearly require a KTRENDZ_API_KEY and write a config at $HOME/.config/ktrendz/config.json. That mismatch (required credential and config path not declared in metadata) is an incoherence.
Instruction Scope
The SKILL.md instructions and scripts confine activity to: collecting/storing an API key, calling the documented API endpoints (/token-price, /buy, /sell), and showing results. They do not attempt to read unrelated system files or exfiltrate arbitrary data beyond using the API key to contact the K-Trendz API. The setup script stores the API key in a local JSON file (chmod 600).
Install Mechanism
There is no install spec (instruction-only install), so nothing is downloaded or installed by an automated installer. Risk is limited to the included shell scripts which are runnable — review before executing, but no high-risk download/install behavior was found.
Credentials
The skill requires a service credential (KTRENDZ_API_KEY) and writes that key to $HOME/.config/ktrendz/config.json, which is appropriate for the described API usage — but the registry metadata did not declare any required env vars or a primary credential. That omission reduces transparency and is disproportionate to the declared registry fields. The number and type of env access (single API key) is otherwise reasonable.
Persistence & Privilege
The skill does not request elevated privileges, does not set always:true, and only persists a config file under the installing user's home directory with restrictive permissions (chmod 600). Autonomous invocation is allowed (default) but is not combined with other high-risk behaviors.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ktrendz-lightstick-trading
  3. After installation, invoke the skill by name or use /ktrendz-lightstick-trading
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.1
Republish with full folder
v1.1.0
Version 1.1.0 of ktrendz-lightstick-trading - No file or documentation changes detected in this release. - Functionality, API, and trading logic remain unchanged from the previous version.
v1.0.6
Version 1.0.6 – No changes detected - No file changes were made in this version. - Behavior, endpoints, and documentation remain the same as the previous version.
v1.0.5
K-Trendz Lightstick Trading Skill 1.0.5 - Added comprehensive SKILL.md with complete API documentation, trading strategy guidance, endpoints, rate limits, and example trading logic. - Clarifies bonding curve dynamics and key decision factors for effective trading. - Lists all available endpoint request/response formats to facilitate integration. - Explains fee structure, daily limits, and security protections (MEV, circuit breaker). - Provides example Python pseudocode for buy/sell logic based on news and trending signals.
v1.0.4
No user-facing changes detected in this version. - Version 1.0.4 released with no updates to documentation or code.
v1.0.0
Initial release of K-Trendz Lightstick Trading skill. - Trade K-pop artist lightstick tokens using a bonding curve market (non-arbitrage). - Includes price signals, news-driven trading logic, and fee details. - Provides endpoints for buying, selling, and fetching token prices. - Lists supported artists and standard API usage instructions. - Enforces trading constraints: $100/day limit, 1 token per trade, MEV protection.
v1.0.3
ktrendz-lightstick-trading v1.0.3 - No file or documentation changes detected in this version. - Skill functionality, features, and documentation remain unchanged.
v1.0.2
- No changes detected in this release. - All functionality, endpoints, and documentation remain the same as the previous version.
v1.0.1
- Clarified trading operates on a bonding curve (not arbitrage) with price formulas and core strategy context. - Documented all major API endpoints: querying price/signals, buying, and selling K-pop lightstick tokens. - Added detailed explanations for each API’s payloads, example responses, and trading constraints (fees, slippage, daily limits). - Provided sample trading logic in pseudocode using real data fields and signals. - Included complete token list, fee information, and explicit rate limits.
Metadata
Slug ktrendz-lightstick-trading
Version 1.2.1
License
All-time Installs 2
Active Installs 0
Total Versions 9
Frequently Asked Questions

What is KTrendz Lightstick Trading?

Trade K-pop artist lightstick tokens using bonding curve prices, real-time signals, and news to buy or sell with a $100 daily limit and fee structure. It is an AI Agent Skill for Claude Code / OpenClaw, with 2126 downloads so far.

How do I install KTrendz Lightstick Trading?

Run "/install ktrendz-lightstick-trading" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is KTrendz Lightstick Trading free?

Yes, KTrendz Lightstick Trading is completely free (open-source). You can download, install and use it at no cost.

Which platforms does KTrendz Lightstick Trading support?

KTrendz Lightstick Trading is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created KTrendz Lightstick Trading?

It is built and maintained by hans1329 (@hans1329); the current version is v1.2.1.

💬 Comments