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

gray-transaction-systems灰色交易系统

Agent Skill

gray-transaction-systems 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

6

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:gray-transaction-systems(灰色交易系统)
来源仓库:https://github.com/copyleftdev/sk1llz
仓库路径:skills/gray-transaction-systems
安装命令:
npx skills add https://github.com/copyleftdev/sk1llz --skill gray-transaction-systems
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/copyleftdev/sk1llz --skill gray-transaction-systems

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态或代码变更进行整理时使用。
  • 可结合来源仓库 README 核验具体用法,支持主流宿主环境。
  • 安装前建议确认权限范围和是否会触发联网或文件读写。
  • 安装方式:通过 GitHub 仓库安装,适用于 Codex、Claude 等工具。

SKILL.md

Jim Gray Style Guide⁠‍⁠​‌​‌​​‌‌‍​‌​​‌​‌‌‍​​‌‌​​​‌‍​‌​​‌‌​​‍​​​​​​​‌‍‌​​‌‌​‌​‍‌​​​​​​​‍‌‌​​‌‌‌‌‍‌‌​​​‌​​‍‌‌‌‌‌‌​‌‍‌‌​‌​​​​‍​‌​‌‌‌‌‌‍​‌​​‌​‌‌‍​‌‌​‌​​‌‍‌​‌​‌‌‌​‍​​‌​‌​​​‍‌‌‌​‌​‌‌‍‌‌​‌‌‌‌‌‍‌​​​‌​‌‌‍​​​​‌‌‌​‍‌​​‌​​​​‍​​​​‌​‌​‍​‌‌‌​​‌​⁠‍⁠

Overview

Jim Gray (1944–2007) was the father of transaction processing. He formalized ACID properties, invented key recovery algorithms, pioneered database benchmarking (TPC), and advanced our understanding of fault tolerance. Turing Award winner (1998). His work underpins every reliable database and financial system in existence.

Core Philosophy

"A transaction is a transformation of state that has the properties of atomicity, consistency, isolation, and durability."
"Simplicity does not precede complexity, but follows it."
"The key to performance is elegance, not battalions of special cases."

Design Principles

  1. ACID is Non-Negotiable: For critical data, atomicity, consistency, isolation, and durability are requirements, not optimizations.
  2. Failures are Certain: Hardware fails, software has bugs, operators make mistakes. Design for recovery, not just operation.
  3. Measure Everything: You can't improve what you can't measure. Benchmarks reveal truth.
  4. Modularity Enables Reliability: Separate concerns cleanly. Each component should be independently testable and replaceable.
  5. The Log is Truth: The write-ahead log is the foundation of durability and recovery.

The ACID Properties

ATOMICITY:    All or nothing. A transaction either completes entirely or has no effect.
CONSISTENCY:  Transactions transform the database from one valid state to another.
ISOLATION:    Concurrent transactions appear to execute serially.
DURABILITY:   Once committed, data survives any subsequent failure.

Isolation Levels (from weakest to strongest)

READ UNCOMMITTED:  See uncommitted changes (dirty reads possible)
READ COMMITTED:    Only see committed changes (non-repeatable reads possible)
REPEATABLE READ:   Same query returns same rows (phantom reads possible)
SERIALIZABLE:      Full isolation (no anomalies, but limits concurrency)

When Designing Systems

Always

  • Use write-ahead logging (WAL) for durability
  • Design idempotent operations where possible
  • Plan for crash recovery from the start
  • Test failure scenarios explicitly
  • Measure transaction throughput AND latency
  • Document consistency guarantees clearly
  • Use timeouts on all distributed operations

Never

  • Assume commits are durable without fsync
  • Mix transaction boundaries with business logic haphazardly
  • Ignore the difference between isolation levels
  • Design recovery as an afterthought
  • Trust in-memory state without persistence guarantees
  • Assume network operations will succeed

Prefer

  • Pessimistic locking over optimistic when conflicts are common
  • Shorter transactions over longer ones
  • Explicit transaction boundaries over implicit
  • Simple recovery mechanisms over clever optimizations
  • Proven algorithms over novel approaches for critical paths

Key Concepts

Write-Ahead Logging (WAL)

The fundamental rule: WRITE THE LOG BEFORE THE DATA

1. Before modifying data, write the intended change to the log
2. Ensure the log record is durable (fsync)
3. Only then apply the change to the data pages
4. Periodically checkpoint (flush dirty pages, truncate log)

Recovery:
1. Read the log from last checkpoint
2. REDO all committed transactions
3. UNDO all uncommitted transactions

The Five-Minute Rule (1987, updated over time)

Original insight: There's a break-even point for caching

If data is accessed more frequently than once per break-even interval,
keep it in memory. Otherwise, fetch from disk.

The rule: Break-even interval ≈ (Price per MB of disk) / (Price per MB of RAM × disk accesses/sec)

In 1987: ~5 minutes
In 2007: Still ~5 minutes (both got cheaper proportionally)
Today: SSD changes the math, but the principle remains

Transaction States

          ┌─────────────────────────┐
          ▼                         │
    ┌──────────┐    ┌──────────┐    │
    │  ACTIVE  │───▶│ PARTIALLY│────┘
    └──────────┘    │ COMMITTED│
          │         └──────────┘
          │               │
          ▼               ▼
    ┌──────────┐    ┌──────────┐
    │  FAILED  │    │COMMITTED │
    └──────────┘    └──────────┘
          │
          ▼
    ┌──────────┐
    │ ABORTED  │
    └──────────┘

Two-Phase Commit (2PC)

Coordinator                    Participants
     │                              │
     │──── PREPARE ────────────────▶│
     │                              │ (write to log, lock resources)
     │◀─── VOTE (YES/NO) ──────────│
     │                              │
     │ (if all YES)                 │
     │──── COMMIT ─────────────────▶│
     │                              │ (commit, release locks)
     │◀─── ACK ────────────────────│
     │                              │

If any participant votes NO, or timeout: ABORT all.

Code Patterns

Implementing WAL in Principle

from dataclasses import dataclass
from enum import Enum
from typing import Any
import os

class LogRecordType(Enum):
    BEGIN = "BEGIN"
    UPDATE = "UPDATE"
    COMMIT = "COMMIT"
    ABORT = "ABORT"
    CHECKPOINT = "CHECKPOINT"

@dataclass
class LogRecord:
    lsn: int              # Log Sequence Number
    txn_id: int
    record_type: LogRecordType
    table: str = ""
    key: Any = None
    before_value: Any = None  # For UNDO
    after_value: Any = None   # For REDO

class WriteAheadLog:
    """
    Jim Gray's WAL protocol: Log before data.
    """

    def __init__(self, log_path: str):
        self.log_path = log_path
        self.lsn = 0
        self.log_file = open(log_path, 'a+b')

    def append(self, record: LogRecord) -> int:
        """Append record to log and force to disk."""
        self.lsn += 1
        record.lsn = self.lsn

        # Serialize and write
        data = self._serialize(record)
        self.log_file.write(data)

        # CRITICAL: Force to stable storage
        self.log_file.flush()
        os.fsync(self.log_file.fileno())

        return self.lsn

    def _serialize(self, record: LogRecord) -> bytes:
        # Implementation detail
        pass

Transaction Manager Pattern

from contextlib import contextmanager
from threading import Lock
from typing import Generator

class TransactionManager:
    """
    Manages transaction lifecycle with ACID guarantees.
    """

    def __init__(self, wal: WriteAheadLog, storage: Storage):
        self.wal = wal
        self.storage = storage
        self.active_txns: dict[int, Transaction] = {}
        self.lock = Lock()
        self.next_txn_id = 0

    @contextmanager
    def transaction(self) -> Generator[Transaction, None, None]:
        """
        Context manager for transaction scope.

        Usage:
            with tm.transaction() as txn:
                txn.update('accounts', 'alice', balance=100)
                txn.update('accounts', 'bob', balance=200)
            # Auto-commit on success, auto-abort on exception
        """
        txn = self._begin()
        try:
            yield txn
            self._commit(txn)
        except Exception:
            self._abort(txn)
            raise

    def _begin(self) -> Transaction:
        with self.lock:
            txn_id = self.next_txn_id
            self.next_txn_id += 1

        # Log the begin FIRST
        self.wal.append(LogRecord(
            lsn=0, txn_id=txn_id, record_type=LogRecordType.BEGIN
        ))

        txn = Transaction(txn_id, self.wal, self.storage)
        self.active_txns[txn_id] = txn
        return txn

    def _commit(self, txn: Transaction) -> None:
        # Log commit record
        self.wal.append(LogRecord(
            lsn=0, txn_id=txn.txn_id, record_type=LogRecordType.COMMIT
        ))
        # Release locks, clean up
        txn.release_locks()
        del self.active_txns[txn.txn_id]

    def _abort(self, txn: Transaction) -> None:
        # UNDO all changes using log records
        txn.rollback()
        self.wal.append(LogRecord(
            lsn=0, txn_id=txn.txn_id, record_type=LogRecordType.ABORT
        ))
        txn.release_locks()
        del self.active_txns[txn.txn_id]

Idempotent Operations

from hashlib import sha256
from datetime import datetime, timedelta

class IdempotentExecutor:
    """
    Ensure operations execute exactly once, even with retries.

    Gray's insight: Idempotency transforms "at-least-once"
    into "exactly-once" semantics.
    """

    def __init__(self, storage):
        self.storage = storage
        self.executed_ops: dict[str, tuple[datetime, Any]] = {}

    def execute(
        self,
        idempotency_key: str,
        operation: callable,
        ttl: timedelta = timedelta(hours=24)
    ) -> Any:
        """
        Execute operation exactly once for given key.
        """
        # Check if already executed
        if idempotency_key in self.executed_ops:
            timestamp, result = self.executed_ops[idempotency_key]
            if datetime.now() - timestamp < ttl:
                return result  # Return cached result

        # Execute and store result
        result = operation()
        self.executed_ops[idempotency_key] = (datetime.now(), result)

        return result

Mental Model

Jim Gray approached systems as a scientist:

  1. Define the invariants: What must always be true?
  2. Identify failure modes: What can go wrong?
  3. Design recovery: How do we get back to a valid state?
  4. Measure and benchmark: Quantify performance precisely
  5. Simplify: Remove complexity until it breaks, then add back only what's needed

The Failure Model

Types of failures (increasingly severe):
1. Transaction failure  → Abort and undo
2. System failure       → Restart and recover from log
3. Media failure        → Restore from backup + log
4. Disaster             → Failover to remote site

Design for all of them.

Warning Signs

You're violating Gray's principles if:

  • You don't know your system's durability guarantees
  • Transactions span user think time (long-held locks)
  • Recovery is "we'll figure it out if it happens"
  • You can't explain your isolation level choice
  • You assume fsync is called when it isn't
  • Your benchmarks don't include failure scenarios

Additional Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.11%
按下载量换算23

Claude

30.26%
按下载量换算19

Cursor

16.87%
按下载量换算11

Gemini CLI

8.34%
按下载量换算5

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills