From e9ee2fb466f872be413ecc7b1057b783a82aeb6f Mon Sep 17 00:00:00 2001 From: Amos Date: Tue, 21 Apr 2026 18:28:55 +0800 Subject: [PATCH 1/2] chore(kamino-lend-plugin): use H2 headings in SUMMARY.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace bold `**Overview**` / `**Prerequisites**` / `**Quick Start**` with `## Overview` / `## Prerequisites` / `## Quick Start` so the section titles render as proper headings in the webview instead of blending into body copy. Docs-only change — no version bump. Co-Authored-By: Claude Opus 4.7 (1M context) --- skills/kamino-lend-plugin/SUMMARY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skills/kamino-lend-plugin/SUMMARY.md b/skills/kamino-lend-plugin/SUMMARY.md index 00b2e1a3..931425ef 100644 --- a/skills/kamino-lend-plugin/SUMMARY.md +++ b/skills/kamino-lend-plugin/SUMMARY.md @@ -1,13 +1,13 @@ -**Overview** +## Overview Kamino Lend is a leading lending protocol on Solana. This skill lets you browse lending markets and reserves with supply/borrow APYs, supply assets to earn yield, borrow against collateral, repay loans, withdraw, and monitor positions with health factors. -**Prerequisites** +## Prerequisites - onchainos CLI installed and logged in - SOL for gas on Solana mainnet - USDC (or another supported SPL token) to supply or use as collateral -**Quick Start** +## Quick Start 1. Check your state and get a guided next step: `kamino-lend quickstart` 2. If you see `status: no_funds` / `needs_gas` / `needs_funds` — fund the wallet address shown in the output (SOL for gas + USDC or another supported token to supply) 3. Browse available reserves with APYs: `kamino-lend reserves --min-apy 2` From ec007a0a9fd0e2c3de142cc96b7fb3b6323c2a51 Mon Sep 17 00:00:00 2001 From: Amos Date: Tue, 21 Apr 2026 19:25:48 +0800 Subject: [PATCH 2/2] chore(kamino-lend-plugin): use full binary name in SUMMARY.md examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The binary installed at `~/.local/bin/` is `kamino-lend-plugin`, not `kamino-lend`. Users copying Quick Start commands verbatim would hit "command not found". Aligns all examples with the actual installed binary name. Docs-only change — no version bump. Co-Authored-By: Claude Opus 4.7 (1M context) --- skills/kamino-lend-plugin/SUMMARY.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/skills/kamino-lend-plugin/SUMMARY.md b/skills/kamino-lend-plugin/SUMMARY.md index 931425ef..088fada3 100644 --- a/skills/kamino-lend-plugin/SUMMARY.md +++ b/skills/kamino-lend-plugin/SUMMARY.md @@ -8,11 +8,11 @@ Kamino Lend is a leading lending protocol on Solana. This skill lets you browse - USDC (or another supported SPL token) to supply or use as collateral ## Quick Start -1. Check your state and get a guided next step: `kamino-lend quickstart` +1. Check your state and get a guided next step: `kamino-lend-plugin quickstart` 2. If you see `status: no_funds` / `needs_gas` / `needs_funds` — fund the wallet address shown in the output (SOL for gas + USDC or another supported token to supply) -3. Browse available reserves with APYs: `kamino-lend reserves --min-apy 2` -4. View lending markets for deeper detail: `kamino-lend markets` -5. If `status: ready` — supply to earn yield (preview without `--confirm`, then re-run with it): `kamino-lend supply --asset USDC --amount 100 --confirm` -6. If `status: active` — review positions and health factor: `kamino-lend positions` -7. Borrow against your supplied collateral: `kamino-lend borrow --asset USDC --amount 50 --confirm` -8. Exit: `kamino-lend repay --asset USDC --amount all --confirm` or `kamino-lend withdraw --asset USDC --amount 100 --confirm` +3. Browse available reserves with APYs: `kamino-lend-plugin reserves --min-apy 2` +4. View lending markets for deeper detail: `kamino-lend-plugin markets` +5. If `status: ready` — supply to earn yield (preview without `--confirm`, then re-run with it): `kamino-lend-plugin supply --asset USDC --amount 100 --confirm` +6. If `status: active` — review positions and health factor: `kamino-lend-plugin positions` +7. Borrow against your supplied collateral: `kamino-lend-plugin borrow --asset USDC --amount 50 --confirm` +8. Exit: `kamino-lend-plugin repay --asset USDC --amount all --confirm` or `kamino-lend-plugin withdraw --asset USDC --amount 100 --confirm`