Agent SkillsSuperior-Trade/superior-skills › lighter-robinhood

lighter-robinhood

GitHub

用于规划 Robinhood Chain Lighter 策略及配置 Superior Trade 交易所。涵盖部署计划、资金充值(USDG)及安全规则,通过 Unified API 管理交易生命周期。

skills/lighter-robinhood/SKILL.md Superior-Trade/superior-skills

Trigger Scenarios

询问 Robinhood Chain Lighter 策略 需要配置 lighter-robinhood 交易所

Install

npx skills add Superior-Trade/superior-skills --skill lighter-robinhood -g -y
More Options

Use without installing

npx skills use Superior-Trade/superior-skills@lighter-robinhood

指定 Agent (Claude Code)

npx skills add Superior-Trade/superior-skills --skill lighter-robinhood -a claude-code -g -y

安装 repo 全部 skill

npx skills add Superior-Trade/superior-skills --all -g -y

预览 repo 内 skill

npx skills add Superior-Trade/superior-skills --list

SKILL.md

Frontmatter
{
    "name": "lighter-robinhood",
    "metadata": {
        "env": [
            {
                "name": "SUPERIOR_TRADE_API_KEY",
                "type": "api_key",
                "required": true,
                "description": "Superior Trade API key (x-api-key header). Obtained at https:\/\/account.superior.trade."
            }
        ],
        "auth": {
            "env": "SUPERIOR_TRADE_API_KEY",
            "type": "api_key",
            "scope": "Read Unified venue capabilities and prepare contract-supported Robinhood Chain Lighter backtests or deployments. Cannot submit an undocumented signed proxy action, export private keys, or access other users' data.",
            "header": "x-api-key"
        },
        "source": "https:\/\/github.com\/Superior-Trade",
        "updated": 1784160000,
        "version": "1.0.0",
        "homepage": "https:\/\/robinhoodchain.lighter.xyz",
        "primaryEnv": "SUPERIOR_TRADE_API_KEY",
        "externalEndpoints": [
            {
                "url": "https:\/\/unified-api-zag4gzx6gq-an.a.run.app",
                "purpose": "Unified venue discovery, backtests, and deployment planning"
            }
        ]
    },
    "description": "Use when planning a Robinhood Chain Lighter strategy through Superior Trade, or when a config needs the venue name lighter-robinhood."
}

Superior Trade Robinhood Chain Lighter

Use this skill when the user asks about Robinhood Chain Lighter, Robinhood Wallet perps on Lighter, or the Superior Trade exchange named lighter-robinhood.

Exchange name: lighter-robinhood Venue config: { "venue": "lighter-robinhood", "instrument_id": "<SYMBOL>-PERP.LIGHTER-RH" } Superior API base: https://unified-api-zag4gzx6gq-an.a.run.app Robinhood Chain id: 4663 Perps deposit asset: USDG

Safety Rules

  • Never ask for private keys, seed phrases, API private keys, passwords, or wallet credentials.
  • Never treat lighter-robinhood as an alias for lighter; it has a different venue profile, chain id, deposit asset, and instrument suffix.
  • Do not reuse the default Lighter USDC CCTP deposit wording. Robinhood Chain Lighter perps require USDG.
  • Do not claim live Nautilus execution support until signed transaction generation supports Robinhood Chain id 4663.
  • Never move funds or start live trading without explicit user confirmation.

Deployment Planning

First read GET /context/venues, GET /runtime/frameworks, and GET /context/markets. Create a deployment only if the returned capabilities include lighter-robinhood; otherwise report it as unavailable through Unified API. When supported, use POST /runtime/deployments with top-level fields from GET /openapi.json, venue: "lighter-robinhood", and the instrument identifier returned by market discovery.

{
  "framework": "nautilus",
  "venue": "lighter-robinhood",
  "mode": "paper",
  "name": "robinhood-lighter-plan",
  "code": "class RobinhoodLighterStrategy: pass\n",
  "config": {
    "instrument_id": "PLTR-PERP.LIGHTER-RH"
  }
}

