system-design — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited system-design (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Any task involving large-scale system architecture, scaling strategy, distributed infrastructure, or high-availability design.
#### Capacity planning math (always do first)
DAU * actions_per_user / 86400 = avg QPS
avg QPS * peak_multiplier (3x) = peak QPS
records_per_day * bytes_per_record = daily storage growth
annual_storage * hot_data_fraction = cache cluster sizingDocument all calculations in the design document.
#### Load balancing
#### Sharding strategies
Hash-based: shard_id = hash(key) % N — even distribution, resharding needs consistent hashing
Range-based: key ranges per shard — good for range queries, risk of hot spots
Geographic: shard by region — data locality + compliance, cross-region queries expensivePartition key must: exist in every query, distribute evenly, align with access patterns.
#### Replication
#### CAP theorem
#### Caching layers
L1 (in-process): 100MB-1GB, TTL 30s-5min, local HashMap/node-cache
L2 (distributed): 10GB-1TB, TTL 5min-1hr, Redis Cluster/Memcached
L3 (CDN/edge): unlimited, TTL 1hr-1day, CloudFront/CloudflareInvalidation: TTL expiry | write-through | pub/sub invalidation events.
#### Message queues
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.