Miraix Binance Agent Firewall
Use this skill to judge whether an AI trading prompt is safe enough to touch a Binance account. It is backed by Miraix public endpoints and Binance public market data.
Public endpoints:
- Audit API:
https://app.miraix.fun/api/binance-agent-firewall - Share image:
https://app.miraix.fun/api/binance-agent-firewall/share-image
When to use it
- The user pasted a Binance or crypto trading prompt and wants a safety audit.
- The user asks whether an AI trader should get spot, futures, margin, transfer, or withdraw permissions.
- The user wants guardrails, a permission plan, or a probation profile before enabling automation.
- The user wants a safer rewrite of a risky trading prompt.
- The user wants a share card, screenshot, or X post for the firewall result.
Workflow
- Extract the raw trading prompt from the request. If none is provided, ask for it.
- Extract Binance symbols if the user gives them. If they do not, send an empty list and let the API infer context from the prompt.
- Run:
curl -sS -X POST https://app.miraix.fun/api/binance-agent-firewall \
-H 'Content-Type: application/json' \
-d '{"prompt":"<raw-trading-prompt>","symbols":["<symbol-1>","<symbol-2>"]}'
-
Base the answer on the returned JSON. The most important fields are:
statussafetyScoreverdictsummaryfindingsguardrailspermissionPlanprobationProfilesafePromptshareText
-
If the user wants the safest possible operating version, prefer
safePromptover inventing a new rewrite. -
If the user wants a share card, build a payload with:
statussafetyScoreverdictsummaryprimaryFindingprimaryGuardrailsymbolsdimensionsgeneratedAt
Then URL-encode the JSON and append it to:
https://app.miraix.fun/api/binance-agent-firewall/share-image?payload=<urlencoded-json>
- If the user wants a social post, start from
shareTextand adapt the tone instead of rewriting the whole result from scratch.
Output guidance
- Lead with the verdict and safety score.
- Then show the top findings and the recommended permission plan.
- Then show the probation profile and the safe rewrite.
- Do not claim private Binance account access. This skill uses Binance public market data plus Miraix scoring logic.
- If
futuresDataAvailableis false, say funding data was unavailable instead of making it up. - If the API fails, surface the error clearly and suggest retrying with a cleaner prompt or a tighter symbol list.