heartbeat
Proactive health check — skill failures, LP state, memory flags, FeeLocker balance. Run 3× daily to surface issues before they compound.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Proactive health check — skill failures, LP state, memory flags, FeeLocker balance. Run 3× daily to surface issues before they compound.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Decide how to allocate DIEM between Venice compute staking, WETH swap for x402 API access, Uniswap LP, and Aerodrome LP. Run once per tick before any capital movement.
Read all agent on-chain positions via the check-portfolio.ts script. Use this instead of raw curl/cast calls to avoid hex encoding mistakes.
Claim DIEM from FeeLocker, run accumulate-vs-build analysis, and route earnings to LP or Venice staking. Scheduled every 12 hours via aeon. DRY-RUN BY DEFAULT — pass --live to execute.
Launch a Liquid Protocol token with a LiquidPresaleVault presale. STAKE MODE ONLY (policy 2026-06-12) — depositors lock DIEM and always get it back; allocation is lock-to-earn. One vault per launch, 10% of supply, 60d default lock.
Working in the deploy-autonomous GitHub template repo — agent harness, identity layer, Venice provider, safety modules, and the create-identity CLI.
Mint a single-sided DIEM LP position in the ETH/DIEM Uniswap v3 1% pool on Base. Use when reinvesting claimed DIEM fees in accumulate mode.
| name | heartbeat |
| description | Proactive health check — skill failures, LP state, memory flags, FeeLocker balance. Run 3× daily to surface issues before they compound. |
Three-times-daily health check. Reviews recent skill runs, on-chain state, and memory for anything requiring attention.
# Check GitHub Actions runs for failures
gh run list --repo Liquid-Protocol-Ops/agent-autonomopoly --limit 10
Look for tick, claim-diem, track-earnings failures. More than 2 consecutive failures → investigate.
node --env-file=.env --import tsx scripts/check-portfolio.ts
Flags:
claim-diem due (scheduled at 12h but check if it ran)lp-monitor for repositioning decisionCheck memory/diem-claims.jsonl for last successful claim. If > 13 hours since last live claim and FeeLocker > threshold, the scheduled skill may have failed.
Check memory/earnings.jsonl for today's snapshot. If missing and it's after 23:55 UTC, track-earnings failed.
Agent wallet ETH should stay above 0.005 ETH for safe headroom. Below 0.003 = hard stop on all live scripts.
heartbeat: { enabled: true, schedule: "0 8,14,20 * * *" } # 3× daily UTC
| Issue | Response |
|---|---|
| ETH low | Transfer ETH to agent wallet, then resume scheduled skills |
| Claim failed | Run claim-diem dry-run, investigate error, run live |
| LP out of range | Run lp-monitor, decide if reposition is worth the gas |
| Track-earnings missed | Run track-earnings manually |
| Tick failures | Check harness/tick.ts logs, check Venice key validity |