Token导航 LogoToken导航TokenDH.com
待分类需要联网github未标认证来源可访问许可证需确认审计提醒

morpho-climorpho CLI 命令行

Agent Skill

morpho-cli 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

808

周安装

34

GitHub Stars

公开资料未说明

下载量

283
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:morpho-cli(morpho CLI 命令行)
来源仓库:https://github.com/morpho-org/morpho-skills
仓库路径:skills/morpho-cli
安装命令:
npx skills add https://github.com/morpho-org/morpho-skills --skill morpho-cli
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/morpho-org/morpho-skills --skill morpho-cli

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态和协作事项进行整理。
  • 建议结合原始 README 进一步验证具体用法和功能边界。
  • 使用前需确认权限范围和是否涉及文件读写或命令执行。
  • morpho-cli 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

morpho-cli

Experimental (pre-v1.0) — Command syntax, response schemas, and available operations may change. Always verify critical outputs independently.

Query Morpho protocol data and build unsigned transactions. All commands output JSON to stdout. No private keys needed.

npx @morpho-org/cli@latest <command> [options]

Supported chains: ethereum, base, arbitrum, optimism, polygon, unichain, worldchain, katana, hyperevm, monad, stable. Every command requires --chain.

Response Schemas

  • Read commands — exact JSON shapes for query-vaults, get-vault, query-markets, get-market, get-positions, get-token-balance, health-check, get-supported-chains
  • Write commands — exact JSON shapes for prepare-* and simulate-transactions

Quick Reference

# Read — query protocol state
npx @morpho-org/cli@latest query-vaults    --chain base [--asset-symbol USDC] [--asset-address 0x...] [--sort apy_desc|apy_asc|tvl_desc|tvl_asc] [--limit 5] [--skip 0] [--fields address,name,symbol,apyPct,tvl,tvlUsd,feePct]
npx @morpho-org/cli@latest get-vault       --chain base --address 0x...
npx @morpho-org/cli@latest query-markets   --chain base [--loan-asset 0x...] [--collateral-asset 0x...] [--sort-by supplyApy|borrowApy|netSupplyApy|netBorrowApy|supplyAssetsUsd|borrowAssetsUsd|totalLiquidityUsd] [--sort-direction asc|desc] [--limit 10] [--skip 0] [--fields supplyApy,borrowApy,totalSupply,totalBorrow,totalCollateral,totalLiquidity,supplyAssetsUsd,borrowAssetsUsd,collateralAssetsUsd,liquidityAssetsUsd]
npx @morpho-org/cli@latest get-market      --chain base --id 0x...
npx @morpho-org/cli@latest get-positions   --chain base --user-address 0x...
npx @morpho-org/cli@latest get-token-balance --chain base --user-address 0x... --token-address 0x...

# Write — prepare unsigned transactions (simulation runs by default; add --no-simulate to skip)
npx @morpho-org/cli@latest prepare-deposit              --chain base --vault-address 0x... --user-address 0x... --amount 1000
npx @morpho-org/cli@latest prepare-withdraw             --chain base --vault-address 0x... --user-address 0x... --amount max
npx @morpho-org/cli@latest prepare-supply               --chain base --market-id 0x... --user-address 0x... --amount 5000
npx @morpho-org/cli@latest prepare-borrow               --chain base --market-id 0x... --user-address 0x... --borrow-amount 1
npx @morpho-org/cli@latest prepare-repay                --chain base --market-id 0x... --user-address 0x... --amount max
npx @morpho-org/cli@latest prepare-supply-collateral    --chain base --market-id 0x... --user-address 0x... --amount 5000
npx @morpho-org/cli@latest prepare-withdraw-collateral  --chain base --market-id 0x... --user-address 0x... --amount max

# Simulate — standalone re-simulation or arbitrary transaction simulation
npx @morpho-org/cli@latest simulate-transactions --chain base --from 0x... --transactions '<JSON>' --analysis-context '<JSON>'

# Utility
npx @morpho-org/cli@latest health-check
npx @morpho-org/cli@latest get-supported-chains

Write Workflow: Prepare → Present

