소스 정보
- 저장소
- irfndi/prism-liquidity-agent
- 최근 소스 활동
- 2026년 7월 13일 03:55
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
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 configure Prism liquidity agent for Meteora DLMM pools |
| version | 1.0.0 |
| author | irfndi |
| license | MIT |
| metadata | {"hermes":{"tags":["defi","solana","trading","liquidity","meteora","dlmm"],"related_skills":["prism-rebalance","prism-backtest"],"category":"software-development"}} |
Use this skill when the user wants to install Prism for automated liquidity management 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.
If you don't know which pools to watch, also set ENABLE_POOL_DISCOVERY=true in .env so the agent can find candidates on its own.
prism dev
Decisions are logged to logs/audit-trail.jsonl. To stop, send SIGINT (Ctrl+C).
The 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, persists positions to SQLite | Yes |
| API (cloud) | Account, telemetry, errors, feedback, whoami, subscription | Yes for agents |
| Telegram (chat) | Monitor and control the agent from @prism_agent_bot | No |
| Command | Purpose |
|---|---|
prism dev | Start the trading engine |
prism setup | Interactive .env wizard |
prism register | Create the required cloud account |
prism doctor [--fix] | Validate registration, providers, and local state |
prism whoami | Show cloud account info (requires prism register) |
prism backtest | Run a historical simulation |
prism update | Check for and apply updates |
prism issue "<msg>" | Store an issue in Prism Cloud D1 |
prism wallet {generate,import,show} | Manage the local Solana keypair |
prism link-telegram | Link the cloud account to @prism_agent_bot |
bun run dev instead of prism dev. prism dev goes through the CLI wrapper that resolves the install root and respects config. bun run dev bypasses that and may write .env to the wrong directory..env. Use prism setup to update config. Hand-edits work but skip validation.prism register. Registration is required before setup and dev.PAPER_TRADING=false without a wallet. Live mode requires WALLET_PRIVATE_KEY in .env. Use prism wallet generate to create one.PATH. After the one-liner install, ~/.local/bin must be on PATH for the prism wrapper to be found.curl -fsSL https://bun.sh/install | bashEMBEDDINGS_BACKEND=fallback is the default)prism: command not found: export PATH="$HOME/.local/bin:$PATH"prism setup with a valid key or custom RPC URLENABLE_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 # should show scan cycle decisions
rm -rf ~/.prism ~/.local/bin/prism ~/.config/prism/agent-id ~/.config/prism/install-id ~/.config/prism/credentials.json ~/.config/prism/wallet.json