用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/irfndi/prism-liquidity-agent --skill prism-install命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Operate Prism, an autonomous Solana DLMM liquidity agent for Meteora pools. Use when the user asks about "prism", "DLMM", "liquidity agent", "Meteora pools", "rebalance positions", "paper trade Solana", or "start the trading agent".
Operate Prism, an autonomous Solana DLMM liquidity agent for Meteora pools, through Hermes ACP. Use when the user asks about "prism", "DLMM", "liquidity agent", "Meteora pools", "rebalance positions", "paper trade Solana", or wants the agent to check/trade/manage Prism positions.
Operate Prism, an autonomous Solana DLMM liquidity agent for Meteora pools, through the OpenClaw Gateway. Use when the user asks about "prism", "DLMM", "liquidity agent", "Meteora pools", "rebalance positions", "paper trade Solana", or wants the agent to check/trade/manage Prism positions.
基于 SOC 职业分类
正在显示 SKILL.md
| name | prism-install |
| description | Install and run Prism for automated Meteora DLMM rebalancing on Solana |
Install and run Prism for automated Meteora DLMM rebalancing on Solana.
prism, prism-liquidity-agent, or @irfndi/prism-liquidity-agentThe one-liner installer handles Bun (installs if missing), detects your OS/architecture, downloads a compiled bundle from Cloudflare R2, verifies its SHA-256 checksum, extracts it to ~/.prism, and writes a prism wrapper to ~/.local/bin/.
curl -fsSL https://raw.githubusercontent.com/irfndi/prism-liquidity-agent/main/scripts/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
Use the installed prism wrapper as the product boundary. The release installer provides the checksum-verified platform bundle under ~/.prism and the global command under ~/.local/bin/prism.
curl -fsSL https://raw.githubusercontent.com/irfndi/prism-liquidity-agent/main/scripts/install.sh \
| PRISM_SKIP_SETUP=1 bash
export PATH="$HOME/.local/bin:$PATH"
prism register
prism version
prism doctor
prism setup --non-interactive --rpc-url="$SOLANA_RPC_URL"
prism dev
Upgrade with prism update --check-only and prism update. Do not edit the Prism checkout, run bun run dev, or run bun install during agent operations; those commands are for Prism development. bun add --global prism is unsupported because no npm package with that name is published.
prism setup --non-interactive --rpc-url="$SOLANA_RPC_URL" --rpc-fallback-url="${SOLANA_RPC_FALLBACK_URL:-}"
This writes .env with the RPC provider settings, an optional watchlist, and paper-trading defaults. The default mode is paper trading — no real funds are at risk.
prism dev
Decisions are logged to logs/audit-trail.jsonl. To stop, send SIGINT (Ctrl+C).
prism whoami — Show current accountprism backtest — Run backtestprism update — Check for updatesprism issue "<msg>" — Store an issue in Prism Cloud D1prism register — Create the required cloud accountprism doctor [--fix] — Validate registration, providers, and local stateprism wallet {generate,import,show} — Manage the local Solana keypairprism link-telegram — Link to @prism_agent_botThe API account is required before prism setup and prism dev so telemetry,
errors, feedback, and usage have an owner. Telegram remains optional.
| Layer | Purpose | Required? |
|---|---|---|
| CLI (local) | Runs the trading engine | Yes |
| API (cloud) | Account, telemetry, errors, feedback, whoami, subscription | Yes for agents |
| Telegram (chat) | Monitor from @prism_agent_bot | No |
bun run dev instead of prism dev — prism dev respects the install root..env — use prism setup.prism register — registration is required before setup and dev.PAPER_TRADING=false without a wallet — use prism wallet generate first.PATH after install.prism: command not found → export PATH="$HOME/.local/bin:$PATH"Bun not found → installer auto-installs; check $HOME/.bun/binsqlite-vec fails on Linux → engine falls back to system libsqlite3.so automaticallyBigInt serialization error → set EMBEDDINGS_BACKEND=fallback in .env (default)prism setup with a valid keyENABLE_POOL_DISCOVERY=true in .envprism --version # should print 0.0.8 or later
prism dev & # start engine in background
sleep 30
tail -n 20 logs/audit-trail.jsonl
rm -rf ~/.prism ~/.local/bin/prism ~/.config/prism/agent-id ~/.config/prism/install-id ~/.config/prism/credentials.json ~/.config/prism/wallet.json