From 19648e2a51413e960f3349ecfe6f76f020eaf763 Mon Sep 17 00:00:00 2001 From: Amos Date: Tue, 21 Apr 2026 16:02:14 +0800 Subject: [PATCH] fix(morpho-plugin): sync version refs to 0.2.7 + H2 headings in SUMMARY.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two unrelated-but-small doc/metadata fixes, bundled to avoid PR noise: 1. CI-003: Align version fields across files. The upstream build bot bumped plugin.yaml to 0.2.7 (commit 4ae9278 `build: morpho-plugin v0.2.7`) but left the other version fields at 0.2.6, causing `morpho-plugin --version` to report 0.2.6 and the in-SKILL.md update checker to ping against a mismatched LOCAL_VER. - Cargo.toml 0.2.6 -> 0.2.7 - .claude-plugin/plugin.json 0.2.6 -> 0.2.7 - SKILL.md frontmatter 0.2.6 -> 0.2.7 - SKILL.md inline refs: LOCAL_VER, download URL (@0.2.7), managed marker write, install-report JSON, --version expected string (6 occurrences total) CHANGELOG v0.2.6 header intentionally preserved (historical). 2. SUMMARY.md: convert bold section titles to H2 so the webview renders them as proper headings instead of blending with body copy. - **Overview** -> ## Overview - **Prerequisites** -> ## Prerequisites - **Quick Start** -> ## Quick Start Docs/metadata only — no code changes. No additional version bump (we are aligning to the already-released 0.2.7). Co-Authored-By: Claude Opus 4.7 (1M context) --- skills/morpho-plugin/.claude-plugin/plugin.json | 2 +- skills/morpho-plugin/Cargo.lock | 2 +- skills/morpho-plugin/Cargo.toml | 2 +- skills/morpho-plugin/SKILL.md | 10 +++++----- skills/morpho-plugin/SUMMARY.md | 6 +++--- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/skills/morpho-plugin/.claude-plugin/plugin.json b/skills/morpho-plugin/.claude-plugin/plugin.json index d0cac8f57..3583de954 100644 --- a/skills/morpho-plugin/.claude-plugin/plugin.json +++ b/skills/morpho-plugin/.claude-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "morpho", "description": "Supply, borrow and earn yield on Morpho \u2014 a permissionless lending protocol with $5B+ TVL. Trigger phrases: supply to morpho, deposit to morpho vault, borrow from morpho, repay morpho loan, morpho health factor, my morpho positions, morpho interest rates, claim morpho rewards, morpho markets, metamorpho vaults.", - "version": "0.2.6", + "version": "0.2.7", "author": { "name": "GeoGu360", "github": "GeoGu360" diff --git a/skills/morpho-plugin/Cargo.lock b/skills/morpho-plugin/Cargo.lock index ccf4d52d3..3c5e56a84 100644 --- a/skills/morpho-plugin/Cargo.lock +++ b/skills/morpho-plugin/Cargo.lock @@ -1513,7 +1513,7 @@ dependencies = [ [[package]] name = "morpho-plugin" -version = "0.2.6" +version = "0.2.7" dependencies = [ "alloy-primitives", "alloy-sol-types", diff --git a/skills/morpho-plugin/Cargo.toml b/skills/morpho-plugin/Cargo.toml index 200fc13a4..1f497b5ef 100644 --- a/skills/morpho-plugin/Cargo.toml +++ b/skills/morpho-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "morpho-plugin" -version = "0.2.6" +version = "0.2.7" edition = "2021" [[bin]] diff --git a/skills/morpho-plugin/SKILL.md b/skills/morpho-plugin/SKILL.md index 5b2a8ba5a..251d00d55 100644 --- a/skills/morpho-plugin/SKILL.md +++ b/skills/morpho-plugin/SKILL.md @@ -1,7 +1,7 @@ --- name: morpho-plugin description: "Supply, borrow and earn yield on Morpho — a permissionless lending protocol with $5B+ TVL. Trigger phrases: supply to morpho, deposit to morpho vault, borrow from morpho, repay morpho loan, morpho health factor, my morpho positions, morpho interest rates, claim morpho rewards, morpho markets, metamorpho vaults." -version: "0.2.6" +version: "0.2.7" author: "GeoGu360" tags: - lending @@ -25,7 +25,7 @@ tags: # Check for skill updates (1-hour cache) UPDATE_CACHE="$HOME/.plugin-store/update-cache/morpho-plugin" CACHE_MAX=3600 -LOCAL_VER="0.2.6" +LOCAL_VER="0.2.7" DO_CHECK=true if [ -f "$UPDATE_CACHE" ]; then @@ -98,7 +98,7 @@ case "${OS}_${ARCH}" in mingw*_aarch64|msys*_aarch64|cygwin*_aarch64) TARGET="aarch64-pc-windows-msvc"; EXT=".exe" ;; esac mkdir -p ~/.local/bin -curl -fsSL "https://github.com/okx/plugin-store/releases/download/plugins/morpho-plugin@0.2.6/morpho-plugin-${TARGET}${EXT}" -o ~/.local/bin/.morpho-plugin-core${EXT} +curl -fsSL "https://github.com/okx/plugin-store/releases/download/plugins/morpho-plugin@0.2.7/morpho-plugin-${TARGET}${EXT}" -o ~/.local/bin/.morpho-plugin-core${EXT} chmod +x ~/.local/bin/.morpho-plugin-core${EXT} # Symlink CLI name to universal launcher @@ -106,7 +106,7 @@ ln -sf "$LAUNCHER" ~/.local/bin/morpho-plugin # Register version mkdir -p "$HOME/.plugin-store/managed" -echo "0.2.6" > "$HOME/.plugin-store/managed/morpho-plugin" +echo "0.2.7" > "$HOME/.plugin-store/managed/morpho-plugin" ``` ### Report install (auto-injected, runs once) @@ -126,7 +126,7 @@ if [ ! -f "$REPORT_FLAG" ]; then # Report to Vercel stats curl -s -X POST "https://plugin-store-dun.vercel.app/install" \ -H "Content-Type: application/json" \ - -d '{"name":"morpho-plugin","version":"0.2.6"}' >/dev/null 2>&1 || true + -d '{"name":"morpho-plugin","version":"0.2.7"}' >/dev/null 2>&1 || true # Report to OKX API (with HMAC-signed device token) curl -s -X POST "https://www.okx.com/priapi/v1/wallet/plugins/download/report" \ -H "Content-Type: application/json" \ diff --git a/skills/morpho-plugin/SUMMARY.md b/skills/morpho-plugin/SUMMARY.md index 73ad15cba..2bc284a99 100644 --- a/skills/morpho-plugin/SUMMARY.md +++ b/skills/morpho-plugin/SUMMARY.md @@ -1,13 +1,13 @@ -**Overview** +## Overview Morpho is a permissionless lending protocol on Ethereum and Base. This skill lets you earn yield via MetaMorpho vaults, borrow against collateral on Morpho Blue isolated markets, repay, withdraw, monitor positions with health factors, and claim Merkl rewards. -**Prerequisites** +## Prerequisites - onchainos CLI installed and logged in - ETH for gas on Ethereum mainnet (chain 1) or Base (chain 8453) - USDC / WETH (or other supported asset) on the target chain to supply or use as collateral -**Quick Start** +## Quick Start 1. Check your state and get a guided next step: `morpho-plugin quickstart` 2. If you see `status: no_funds` / `needs_gas` / `needs_funds` — fund the wallet address shown in the output (ETH for gas, plus USDC or WETH to supply) 3. Browse available vaults and markets: `morpho-plugin vaults --asset USDC` or `morpho-plugin markets --asset USDC`