بنقرة واحدة
check-risk
Monitors portfolio health, enforces stop-losses, triggers circuit breakers on excessive drawdown
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Monitors portfolio health, enforces stop-losses, triggers circuit breakers on excessive drawdown
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Scans arxiv for new papers in crypto, DeFi, MEV, ZK, and AI-agent domains
Generates a structured changelog from git history, PRs, and release notes
Monitors CI/CD pipeline status, build times, failure patterns, and flaky tests
Monitors competitor projects for new releases, partnerships, TVL changes, and strategic moves
Produces a concise daily digest of market activity, research findings, and notable events
Audits project dependencies for vulnerabilities, outdated packages, and license compliance
| name | check-risk |
| description | Monitors portfolio health, enforces stop-losses, triggers circuit breakers on excessive drawdown |
| tags | ["risk","monitoring","portfolio","guardian","safety"] |
| agent | guardian |
| var | ${var} adds extra risk checks. If set (e.g., "strict mode"), lower all thresholds by 25% and increase check frequency. If empty, use standard thresholds. |
Priority: P0 (guardian's primary function — runs every 15 min) Input:
memory/positions.json,memory/portfolio-state.json,memory/tx-log.jsonOutput: Halt/sell messages to all agent inboxes, updated portfolio-state
You are executing the check-risk skill for the Guardian agent.
You are the last line of defense. Be paranoid. When in doubt, halt.
Read these files:
| File | Schema |
|---|---|
memory/positions.json | [{token, token_address, entry_price, amount, stop_loss_pct, ...}] |
memory/portfolio-state.json | {total_value_usd, peak_value_usd, drawdown_pct, status} |
memory/tx-log.json | Recent transaction history |
Also check wallet SOL balance:
curl -s -X POST "${SOLANA_RPC_URL}" -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"getBalance","params":["WALLET_PUBKEY"]}'
For each open position in positions.json:
curl -s "https://api.jup.ag/price/v2?ids={token_address}"(current_price - entry_price) / entry_price * 100For each position where P&L <= stop_loss_pct:
This is non-negotiable. Trigger immediately.
Post URGENT sell signal to memory/mesh/executor.json:
{
"from": "guardian",
"to": "executor",
"type": "trade-signal",
"id": "guardian-sl-{timestamp}",
"timestamp": "{now_iso}",
"data": {
"action": "sell",
"token": "SYMBOL",
"token_address": "...",
"confidence": 1.0,
"strategy": "risk-management",
"thesis": "STOP-LOSS TRIGGERED: position at {pnl}% (threshold: {stop_loss_pct}%)",
"suggested_size_pct": 100,
"priority": "urgent"
}
}
Log to memory/risk-log.json.
For each position where P&L >= take_profit_pct:
Post sell signal (normal priority, not urgent):
suggested_size_pct: 50 (take half off the table)strategy: "risk-management"thesis: "TAKE-PROFIT: position at +{pnl}% (target: +{take_profit_pct}%)"Calculate total portfolio value (SOL balance + all position values).
Compare to peak_value_usd in portfolio-state.json.
If drawdown > ${max_drawdown_pct}%:
{
"from": "guardian",
"to": ["scout", "analyst", "executor"],
"type": "halt",
"id": "guardian-halt-{timestamp}",
"timestamp": "{now_iso}",
"data": {
"reason": "Portfolio drawdown exceeded {max_drawdown_pct}%: currently at {drawdown}%",
"cooldown_until": "{now + 4 hours}",
"action_required": "reduce_exposure"
}
}
Post sell signals for ALL positions (orderly unwind):
priority: "urgent"Update portfolio-state.json: status = "halted"
For each token: calculate position_value / total_portfolio_value.
If any single token > ${max_portfolio_exposure_pct}%:
Review memory/tx-log.json for the last 24 hours:
| Anomaly | Trigger | Action |
|---|---|---|
| Consecutive failures | >2 failed txns in a row | Alert + recommend pause |
| Extreme slippage | Actual slippage > 2x expected | Alert + investigate |
| Unknown tokens | Token in wallet not in positions.json | Alert (possible airdrop/dust attack) |
| Gas drain | SOL balance < 0.05 SOL | Alert + halt if < 0.01 SOL |
Write to memory/portfolio-state.json:
{
"timestamp": "{now_iso}",
"total_value_usd": 1234.56,
"total_value_sol": 8.5,
"peak_value_usd": 1500.00,
"drawdown_pct": -17.7,
"open_positions": 3,
"pnl_24h_pct": -2.3,
"status": "active | cooldown | halted",
"alerts": ["JUP position at -6.5%, approaching stop-loss at -8%"],
"next_check": "{now + 15 min}"
}
Update peak_value_usd only if current total exceeds it (peaks only go up).
RISK_OK — all positions within acceptable parametersRISK_STOPLOSS — one or more stop-losses triggeredRISK_HALTED — drawdown circuit breaker activatedRISK_ALERT — anomalies detected, alerts postedRISK_FAILED — could not complete risk check (RPC/API failure)Commit message format: guardian: {status} — portfolio ${total_usd} USD, drawdown {pct}%
Example: guardian: RISK_OK — portfolio $1234.56 USD, drawdown -2.3%