"algo-blockchain-basics"

"algo-blockchain-basics" is a skill for Claude Code from charlieviettq/awesome-agent-skill. It costs 72 tokens per session (1,017 once invoked), scanned A, a copy of algo-blockchain-basics, MIT.

An explainer and design guide for blockchain, a shared transaction record copied across computers and updated through agreement rules.

In plain words
What is it for?
Use it to learn how blockchains work, assess a proposed use case, or design a system that needs agreement between parties without relying on one trusted intermediary.
Why use it?
It helps determine whether blockchain is appropriate and clarifies its trade-offs, including added complexity, speed limits, and difficulty deleting recorded data.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Use it to learn how blockchains work, assess a proposed use case, or design a system that needs agreement between parties without relying on one trusted intermediary.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics
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 charlieviettq/awesome-agent-skill --skill algo-blockchain-basics
Clone the repo
git clone --depth 1 https://github.com/charlieviettq/awesome-agent-skill

Made for: Claude Code.

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 "algo-blockchain-basics"

README.md
[![agentmods](https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics/github.svg)](https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics)
Your own site
<a href="https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics"><img src="https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics/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 "algo-blockchain-basics"

Your own site · 80×15
<a href="https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics"><img src="https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/algo-blockchain-basics.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,017 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 98% copy Near-identical to another mod 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.00072 $0.01017
Opus 5 $0.00036 $0.00508
Sonnet 5 $0.00014 $0.00203
Haiku 4.5 $0.00007 $0.00102

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

Security

Grade A, and why

"algo-blockchain-basics" 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.

Origin

This is a copy

98% identical to algo-blockchain-basics — 8 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/algo-blockchain-basics/SKILL.md · 94 lines

How it starts

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

Blockchain Fundamentals

Overview

A blockchain is a distributed, append-only ledger where blocks of transactions are cryptographically linked. Each block contains: transactions, previous block hash, timestamp, and nonce. Consensus mechanisms (PoW, PoS, BFT) ensure agreement without a central authority. Trade-off: decentralization vs performance.

When to Use

Trigger conditions:

  • Evaluating whether blockchain is appropriate for a use case
  • Designing systems requiring distributed trust, immutability, or transparency
  • Understanding blockchain architecture for integration or development

When NOT to use:

  • When a trusted central authority exists and works well (use a database)
  • When performance (thousands of TPS) is the primary requirement
  • When data privacy requires deletion capability (blockchain is append-only)

Algorithm

IRON LAW: Blockchain Is Useful ONLY When You Need TRUSTLESS Consensus
If participants trust each other (or trust a central authority), a
traditional database is faster, cheaper, and simpler. Blockchain's
value proposition is: untrusted parties can agree on state without
an intermediary. If trust already exists, blockchain adds overhead
with no benefit. Ask: "Who doesn't trust whom?" before choosing blockchain.

Phase 1: Input Validation

Assess use case against blockchain decision criteria: multiple untrusting writers? Need for immutability? No trusted central party? Public verifiability required? Gate: At least 3 of 4 criteria met to justify blockchain.

Phase 2: Core Algorithm

Block structure:

  1. Transactions are grouped into blocks
  2. Each block header contains: previous hash, Merkle root of transactions, timestamp, nonce
  3. Hash of block header links it to previous block (chain)
  4. Modifying any past block invalidates all subsequent hashes

Consensus mechanisms:

  • PoW (Proof of Work): miners compete to solve hash puzzle. Energy-intensive, secure.
  • PoS (Proof of Stake): validators stake tokens. Energy-efficient, relies on economic incentives.
  • BFT (Byzantine Fault Tolerance): voting-based, fast finality, requires known validator set.

Read the full file on GitHub · 94 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 · 94 lines · 72 tokens per session scan A f6264c8eebd6

Subscribe to this mod's changes

"algo-blockchain-basics" is a skill published in the GitHub repository charlieviettq/awesome-agent-skill (25 stars, last pushed 1mo ago), licensed MIT. It adds 72 tokens to every session and 1,017 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. It is 98% identical to algo-blockchain-basics, differing in 8 lines, and is treated as a copy.

Related

Other skills, from other repositories

learn-from-fix

Capture Elixir/Ecto/LiveView lessons and Hex API rules. Use after corrections or when asked to document learning, record a lesson, prevent a fixed mistake, or remember package guidance with --library.

oliver-kriska/claude-elixir-phoenix · 46 tokens

elixir-idioms

OTP/BEAM patterns and Elixir idioms — GenServer, Supervisor, Task, Registry, pattern matching, with chains, pipes. Use when designing processes or debugging BEAM issues.

oliver-kriska/claude-elixir-phoenix · 44 tokens

examples

Provide Phoenix, LiveView, Ecto, OTP, or Oban examples. Use when asked for sample code, a walkthrough, a proper implementation, or expected workflow output. Pair with domain skills. NOT for debugging, direct changes, best-practice advice, or audits.

oliver-kriska/claude-elixir-phoenix · 57 tokens

intro

Walk through the Elixir/Phoenix plugin commands, workflow, and features in 6 interactive sections. Use when a new user wants to learn what the plugin offers or needs a refresher on available commands.

oliver-kriska/claude-elixir-phoenix · 44 tokens

toolbox-talk-generator

Generate safety toolbox talks for construction crews. Create contextual safety briefings based on weather, work activities, and recent incidents. Support multiple languages.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 33 tokens

sui-beginner

Teach Sui from scratch with EVM and Solana mapping. Use when the user is new to Sui, wants Sui basics, or is coming from another chain wanting to understand Sui.

pivyme/suiperpower · 46 tokens