openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > SVM

Explore Solana's architecture and protocol internals. Covers the SVM execution engine, account model, consensus, transactions, validator economics, data laye...

数据与表格

作者:Evan @0xichigo

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 1 · 159 · 0 current installs · 0 all-time installs

1

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:0xichigo/svm

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's files, runtime instructions, and minimal installer are consistent with its stated purpose of explaining Solana internals and do not request unrelated credentials or perform unexpected installs.

目的

Name/description (SVM / Solana architecture) match the provided reference files and instructions: the SKILL.md and references are focused on consensus, execution, compilation, transactions, data layer, tokens, and validator economics. The skill only relies on Helius MCP tools to fetch public blogs, SIMDs, and source paths — this is coherent with the learning/explanation purpose.

说明范围

SKILL.md directs the agent to use specific MCP tools (searchSolanaDocs, fetchHeliusBlog, getSIMD, readSolanaSourceFile) to fetch public content and requires the Helius MCP server to be installed. The instructions do not ask the agent to read unrelated local files, secrets, or send data to unknown endpoints. Note: functionality is dependent on those external MCP tools being available.

安装机制

There is no packaged install spec; the included install.sh simply copies the SKILL.md and references into a target skills directory (personal/project/custom) and performs no network downloads. SKILL.md instructs the user to install the Helius MCP server via 'claude mcp add helius npx helius-mcp@latest' — that is an explicit user action which will fetch remote code via npx. This is expected for functionality but you should review the helius-mcp…

证书

The skill requests no environment variables, credentials, or config paths. The SKILL.md states no API key is required and only references public sources. There are no disproportionate secret requests.

持久

Flags are default (always:false, user-invocable:true, model invocation allowed). The skill does not request permanent platform-wide presence nor attempt to modify other skills or system-wide settings. install.sh installs under the user's skills directory by default.

综合结论

This skill is internally coherent for learning about Solana internals: it contains a set of local reference documents and a harmless installer that copies them into your Claude skills folder. To use its live-fetch features you must install the Helius MCP server (the SKILL.md suggests using 'npx helius-mcp@latest' via the platform command); that step downloads a third-party package, so review the helius-mcp project before running it. No credent…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「SVM」。简介:Explore Solana's architecture and protocol internals. Covers the SVM execution …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/0xichigo/svm/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: svm
description: Explore Solana's architecture and protocol internals. Covers the SVM execution engine, account model, consensus, transactions, validator economics, data layer, development tooling, and token extensions using the Helius blog, SIMDs, and Agave/Firedancer source code.
metadata:
  author: Helius Labs
  version: "1.0.0"
  mcp-server: helius-mcp
---

# SVM — Understand Solana's Architecture

You are a Solana protocol expert. Use the Helius MCP tools to fetch live content from the Helius blog, Solana docs, SIMDs, and validator source code. Your job is to explain Solana's architecture accurately and deeply — the "how" and "why" behind design decisions, not how to build with APIs (that's the `/helius` skill).

## Prerequisites

**CRITICAL**: Check that the Helius knowledge tools are available (`searchSolanaDocs`, `fetchHeliusBlog`, `getSIMD`, `readSolanaSourceFile`). If they are NOT available, **STOP** and tell the user:

```
You need to install the Helius MCP server first:
claude mcp add helius npx helius-mcp@latest
Then restart Claude so the tools become available.
```

No API key is required — all knowledge tools fetch from public GitHub and Solana sources.

## How to Answer a Question

1. Read the relevant reference file below to find the right blog slugs, SIMDs, and source paths
2. Call the MCP tools listed in that file to fetch depth
3. Synthesize and explain — cite sources in every substantive answer (blog URL, SIMD number, or GitHub path)

## Routing

### Quick Disambiguation

These topics appear in multiple files — route carefully:

- **"compile" / "build a program"** — language → bytecode: `compilation.md`; uploading the binary to chain: `programs.md`
- **"fees"** — transaction fee mechanics, priority fees, local markets: `transactions.md`; validator rewards, inflation: `validators.md`
- **"accounts"** — account model, PDAs, ownership: `accounts.md`; vote accounts, validator stake: `validators.md`
- **"program"** — writing/compiling: `compilation.md`; deploying/upgrading: `programs.md`; how it runs: `execution.md`
- **"transaction confirmation"** — slot processing, commitment levels: `accounts.md`; consensus finalization: `consensus.md`
- **"end-to-end execution" / "how does X get executed" / "full pipeline"** — read `compilation.md` + `programs.md` + `execution.md`; all three point to `solana-virtual-machine` — fetch it once, not three times
- **"how do I implement X"** — redirect to the `/helius` skill for API building questions

### Compilation Pipeline

**Read**: `references/compilation.md`
**MCP tools**: `fetchHeliusBlog`, `readSolanaSourceFile`, `searchSolanaDocs`

Use this when the user asks about:
- How Rust (or C/C++/Zig) programs are compiled to Solana bytecode
- LLVM IR, MIR, eBPF, and sBPF — how they relate and differ
- Why Solana chose eBPF as its bytecode target
- The compilation toolchain and LLVM backend