Do not claim a fixed region profile or status code. Read the created deployment and its logs, and use PUT /runtime/deployments/{id}/status only after the user confirms the exact live action.

One-time actions

The current committed Unified contract does not define a Robinhood Chain Lighter execution action. Report one-off order or signed-proxy requests as unavailable. Do not adapt an older payload to POST /runtime/executions.

Deposits

Robinhood Chain Lighter perps require USDG, not USDC. GET /wallet/deposits is history only and must not be presented as a Robinhood Chain Lighter deposit action.

Until Superior adds a dedicated Robinhood Chain Lighter deposit route, instruct the user to fund Robinhood Chain Lighter with USDG through the official Robinhood Chain Lighter or Robinhood Wallet flow, then verify account readiness through Superior once the API supports venue-specific Robinhood readiness.

Troubleshooting

  • Confirm the venue and instrument against GET /context/venues and GET /context/markets; do not rely on hard-coded suffix rules alone.
  • If creation or start fails, report the Unified deployment status and logs. Do not reinterpret an older venue-specific error contract.

Version History

  • d6f188f Current 2026-09-08 20:00

    重构技能以迁移至 Unified API,更新部署接口与基础 URL。

  • 9333090 2026-08-16 16:12

Same Skill Collection

skills/aerodrome/SKILL.md
skills/backtesting/SKILL.md
skills/basis-arb/SKILL.md
skills/bollinger-reverter-4h/SKILL.md
skills/breakout/SKILL.md
skills/catalyst-confirmation/SKILL.md
skills/dca-weekly/SKILL.md
skills/deadline-drift/SKILL.md
skills/deposit-qr/SKILL.md
skills/donchian-strong-regime/SKILL.md
skills/dsl-exit-engine/SKILL.md
skills/external-deposit/SKILL.md
skills/fees-optimizations/SKILL.md
skills/funding-rate-arbitrage/SKILL.md
skills/funding-squeeze/SKILL.md
skills/grid-trading/SKILL.md
skills/hyperliquid/SKILL.md
skills/intelligence/SKILL.md
skills/large-fill-pressure/SKILL.md
skills/lighter/SKILL.md
skills/mean-reversion/SKILL.md
skills/polymarket/SKILL.md
skills/probability-mean-reversion/SKILL.md
skills/probability-momentum/SKILL.md
skills/regime-overlay/SKILL.md
skills/related-market-spread/SKILL.md
skills/scalping/SKILL.md
skills/superior-trade/SKILL.md
skills/trade-thesis/SKILL.md
skills/v2/exchanges/aerodrome/SKILL.md
skills/v2/exchanges/hyperliquid/SKILL.md
skills/v2/primitives/backtesting/SKILL.md
skills/v2/primitives/fees-optimizations/SKILL.md
skills/v2/primitives/trade-thesis/SKILL.md
skills/v2/strategies/basis-arb/SKILL.md
skills/v2/strategies/bollinger-reverter-4h/SKILL.md
skills/v2/strategies/breakout/SKILL.md
skills/v2/strategies/dca-weekly/SKILL.md
skills/v2/strategies/donchian-strong-regime/SKILL.md
skills/v2/strategies/funding-rate-arbitrage/SKILL.md
skills/v2/strategies/funding-squeeze/SKILL.md
skills/v2/strategies/grid-trading/SKILL.md
skills/v2/strategies/mean-reversion/SKILL.md
skills/v2/strategies/scalping/SKILL.md
skills/v3/exchanges/lighter-robinhood/SKILL.md
skills/v3/exchanges/lighter/SKILL.md
skills/v3/exchanges/polymarket/SKILL.md
skills/v3/polymarket-archetypes/catalyst-confirmation/SKILL.md

Metadata

Files
0
Version
d6f188f
Hash
94ecf820
Indexed
2026-08-16 16:12

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-09-10 02:49
浙ICP备14020137号-1 $방문자$