skills/43-wentorai-research-plugins/skills/domains/cs/distributed-systems-guide/SKILL.md
Distributed systems design patterns and analysis for CS research
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research distributed-systems-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
A skill for researching and designing distributed systems, covering consensus algorithms, replication strategies, consistency models, fault tolerance, and performance analysis. Provides theoretical foundations and practical implementations relevant to systems research.
Strongest
| Linearizability (atomic, real-time ordering)
| Sequential consistency (program order respected)
| Causal consistency (causally related ops ordered)
| PRAM / FIFO consistency (per-process order)
| Eventual consistency (converges if updates stop)
Weakest
The CAP theorem states that during a network partition, a distributed system must choose between consistency and availability:
| System | Partition Behavior | Normal Behavior | Classification | |--------|-------------------|----------------|----------------| | ZooKeeper | Consistent (sacrifice A) | Low latency, consistent | CP / PC/EC | | Cassandra | Available (sacrifice C) | Low latency, eventual | AP / PA/EL | | Spanner | Consistent (sacrifice A) | Higher latency, consistent | CP / PC/EC | | DynamoDB | Configurable per-read | Tunable consistency | AP or CP | | CockroachDB | Consistent (sacrifice A) | Serializable | CP / PC/EC |
from enum import Enum
from dataclasses import dataclass, field
import random
class NodeState(Enum):
FOLLOWER = "follower"
CANDIDATE = "candidate"
LEADER = "leader"
@dataclass
class LogEntry:
term: int
index: int
command: str
@dataclass
class RaftNode:
"""
Simplified Raft consensus node for educational purposes.
Implements leader election and log replication state machine.
"""
node_id: str
state: NodeState = NodeState.FOLLOWER
current_term: int = 0
voted_for: str = None
log: list = field(default_factory=list)
commit_index: int = 0
last_applied: int = 0
# Leader state
next_index: dict = field(default_factory=dict)
match_index: dict = field(default_factory=dict)
def start_election(self, peers: list[str]) -> dict:
"""Transition to candidate and request votes."""
self.state = NodeState.CANDIDATE
self.current_term += 1
self.voted_for = self.node_id
last_log_index = len(self.log) - 1 if self.log else -1
last_log_term = self.log[-1].term if self.log else 0
return {
"type": "RequestVote",
"term": self.current_term,
"candidate_id": self.node_id,
"last_log_index": last_log_index,
"last_log_term": last_log_term,
}
def handle_vote_request(self, term: int, candidate_id: str,
last_log_index: int,
last_log_term: int) -> dict:
"""Process a RequestVote RPC."""
if term < self.current_term:
return {"term": self.current_term, "vote_granted": False}
if term > self.current_term:
self.current_term = term
self.state = NodeState.FOLLOWER
self.voted_for = None
# Check if candidate's log is at least as up-to-date
my_last_term = self.log[-1].term if self.log else 0
my_last_index = len(self.log) - 1 if self.log else -1
log_ok = (last_log_term > my_last_term or
(last_log_term == my_last_term and
last_log_index >= my_last_index))
vote_granted = (
(self.voted_for is None or self.voted_for == candidate_id)
and log_ok
)
if vote_granted:
self.voted_for = candidate_id
return {"term": self.current_term, "vote_granted": vote_granted}
def append_entry(self, command: str) -> LogEntry:
"""Leader appends a new entry to its log."""
entry = LogEntry(
term=self.current_term,
index=len(self.log),
command=command,
)
self.log.append(entry)
return entry
| Algorithm | Fault Model | Tolerance | Rounds | Complexity | |-----------|-------------|-----------|--------|------------| | Paxos | Crash faults | f < n/2 | 2 (normal) | Difficult to implement correctly | | Raft | Crash faults | f < n/2 | 2 (normal) | Designed for understandability | | PBFT | Byzantine faults | f < n/3 | 3 | O(n^2) message complexity | | HotStuff | Byzantine faults | f < n/3 | 3 | O(n) with pipelining |
class ReplicatedStateMachine:
"""
State machine replication with configurable consistency.
Demonstrates read/write quorum intersection for correctness.
"""
def __init__(self, n_replicas: int, read_quorum: int = None,
write_quorum: int = None):
self.n = n_replicas
self.R = read_quorum or (n_replicas // 2 + 1)
self.W = write_quorum or (n_replicas // 2 + 1)
# Quorum intersection guarantees: R + W > N
assert self.R + self.W > self.n, (
f"Quorum intersection violated: R({self.R}) + W({self.W}) "
f"must be > N({self.n})"
)
self.replicas = [{} for _ in range(n_replicas)]
self.version_clock = 0
def write(self, key: str, value: str) -> dict:
"""Write to W replicas."""
self.version_clock += 1
# Select W replicas (in practice, based on availability)
targets = random.sample(range(self.n), self.W)
for i in targets:
self.replicas[i][key] = (value, self.version_clock)
return {
"key": key,
"version": self.version_clock,
"acked_by": len(targets),
"quorum_met": True,
}
def read(self, key: str) -> dict:
"""Read from R replicas, return latest version."""
targets = random.sample(range(self.n), self.R)
responses = []
for i in targets:
if key in self.replicas[i]:
responses.append(self.replicas[i][key])
if not responses:
return {"key": key, "value": None, "found": False}
# Return the value with the highest version
latest = max(responses, key=lambda x: x[1])
return {
"key": key,
"value": latest[0],
"version": latest[1],
"found": True,
}
class VectorClock:
"""Vector clock for tracking causality in distributed systems."""
def __init__(self, process_id: str, processes: list[str]):
self.pid = process_id
self.clock = {p: 0 for p in processes}
def increment(self):
"""Local event: increment own counter."""
self.clock[self.pid] += 1
def send(self) -> dict:
"""Prepare clock for sending with a message."""
self.increment()
return dict(self.clock)
def receive(self, other_clock: dict):
"""Merge received clock: element-wise max, then increment."""
for p in self.clock:
self.clock[p] = max(self.clock[p], other_clock.get(p, 0))
self.increment()
def happened_before(self, other: dict) -> bool:
"""Check if this clock happened-before other (causal ordering)."""
return (all(self.clock[p] <= other.get(p, 0) for p in self.clock) and
any(self.clock[p] < other.get(p, 0) for p in self.clock))
Key metrics for evaluating distributed systems:
tools
Recommend AND run open-source AI tools, agents, Claude Code / Codex skills, and MCP servers for any stage of a literature review — searching, reading, extracting, synthesizing, screening, citation-checking, and paper writing. Use when the user asks "what tool should I use to..." OR "install/run/use <tool> to ..." for research/lit-review work: automating a survey or related-work section, PDF→Markdown extraction for LLMs (MinerU/marker/docling), PRISMA / systematic review (ASReview), citation-backed Q&A over PDFs (PaperQA2), wiring papers into Claude/Cursor via MCP (arxiv/paper-search/zotero servers), or chatting with a Zotero library. Ships a launcher (scripts/litrun.py) that installs each tool in an isolated venv and runs it. Curated catalog of 70+ vetted projects. 支持中英文(用于「文献综述工具选型」与「一键安装/运行」)。
development
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
documentation
Use when the project collects primary data or runs a field, lab, or survey experiment, before the intervention begins — write the pre-analysis plan, size the sample from a power calculation, and register with the AEA RCT Registry. Apply after the design is chosen in aer-identification and before any outcome data are seen.
tools
Guide economists to authoritative data sources with explicit, confirmed data specifications before retrieval; interfaces with Playwright MCP to navigate portals and extract real data, not articles about data.