Miraix Meme Court
by @richard7463
Use this skill when the user wants to run Miraix Meme Court, shortlist Solana meme candidates, apply Rug Court safety and liquidity checks, approve one disci...
clawhub install miraix-meme-courtπ About This Skill
name: miraix-meme-court description: Use this skill when the user wants to run Miraix Meme Court, shortlist Solana meme candidates, apply Rug Court safety and liquidity checks, approve one disciplined meme trade, prepare an unsigned payload when live Bitget execution is available, or check the status of a previously prepared order.
Miraix Meme Court
Use this skill to run the public Miraix Meme Court flow for the Bitget Wallet track. The skill narrows Solana meme candidates into one approved trade by splitting the work into Scout, Risk Agent / Rug Court, and Trader.
Public endpoints:
https://app.miraix.fun/api/meme-rotation-deskhttps://app.miraix.fun/api/meme-rotation-desk/preparehttps://app.miraix.fun/api/meme-rotation-desk/order-statusDefaults:
walletAddress: AYY3Bi6NSwH3F9Q5cy5xN9ZqRgnNYhm6TMkTwVBRVGeqbudgetUsd: 100riskMode: balancedstrategy: momentumAllowed values:
riskMode: safe, balanced, degenstrategy: momentum, reversal, shadowWhen to use it
orderId and wants to check order status.Workflow
1. Extract these inputs from the request:
- walletAddress
- budgetUsd
- riskMode
- strategy
If any field is missing, fill it with the defaults above instead of blocking.
2. Run the desk:
curl -sS https://app.miraix.fun/api/meme-rotation-desk \
-H 'Content-Type: application/json' \
-d '{
"walletAddress":"",
"budgetUsd":,
"riskMode":"",
"strategy":""
}'
3. Base the answer on these fields:
- dataMode
- warnings
- marketContext
- agents
- candidates
- approvedTrade
- execution
- proofBundle
4. Lead with the one approved trade: - symbol - size in USD - allocation percentage - rationale - invalidation - take-profit ladder
5. Then summarize Rug Court:
- approved names
- watch names
- banned names
- the most important courtNote
6. Then summarize execution readiness:
- state
- mode
- source
- market
- estimatedOutput
- whether canPrepare is true
7. If and only if all of these are true:
- the user explicitly wants payload preparation
- execution.canPrepare is true
- execution.market exists
- approvedTrade.outputContract exists
then call:
curl -sS https://app.miraix.fun/api/meme-rotation-desk/prepare \
-H 'Content-Type: application/json' \
-d '{
"walletAddress":"",
"outputContract":"",
"market":"",
"amountUsd":,
"mode":"",
"outputSymbol":""
}'
8. If the user gives an orderId and wants status, run:
curl -sS https://app.miraix.fun/api/meme-rotation-desk/order-status \
-H 'Content-Type: application/json' \
-d '{
"orderId":""
}'
9. Treat preview mode honestly:
- If dataMode is fallback, say the result is in preview mode.
- If prepare returns prepared: false, say unsigned payload generation is not available in the current live environment.
- Do not claim live signing or live order creation unless the API returns a live prepared payload.
Output guidance
Approved trade.Rug Court summary.Execution readiness.Warnings if present.