Every write operation follows two steps. Simulation runs automatically inside prepare-*.

  1. Prepare — run a prepare-* command. The CLI handles token decimals, allowances, approvals, and simulation automatically. Returns a flat PreparedOperation with the fields you need at the root: operation, summary, requirements (informational — approval txs are already in transactions), transactions (the unsigned payloads to sign), simulated, simulationOk, totalGasUsed, outcome, warnings. Pass --no-simulate to skip simulation (in which case simulationOk, totalGasUsed, and most of outcome will be absent).
  2. Present — show summary, the transactions list, the key outcome fields (see table below), and any warnings in tabular format. If simulationOk is false, inspect revertReason before presenting.

The outcome block is discriminated by operation type:

Operationoutcome shapeKey fields to surface
deposit, withdraw (vaults)outcome.vaultsharesReceived, assetsReceived, positionAssets, positionShares
supply, borrow, repay, supply_collateral, withdraw_collateral (markets)outcome.markethealthFactor, isHealthy, maxBorrowable, utilizationBeforePctutilizationAfterPct, borrowApyBeforePctborrowApyAfterPct, plus post-operation supplied / borrowed / collateral (raw integer strings — divide by 10^decimals)

Use simulate-transactions separately only for re-simulating with different parameters or simulating arbitrary transactions. Its top-level success field is allSucceeded (not simulationOk) — see references/write.md.

Simulation Failures

RevertCauseWhat to do
ERC20: insufficient allowanceMissing approvalRe-prepare — CLI should include approvals automatically
ERC4626ExceededMaxWithdrawVault liquidity insufficientReduce amount (see below)
insufficient balanceUser lacks tokensTell the user
Custom error hexProtocol-specificQuery state with get-market or get-vault to diagnose

Partial Withdrawal

When prepare-withdraw --amount max cannot withdraw the full balance, the CLI returns a PreparedOperation whose warnings[] calls out the liquidity shortfall. The response is still valid — it represents the largest withdrawable amount right now.

  1. Surface the warning to the user verbatim — do not silently accept a smaller withdrawal.
  2. Offer two paths:

- Accept the partial amount the CLI prepared (inspect outcome.vault.assetsReceived for the concrete figure, optionally re-run prepare-withdraw with --amount <value> using ~99% of that figure as a safety buffer against interest accrual between prepare and execute). - Wait for more liquidity — locked assets unlock as underlying-market borrowers repay or the curator reallocates.

  1. Never invent an amount by parsing the summary string — it is a human sentence, not a machine-readable field.

Safety Rules

  1. Check simulation before presenting — simulation runs by default; check simulationOk (for prepare-*) or allSucceeded (for simulate-transactions) before presenting
  2. Never sign or broadcast — unsigned payloads only
  3. Watch health factor for borrows — warn if below 1.1
  4. Communicate liquidity constraints clearly for partial withdrawals

CLI Errors

When a npx @morpho-org/cli@latest command fails, stop and report the error to the user. Do not:

  • Retry with different parameters you invented
  • Fall back to alternative tools or APIs
  • Attempt to work around missing required options
  • Pipe output through jq or other filters — use the CLI's built-in flags (--fields, --sort-by, --limit, etc.) to shape the response

Common Mistakes

  • Forgetting --chain — every command requires it, there is no default
  • Using chain IDs (1, 8453) instead of names (ethereum, base)
  • Dividing TokenAmount.value by 10^decimalsTokenAmount values are already decimal-applied (a USDC value of "1000" means $1,000, not 1,000 micro-USDC). *Pct fields are already percent-scaled; *Usd fields are already in dollars. The only raw integer strings are inside outcome.market.{supplied,borrowed,collateral} and outcome.vault.{sharesReceived,assetsReceived,positionShares} — those do need /10^decimals for display.
  • Assuming 18 decimals — USDC/USDT have 6, WBTC/cbBTC have 8. Read decimals from response metadata; never assume.
  • Passing raw units as --amount — CLI expects human-readable (1000 not 1000000000)
  • Using --no-simulate without reason — simulation is on by default; only skip when debugging or for speed
  • Ignoring simulationOk === false on prepare-* (or allSucceeded === false on simulate-transactions) — diagnose before presenting

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.35%
按下载量换算94

Claude

31.37%
按下载量换算89

Cursor

18.38%
按下载量换算52

Gemini CLI

9.12%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills