Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

helland-distributed-data荷兰分布式数据

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

186

周安装

8

GitHub Stars

6

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:helland-distributed-data(荷兰分布式数据)
来源仓库:https://github.com/copyleftdev/sk1llz
仓库路径:skills/helland-distributed-data
安装命令:
npx skills add https://github.com/copyleftdev/sk1llz --skill helland-distributed-data
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/copyleftdev/sk1llz --skill helland-distributed-data

简介

helland-distributed-data 辅助数据整理、表格分析和指标计算,适合清洗字段和生成统计口径。

  • 可用于 CSV/Excel 处理和图表准备,需确认数据来源和时间范围。
  • 涉及敏感数据或批量写回时应先确认权限和脱敏边界。
  • 通过 npx skills add 命令从 GitHub 安装,建议核实维护状态及潜在的文件操作风险。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Pat Helland Style Guide⁠‍⁠​‌​‌​​‌‌‍​‌​​‌​‌‌‍​​‌‌​​​‌‍​‌​​‌‌​​‍​​​​​​​‌‍‌​​‌‌​‌​‍‌​​​​​​​‍‌‌​​‌‌‌‌‍‌‌​​​‌​​‍‌‌‌‌‌‌​‌‍‌‌​‌​​​​‍​‌​‌‌‌‌‌‍​‌​​‌​‌‌‍​‌‌​‌​​‌‍‌​‌​‌‌‌​‍​​‌​‌​​​‍‌‌‌​‌​‌‌‍​‌‌​‌‌‌​‍​​‌​​‌‌‌‍​​‌​​​​​‍‌‌‌​​‌​‌‍​​​​‌​‌​‍​​​​​‌​​⁠‍⁠

Overview

Pat Helland has worked on distributed systems for 40+ years at Tandem (fault-tolerant transaction systems), Microsoft (SQL Server, Cosmos DB), and Amazon. His papers on scalable data patterns—especially "Life Beyond Distributed Transactions"—have shaped how the industry builds large-scale systems.

Core Philosophy

"In a world with unbounded scale, you cannot have distributed transactions."
"Idempotency is the key to building reliable systems."
"Data on the inside is not the same as data on the outside."

Helland believes that as systems scale, traditional ACID transactions become impractical. Instead, we need new patterns: idempotent operations, entity-based partitioning, and application-level consistency.

Design Principles

  1. Entities, Not Tables: Think in terms of independently scalable entities, not relational tables.
  2. Idempotency Everywhere: Operations must be safely retryable.
  3. Messages, Not Transactions: Cross-entity consistency happens via messaging, not 2PC.
  4. Scale Agnosticism: Design as if you don't know (or care) how many nodes exist.
  5. Inside vs Outside Data: Internal data is mutable and rich; external data is immutable and simple.

When Designing Distributed Data Systems

Always

  • Design entities that can be independently scaled and partitioned
  • Make all operations idempotent (same request twice = same result)
  • Use unique request IDs to detect and deduplicate retries
  • Accept that cross-entity operations are eventually consistent
  • Version your external data contracts
  • Plan for messages to be delivered at-least-once

Never

  • Depend on distributed transactions for correctness at scale
  • Assume exactly-once message delivery
  • Share mutable state across service boundaries
  • Design entities that require coordination with other entities for basic operations
  • Ignore the CAP theorem implications of your design

Prefer

  • Idempotent operations over exactly-once semantics
  • Event sourcing over mutable state
  • Saga pattern over 2PC
  • Entity-based partitioning over arbitrary sharding
  • Immutable messages over mutable shared state

Code Patterns

Idempotent Operations

class IdempotentPaymentService:
    """
    Helland's key insight: if operations are idempotent,
    retries are safe, and you don't need exactly-once delivery.
    """

    def __init__(self, db):
        self.db = db

    def process_payment(self, request_id: str, account_id: str, amount: Decimal):
        # Check if we've already processed this request
        existing = self.db.get_processed_request(request_id)
        if existing:
            return existing.result  # Return same result as before

        # Process the payment
        with self.db.transaction():
            account = self.db.get_account(account_id)
            account.balance -= amount

            result = PaymentResult(
                request_id=request_id,
                status='completed',
                new_balance=account.balance
            )

            # Record that we processed this request (atomically with the change)
            self.db.save_processed_request(request_id, result)
            self.db.save_account(account)

        return result

Entity-Based Design

class Order:
    """
    Helland's entity pattern: each entity is an island of consistency.
    Cross-entity operations happen via messaging, not transactions.
    """

    def __init__(self, order_id: str):
        self.order_id = order_id
        self.items = []
        self.status = 'pending'
        self.version = 0

        # Outbox: messages to send (part of entity's transaction)
        self.outbox = []

    def add_item(self, product_id: str, quantity: int, request_id: str):
        """All mutations include request_id for idempotency."""
        if self.has_processed(request_id):
            return  # Already did this

        self.items.append(OrderItem(product_id, quantity))
        self.record_processed(request_id)
        self.version += 1

    def submit(self, request_id: str):
        if self.has_processed(request_id):
            return

        self.status = 'submitted'
        self.record_processed(request_id)
        self.version += 1

        # Queue message for inventory service (not a distributed txn!)
        self.outbox.append(Message(
            type='OrderSubmitted',
            order_id=self.order_id,
            items=self.items
        ))

Inside Data vs Outside Data