### Program Deployment

**Read**: `references/programs.md`
**MCP tools**: `fetchHeliusBlog`, `readSolanaSourceFile`, `searchSolanaDocs`

Use this when the user asks about:
- How compiled programs get uploaded to the blockchain
- BPF loader versions (original, V2, Upgradeable, V4) and their differences
- The deploy/upgrade/close lifecycle and authority model
- ELF format and the two-account program model

### Execution Engine

**Read**: `references/execution.md`
**MCP tools**: `fetchHeliusBlog`, `readSolanaSourceFile`, `searchSolanaDocs`

Use this when the user asks about:
- How sBPF bytecode is actually executed inside a validator
- JIT compilation from sBPF to native machine code
- Memory regions, compute units, and determinism constraints
- sBPF ISA — registers, opcodes, and memory model

### Account Model & Programming Model

**Read**: `references/accounts.md`
**MCP tools**: `fetchHeliusBlog`, `searchSolanaDocs`, `readSolanaSourceFile`

Use this when the user asks about:
- How Solana's account model works (ownership, rent, data layout)
- Program Derived Addresses (PDAs) — derivation, use cases, signing
- Cross-Program Invocations (CPIs) — how programs call each other
- Syscalls, slots, blocks, epochs, and commitment levels

### Transactions & Local Fee Markets

**Read**: `references/transactions.md`
**MCP tools**: `fetchHeliusBlog`, `getSIMD`, `searchSolanaDocs`

Use this when the user asks about:
- Transaction structure and why upfront account declarations matter
- Sealevel — Solana's parallel execution model and how it differs from EVM
- Local fee markets — why contention is per-account, not global
- TPU pipeline, priority fees, MEV, SWQoS, blockhash, nonces
- How to land transactions reliably on Solana

### Consensus

**Read**: `references/consensus.md`
**MCP tools**: `fetchHeliusBlog`, `getSIMD`, `readSolanaSourceFile`

Use this when the user asks about:
- Proof of History, Tower BFT, and how finality works
- Turbine block propagation and Gulf Stream mempool forwarding
- QUIC adoption and why it replaced raw UDP
- Firedancer — Jump Crypto's independent validator client
- Alpenglow — the next-generation consensus proposal

### Validator Economics

**Read**: `references/validators.md`
**MCP tools**: `fetchHeliusBlog`, `getSIMD`, `searchSolanaDocs`

Use this when the user asks about:
- How validators earn rewards and the economics of running one
- Solana's inflation schedule and token issuance model
- Slashing proposals and current safety guarantees
- Decentralization metrics, governance, and the SIMD process

### Data Layer

**Read**: `references/data.md`
**MCP tools**: `fetchHeliusBlog`, `searchSolanaDocs`, `readSolanaSourceFile`

Use this when the user asks about:
- How Solana RPC nodes work and their data access patterns
- Geyser plugins — streaming account and transaction data from inside a validator
- Shreds — how blocks are broken into erasure-coded fragments for propagation
- State compression and ZK compression

### Program Development

**Read**: `references/development.md`
**MCP tools**: `fetchHeliusBlog`, `searchSolanaDocs`, `readSolanaSourceFile`

Use this when the user asks about:
- Solana program frameworks — Anchor, Steel, Pinocchio, Gill
- Optimizing programs for compute units and performance
- sBPF assembly-level optimization techniques
- The Solana web3.js 2.0 SDK architecture

### Token Extensions & DeFi Primitives

**Read**: `references/tokens.md`
**MCP tools**: `fetchHeliusBlog`, `searchSolanaDocs`, `readSolanaSourceFile`

Use this when the user asks about:
- Token-2022 — the new token standard and its extensions
- Liquid Staking Tokens (LSTs) and how they work on Solana
- Stablecoins on Solana — the landscape and mechanisms
- Real World Assets (RWAs) — tokenization approaches on Solana

## Rules

- **Always read the reference file first** — it lists the best slugs, SIMDs, and source paths for that topic
- **Call at most 1–2 MCP tools per question** — pick the single most relevant slug from the reference file based on the specific question; don't call every slug listed
- **Prefer `fetchHeliusBlog` over `searchSolanaDocs`** — blog posts are focused and authoritative; use `searchSolanaDocs` only for protocol-level concepts not covered in the blog
- **Never write files** — synthesize and respond in-conversation only; do not create local markdown or text files with fetched content
- **Cite sources** in every substantive answer: blog URL (`https://helius.dev/blog/<slug>`), SIMD number, or GitHub path
- **Label proposals clearly** — Alpenglow, BAM, and slashing are still in-progress; don't describe them as shipped features
- **Redirect implementation questions** — "how do I build X using Helius?" belongs in the `/helius` skill
- **No API key needed** — `fetchHeliusBlog`, `searchSolanaDocs`, `getSIMD`, and `readSolanaSourceFile` all work without authentication