sails-ethexe-implementer

sails-ethexe-implementer is a skill for Claude Code from gear-foundation/vara-skills. It costs 60 tokens per session (1,080 once invoked), scanned A, original, MIT.

A Rust implementation guide for Sails applications with the ethexe feature enabled. It covers code that can be called through Ethereum-compatible interfaces, accept payments, or emit Ethereum-style events.

In plain words
What is it for?
Use it to implement approved tasks in an ethexe Sails workspace, including exported methods, payable operations, events, custom types, and message routing.
Why use it?
It keeps implementation aligned with an approved design and the extra type, transport, and system-call rules required by ethexe.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the vara-skills plugin — 26 skills shipped together

Good fit Use it to implement approved tasks in an ethexe Sails workspace, including exported methods, payable operations, events, custom types, and message routing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gear-foundation/vara-skills/sails-ethexe-implementer
Install

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.

Any agent
npx skills add gear-foundation/vara-skills --skill sails-ethexe-implementer
Clone the repo
git clone --depth 1 https://github.com/gear-foundation/vara-skills

Made for: Claude Code.

Or install vara-skills, the plugin that ships this one along with the rest of its 26 skills.

Wrote 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.

agentmods badge for sails-ethexe-implementer

README.md
[![agentmods](https://agentmods.dev/badge/skills/gear-foundation/vara-skills/sails-ethexe-implementer/github.svg)](https://agentmods.dev/skills/gear-foundation/vara-skills/sails-ethexe-implementer)
Your own site
<a href="https://agentmods.dev/skills/gear-foundation/vara-skills/sails-ethexe-implementer"><img src="https://agentmods.dev/badge/skills/gear-foundation/vara-skills/sails-ethexe-implementer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for sails-ethexe-implementer

Your own site · 80×15
<a href="https://agentmods.dev/skills/gear-foundation/vara-skills/sails-ethexe-implementer"><img src="https://agentmods.dev/badge/skills/gear-foundation/vara-skills/sails-ethexe-implementer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,080 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.01080
Opus 5 $0.00030 $0.00540
Sonnet 5 $0.00012 $0.00216
Haiku 4.5 $0.00006 $0.00108

Measured 12d ago against content hash 93969a0740e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

sails-ethexe-implementer 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 12d ago.

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.

skills/sails-ethexe-implementer/SKILL.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sails Ethexe Implementer

Overview

Implement approved tasks in Sails ethexe workspaces where the ethexe feature is enabled and methods may be exported via ethabi transport, accept value (payable), or emit Ethereum-style events.

If the task does NOT need the ethexe feature, use ../sails-rust-implementer/SKILL.md instead.

Inputs

  • ../../references/sails-ethexe-patterns.md — ethexe diff table, type requirements, transport rules, event patterns
  • ../../references/sails-syscall-mapping.mdSyscall::* API (note gated syscalls)
  • ../../references/sails-cheatsheet.md — core Sails patterns
  • ../../references/sails-rs-imports.md — import paths
  • ../../references/sails-idl-v2-syntax.md — IDL v2 annotations
  • ../../references/sails-header-wire-format.md — Sails Header routing

Consume the approved spec, architecture, and tasks artifacts before changing code.

Workflow

  1. Confirm the task is specified and architecture-approved.
  2. Confirm the crate has sails-rs with features = ["ethexe"] in Cargo.toml.
  3. Identify the smallest code change that satisfies the task.
  4. Use #[sails_type] for all custom types. Types used in ethabi-exported methods must also be ABI-encodable as Solidity tuples (SolValue).
  5. Choose the correct transport per method:
    • #[export] — both scale + ethabi (default with ethexe)
    • #[export(scale)] — scale only, no ethabi
    • #[export(ethabi)] — ethabi only
    • #[export(ethabi, payable)] — ethabi with value acceptance
  6. Use emit_eth_event() for Ethereum-style events, emit_event() for standard Gear events. Do not mix them on the same event type without explicit architecture guidance.
  7. Mark #[indexed] on up to 3 event fields per variant for Ethereum topic indexing.
  8. Use Syscall::* for runtime accessors. Three syscalls are unavailable: signal_from, signal_code, system_reserve_gas.
  9. Hand verification to the gtest loop before claiming done.

Transport Decision Guide

Scenario Attribute
Standard method, both transports #[export]
Method only callable from Gear programs (no EVM) #[export(scale)]
Method only callable from EVM #[export(ethabi)]
Method that accepts value from EVM #[export(ethabi, payable)] or #[export(scale, ethabi, payable)]
Query (read-only) #[export] (transport flags orthogonal to query semantics)

Read the full file on GitHub · 99 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. 12d ago First seen · 99 lines · 60 tokens per session scan A 93969a0740e1

Subscribe to this mod's changes

sails-ethexe-implementer is a skill published in the GitHub repository gear-foundation/vara-skills (17 stars, last pushed 2mo ago), licensed MIT. It adds 60 tokens to every session and 1,080 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-08-30.

Related

Other skills, from other repositories

jolt

Wrap a Rust function in a Jolt zero-knowledge proof.

a16z/jolt · 15 tokens

solana

Use when working on Solana software, including one or more of: Solana client code using TypeScript, Rust libraries that use Solana crates, Anchor programs, Quasar programs, LiteSVM tests, including Rust program files, TypeScript tests, and Anchor.toml or Quasar.toml configuration. Designed to create minimal, reusable…

quicknode/solana-finance-claude-plugin · 76 tokens

solana-toolkit-guide

Guide to the Solana Wallet Toolkit — vanity address generation with multi-threaded search, official Solana Labs libraries, Rust and TypeScript implementations. Includes wallet generation, custom address prefixes, and OG names on the blockchain.

nirholas/three.ws · 50 tokens

solana

Expert guidelines for Solana program development with Rust, Anchor framework, and Web3.js integration.

Mindrally/skills · 21 tokens

smart-contracts

Stellar smart contract development (Rust, soroban-sdk). Entry point with project setup, contract anatomy, and build/deploy workflow, routing to three companion files in this directory — development.md (storage/TTL, authorization, cross-contract calls, tokens, events, errors, upgrades, fees, troubleshooting)…

stellar/stellar-dev-skill · 151 tokens

solana-development

Build, test, deploy, and audit Solana programs with Anchor or native Rust, plus ZK Compression (Light Protocol). Use for Solana contracts, token operations, compute optimization, deployment, program audits, or compressed tokens and PDAs.

tenequm/skills · 53 tokens