tick
Run one agent tick — claim FeeLocker fees, LP DIEM, run maintenance inference. The core hourly heartbeat of the agent funding loop.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run one agent tick — claim FeeLocker fees, LP DIEM, run maintenance inference. The core hourly heartbeat of the agent funding loop.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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.
Proactive health check — skill failures, LP state, memory flags, FeeLocker balance. Run 3× daily to surface issues before they compound.
基于 SOC 职业分类
| name | tick |
| description | Run one agent tick — claim FeeLocker fees, LP DIEM, run maintenance inference. The core hourly heartbeat of the agent funding loop. |
Runs the full agent funding loop: check balances → claim DIEM → LP → Venice inference.
The tick skill maps to harness/tick.ts:
node --env-file=.env --import tsx harness/tick.ts
FeeLocker.claim(feeOwner, token) if claimable ≥ threshold (0.1 DIEM)reinvestToLP(rpcUrl, agentAddress, diemAmount, range, txSender) in accumulate mode| Var | Purpose |
|---|---|
AGENT_WALLET | Agent wallet address |
RPC_URL | Base mainnet RPC |
PRIVY_APP_ID / PRIVY_APP_SECRET / PRIVY_WALLET_ID | Signing (preferred) |
AGENT_PRIVATE_KEY | Signing fallback (dev only) |
AGENT_MODE | accumulate (default) or build |
tick: { enabled: true, schedule: "0 * * * *" } # every hour UTC
harness/tick.ts executes live by default. For testing without transactions:
DRY_RUN=true node --env-file=.env --import tsx harness/tick.ts
harness/tick.ts → harness/providers/venice.ts (claim + staking gate) → harness/providers/liquidity.ts (reinvestToLP) → memory/tool-routing.jsonl (inference log)