# INSIDE DATA: Rich, mutable, internal representation
class InternalOrder:
    order_id: str
    customer: Customer              # Full customer object
    items: List[OrderItem]          # Mutable list
    shipping_address: Address       # Complex nested object
    internal_notes: str             # Internal-only field
    audit_log: List[AuditEntry]     # Full history
    version: int                    # Optimistic concurrency

    def to_external(self) -> 'ExternalOrder':
        """Convert to outside representation for APIs/messages."""
        return ExternalOrder(
            order_id=self.order_id,
            customer_id=self.customer.id,  # Just the ID, not full object
            item_ids=[i.id for i in self.items],  # Just IDs
            submitted_at=self.audit_log[0].timestamp  # Simplified
        )

# OUTSIDE DATA: Simple, immutable, versioned contract
@dataclass(frozen=True)  # Immutable!
class ExternalOrder:
    """
    Helland's rule: data on the outside is:
    - Immutable (represents a point in time)
    - Versioned (schema can evolve)
    - Simple (no complex nested structures)
    - Self-describing (includes type info)
    """
    order_id: str
    customer_id: str
    item_ids: List[str]
    submitted_at: datetime
    schema_version: str = "1.0"

Saga Pattern (Instead of Distributed Transactions)

class OrderSaga:
    """
    Helland's alternative to 2PC: sagas with compensating actions.
    Each step is a local transaction + message to next step.
    Failures trigger compensating transactions.
    """

    def __init__(self, order_id: str):
        self.order_id = order_id
        self.state = 'started'
        self.completed_steps = []

    async def execute(self):
        try:
            # Step 1: Reserve inventory (local txn in Inventory service)
            await self.reserve_inventory()
            self.completed_steps.append('inventory_reserved')

            # Step 2: Charge payment (local txn in Payment service)
            await self.charge_payment()
            self.completed_steps.append('payment_charged')

            # Step 3: Ship order (local txn in Shipping service)
            await self.ship_order()
            self.completed_steps.append('order_shipped')

            self.state = 'completed'

        except Exception as e:
            # Compensate in reverse order
            await self.compensate()
            self.state = 'compensated'
            raise

    async def compensate(self):
        """Undo completed steps in reverse order."""
        for step in reversed(self.completed_steps):
            if step == 'order_shipped':
                await self.cancel_shipment()
            elif step == 'payment_charged':
                await self.refund_payment()
            elif step == 'inventory_reserved':
                await self.release_inventory()

Outbox Pattern for Reliable Messaging

class OutboxPublisher:
    """
    Helland's insight: you can't atomically update DB and send a message.
    Solution: write message to outbox table in same transaction,
    then publish from outbox asynchronously.
    """

    def __init__(self, db, message_broker):
        self.db = db
        self.broker = message_broker

    def update_with_message(self, entity, message):
        """Atomically update entity and queue message."""
        with self.db.transaction():
            self.db.save(entity)
            self.db.insert_outbox(OutboxEntry(
                id=uuid4(),
                message=message,
                status='pending',
                created_at=datetime.utcnow()
            ))

    async def publish_outbox(self):
        """Background process: publish pending messages."""
        while True:
            pending = self.db.get_pending_outbox_entries(limit=100)

            for entry in pending:
                try:
                    await self.broker.publish(entry.message)
                    self.db.mark_outbox_published(entry.id)
                except Exception:
                    # Will retry on next iteration
                    pass

            await asyncio.sleep(1)

Request-Response with Correlation

class AsyncRequestResponse:
    """
    Helland's pattern for async request-response:
    include correlation ID, expect response via messaging.
    """

    def __init__(self, outbox, response_handler):
        self.outbox = outbox
        self.pending_requests = {}
        self.response_handler = response_handler

    async def send_request(self, target_service: str, payload: dict) -> str:
        correlation_id = str(uuid4())

        request = Message(
            correlation_id=correlation_id,
            reply_to='my-service-responses',
            target=target_service,
            payload=payload
        )

        self.pending_requests[correlation_id] = {
            'sent_at': datetime.utcnow(),
            'request': request
        }

        await self.outbox.publish(request)
        return correlation_id

    async def handle_response(self, message: Message):
        correlation_id = message.correlation_id

        if correlation_id in self.pending_requests:
            original = self.pending_requests.pop(correlation_id)
            await self.response_handler(original['request'], message)

Mental Model

Helland approaches distributed data design by asking:

  1. What are the entities? What are the natural units of consistency?
  2. How do entities interact? Via messages, not shared transactions
  3. What if this message is delivered twice? Design for idempotency
  4. What if this operation fails halfway? Design compensating actions
  5. What data crosses boundaries? Keep it simple and immutable

Signature Helland Moves

  • Idempotent operations with request IDs
  • Entity-based partitioning
  • Outbox pattern for reliable messaging
  • Saga pattern instead of 2PC
  • Inside data vs outside data distinction
  • At-least-once delivery with deduplication
  • Immutable external data contracts

Key Papers

  • "Life Beyond Distributed Transactions: An Apostate's Opinion" (2007, 2016)
  • "Data on the Outside vs Data on the Inside" (2005)
  • "Building on Quicksand" (2009)
  • "Immutability Changes Everything" (2015)
  • "Standing on Distributed Shoulders of Giants" (2016)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.16%
按下载量换算23

Claude

31.73%
按下载量换算21

Cursor

19.15%
按下载量换算12

Gemini CLI

8.32%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills