Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/nirholas/three.ws/elizaos-plugin-guidenpx skills add nirholas/three.ws --skill elizaos-plugin-guidegit clone --depth 1 https://github.com/nirholas/three.wsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/nirholas/three.ws/elizaos-plugin-guide)<a href="https://agentmods.dev/skills/nirholas/three.ws/elizaos-plugin-guide"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/elizaos-plugin-guide.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00060 | $0.01530 |
| Opus 5 | $0.00030 | $0.00765 |
| Sonnet 5 | $0.00012 | $0.00306 |
| Haiku 4.5 | $0.00006 | $0.00153 |
Grade A, and why
elizaos-plugin-guide scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ElizaOS Plugin Development Guide
ElizaOS is the leading framework for autonomous AI agents in Web3. This guide covers plugin development, architecture, and DeFi integration patterns.
ElizaOS Architecture
ElizaOS Runtime
├── Core
│ ├── Memory Manager # Persistent conversation memory
│ ├── Action System # Tool execution
│ ├── Evaluator System # Response quality evaluation
│ └── Provider System # Context injection
├── Plugins
│ ├── @elizaos/plugin-solana # Solana tools
│ ├── @elizaos/plugin-evm # EVM chain tools
│ ├── @elizaos/plugin-twitter # X/Twitter integration
│ └── Your custom plugin # ← This guide
└── Clients
├── Discord
├── Telegram
├── Twitter/X
└── Direct (REST API)
Plugin Structure
my-eliza-plugin/
├── src/
│ ├── index.ts # Plugin entry point
│ ├── actions/ # Actions (tools) the agent can execute
│ │ ├── swap.ts
│ │ └── portfolio.ts
│ ├── evaluators/ # Evaluate responses and context
│ │ └── riskCheck.ts
│ ├── providers/ # Inject context into prompts
│ │ └── priceData.ts
│ └── types.ts # TypeScript types
├── package.json
└── tsconfig.json
Entry Point
import { Plugin } from '@elizaos/core';
import { swapAction } from './actions/swap';
import { portfolioAction } from './actions/portfolio';
import { riskEvaluator } from './evaluators/riskCheck';
import { priceProvider } from './providers/priceData';
export const speraxPlugin: Plugin = {
name: 'sperax',
description: 'Sperax DeFi tools — USDs yield, SPA staking, Farms',
actions: [swapAction, portfolioAction],
evaluators: [riskEvaluator],
providers: [priceProvider],
};
export default speraxPlugin;
Actions (Tools)
Actions are things the agent can do:
import { Action, IAgentRuntime, Memory } from '@elizaos/core';
export const swapAction: Action = {
name: 'SWAP_TOKENS',
description: 'Swap tokens on a DEX',
// Determines if this action should be triggered
validate: async (runtime: IAgentRuntime, message: Memory) => {
return message.content.text.toLowerCase().includes('swap');
},
// Executes the action
handler: async (runtime: IAgentRuntime, message: Memory) => {
const { tokenIn, tokenOut, amount } = parseSwapIntent(message.content.text);
// Execute swap via DEX aggregator
const result = await executeSwap({
tokenIn,
tokenOut,
amount,
chain: 'arbitrum',
});
return {
text: `Swapped ${amount} ${tokenIn} for ${result.amountOut} ${tokenOut}`,
action: 'SWAP_TOKENS',
};
},
// Example conversations for the LLM
examples: [
[
{ user: 'user1', content: { text: 'Swap 100 USDC for SPA' } },
{ user: 'agent', content: { text: 'Swapping 100 USDC for SPA on Arbitrum...' } },
],
],
};
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 218 lines · 60 tokens per session scan A 6467eeac1880
elizaos-plugin-guide is a skill published in the GitHub repository nirholas/three.ws (110 stars, last pushed yesterday), licensed Apache-2.0. It adds 60 tokens to every session and 1,530 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
blockchain-cross-chain
Cross-chain protocols, IBC, LayerZero, Wormhole, Axelar, CCIP, bridges, atomic composability, shared sequencer, cross-chain message passing. Covers trust models (light clients, external validators, ZK proofs), bridge security, token representation (canonical, wrapped, native), relayer economics, and cross-chain…
xpr-network-dev
XPR Network (formerly Proton) blockchain development - proton-tsc smart contracts, @proton CLI and web SDK, RPC and Hyperion queries, DeFi (MetalX, Alcor, LOAN), NFTs, the XPR Agents job board, node and Hyperion operations. Use for anything mentioning XPR, Proton, or @proton packages.
blockchain-management
Use this skill when asked about blockchain project management, DAO governance, multi-sig operations, treasury management, tokenomics design, and web3 project methodology. Languages: Solidity, TypeScript, Python. Covers DAO governance frameworks (Compound Governor, Aave, Snapshot, Tally), multi-sig wallet operations…
modernize-move
Detects and modernizes outdated Move V1 syntax, patterns, and APIs to Move V2+. Use when upgrading legacy contracts, migrating to modern syntax, or converting old patterns to current best practices. NOT for writing new contracts (use write-contracts) or fixing bugs.
threejs-docs
Comprehensive Three.js reference covering core API (objects, cameras, lights, materials, geometries, renderers, scenes, textures, math, animation, audio, loaders, helpers, nodes), all addons (controls, postprocessing, loaders, exporters, geometries, shaders, WebXR, physics), TSL (Three.js Shading Language) functions…
coinmarketcap
Expert assistant for CoinMarketCap Pro API — price quotes, listings, historical OHLCV, market metrics, Fear & Greed Index, CMC100/CMC20 indices, exchange data, DEX data, airdrops, trending, community sentiment. Covers 10+ endpoint categories across REST + MCP + x402 pay-per-call modes. Use when the user wants: current…