ソース情報
- リポジトリ
- irfndi/beam-clmm
- ソースの最終更新活動
- 2026年8月8日 15:23
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/irfndi/beam-clmm --skill beam-installコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Install and configure Beam liquidity agent for Meteora DLMM pools
Install, configure, and run the Beam liquidity agent for automated Meteora DLMM rebalancing on Solana
Operate Beam, an autonomous Solana DLMM liquidity agent for Meteora pools, through Hermes ACP. Use when the user asks about "beam", "DLMM", "liquidity agent", "Meteora pools", "rebalance positions", "paper trade Solana", or wants the agent to check/trade/manage Beam positions.
| name | beam-install |
| description | Install and run Beam for automated Meteora DLMM rebalancing on Solana |
Install and run Beam for automated Meteora DLMM rebalancing on Solana.
beam, beam-clmm, or @irfndi/beam-clmmThe 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 ~/.beam, and writes a beam wrapper to ~/.local/bin/.
curl -fsSL https://raw.githubusercontent.com/irfndi/beam-clmm/main/scripts/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
Use the installed beam wrapper as the product boundary. The release installer provides the checksum-verified platform bundle under ~/.beam and the global command under ~/.local/bin/beam.
curl -fsSL https://raw.githubusercontent.com/irfndi/beam-clmm/main/scripts/install.sh \
| BEAM_SKIP_SETUP=1 bash
export PATH="$HOME/.local/bin:$PATH"
beam register
beam version
beam doctor
beam setup --non-interactive --rpc-url="$SOLANA_RPC_URL"
beam dev
Upgrade with beam update --check-only and beam update. Do not edit the Beam checkout, run bun run dev, or run bun install during agent operations; those commands are for Beam development. bun add --global beam is unsupported because no npm package with that name is published.
beam 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.
beam dev
Decisions are logged to logs/audit-trail.jsonl. To stop, send SIGINT (Ctrl+C).
beam whoami — Show current accountbeam backtest — Run backtestbeam update — Check for updatesbeam issue "<msg>" — Store an issue in Beam Cloud D1beam register — Create the required cloud accountbeam doctor [--fix] — Validate registration, providers, and local statebeam wallet {generate,import,show} — Manage the local Solana keypairbeam link-telegram — Link to @beam_agent_botThe API account is required before beam setup and beam 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 @beam_agent_bot | No |
bun run dev instead of beam dev — beam dev respects the install root..env — use beam setup.beam register — registration is required before setup and dev.PAPER_TRADING=false without a wallet — use beam wallet generate first.PATH after install.beam: 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)beam setup with a valid keyENABLE_POOL_DISCOVERY=true in .envbeam --version # should print 0.0.8 or later
beam dev & # start engine in background
sleep 30
tail -n 20 logs/audit-trail.jsonl
rm -rf ~/.beam ~/.local/bin/beam ~/.config/beam/agent-id ~/.config/beam/install-id ~/.config/beam/credentials.json ~/.config/beam/wallet.json