account-research
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
\"Explain blockchain fundamentals including distributed ledger architecture, consensus mechanisms, and block structure. Use this skill when the user needs to understand blockchain concepts, evaluate whether blockchain fits a use case, or design a blockchain-based solution — even
$ npx -y skills add charlieviettq/awesome-agent-skill --skill algo-blockchain-basics --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/algo-blockchain-basicsContext preview
The summary Claude sees to decide when to auto-load this skill.
\"Explain blockchain fundamentals including distributed ledger architecture, consensus mechanisms, and block structure. Use this skill when the user needs to understand blockchain concepts, evaluate whether blockchain fits a use case, or design a blockchain-based solution — even
name: "\"algo-blockchain-basics\"" description: "\"Explain blockchain fundamentals including distributed ledger architecture, consensus mechanisms, and block structure. Use this skill when the user needs to understand blockchain concepts, evaluate whether blockchain fits a use case, or design a blockchain-based solution — even if they say 'how does blockchain work', 'do I need blockchain', or 'distributed ledger'.\"." allowed-tools: Read, Glob, Grep
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.
**Trigger conditions:**
**When NOT to use:**
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.
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.
**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:**
Check: is the use case genuinely multi-party with trust deficits? Would a simpler solution (shared database, digital signatures) suffice? **Gate:** Blockchain justified, appropriate consensus mechanism selected.
Return architecture recommendation with trade-off analysis.
{
"recommendation": {"use_blockchain": true, "type": "permissioned", "consensus": "PBFT", "platform": "Hyperledger Fabric"},
"trade_offs": {"decentralization": "medium", "throughput_tps": 3000, "finality_seconds": 2, "energy": "low"},
"metadata": {"use_case": "supply chain provenance", "participants": 5, "trust_level": "low"}
}**Input:** 5 companies tracking seafood provenance from boat to restaurant **Expected:** Permissioned blockchain recommended (known participants, no trust, need immutable audit trail). Platform: Hyperledger Fabric or similar.
| Input | Expected | Why | |-------|----------|-----| | Single company internal use | Don't use blockchain | Trust already exists internally | | Need to delete data (GDPR) | Blockchain problematic | Immutability conflicts with right to erasure | | Public transparency required | Public/consortium chain | Permissionless or hybrid |
Curated skill pack for LLM agents in engineer and science workflow (Cursor & Claude ready).
Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM.…
Evaluate LLM agents and tool-using workflows—task success, tool accuracy, latency/cost, safety, and regression suites. Use when shipping agent features,…
Design agent tools and CLI surfaces—schemas, naming, errors, idempotency, and discoverability for LLM callers. Use when defining tools for agents, SDKs, or…
\"Implement and select ad bidding strategies from manual CPC to automated target-CPA and target-ROAS. Use this skill when the user needs to choose a bidding…
\"Optimize advertising budget allocation across campaigns using marginal returns analysis. Use this skill when the user needs to distribute budget across…
\"Build CTR prediction models for estimating ad click-through rates from features. Use this skill when the user needs to predict click probability, build an ad…