skills/senior-coding-interview/SKILL.md
Prepare for L6+ coding interviews — in-memory databases, concurrency, state management, iterative follow-ups. Use when practicing real-world system-building problems or preparing communication strategies for live coding. Activate on "coding interview", "staff interview", "codesignal", "live coding", "rate limiter interview". NOT for LeetCode/competitive programming, behavioral interviews, or system design whiteboard.
npx skillsauth add curiositech/windags-skills senior-coding-interviewInstall 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.
Execute L6+ real-world coding interviews where the problem is building a small system, not solving an algorithm puzzle. The core differentiator at Staff+ level is not whether you can solve it, but how you solve it: clean abstractions, narrated reasoning, graceful iteration, and production sensibility.
NOT for:
flowchart LR
C[1. CLARIFY\n5 min] --> S[2. SKELETON\n20 min]
S --> I[3. ITERATE\n10 min]
I --> O[4. OPTIMIZE\n5 min]
C -.- C1["Ask 3-5 questions\nRestate problem\nConfirm API contract\nIdentify edge cases"]
S -.- S1["Data structures first\nPublic API methods\nCore logic\nManual test 1 case"]
I -.- I1["Edge cases\nError handling\nFollow-up extensions\nRefactor if needed"]
O -.- O1["Complexity analysis\nTrade-off discussion\nConcurrency mention\nScaling path"]
Goal: Demonstrate you think before coding. Ask questions that reveal ambiguity the interviewer planted intentionally.
Mandatory questions for every problem:
Restate the problem in your own words before writing any code. This catches misunderstandings early and signals comprehension.
Goal: Get a working solution for the core case. Not perfect, not optimized -- working.
Order of implementation:
Senior signal: Start with the public API, not the internal helpers. Show top-down thinking.
Goal: Handle follow-ups. This is where Staff+ candidates differentiate -- each extension should feel like a natural evolution, not a rewrite.
The follow-up ladder (interviewers typically go 2-3 levels deep):
Senior signal: When asked "how would you make this distributed?", discuss the trade-offs before changing code. Name specific patterns (consistent hashing, write-ahead logs). You don't need to implement distributed systems in 40 minutes -- you need to show you know the path.
Goal: Show you understand what you built and where it breaks.
Cover:
| Archetype | Core Data Structure | Key Follow-ups | Reference |
|-----------|-------------------|----------------|-----------|
| In-Memory Key-Value Store | dict + metadata | TTL, transactions, snapshots | references/problem-archetypes.md |
| File System Abstraction | Trie or nested dict | Glob patterns, watchers, permissions | references/problem-archetypes.md |
| Rate Limiter | deque or sorted list | Sliding window, distributed, token bucket | references/problem-archetypes.md |
| LRU Cache | OrderedDict or dict+DLL | Generics, TTL, size-based eviction | references/problem-archetypes.md |
| Task Scheduler | Heap + dict | Priorities, dependencies, cancellation | references/problem-archetypes.md |
| Event/Pub-Sub System | defaultdict(list) | Typed events, wildcards, async delivery | references/problem-archetypes.md |
| Log Parser/Analyzer | Generators + Counter | Streaming, time windows, aggregation | references/problem-archetypes.md |
| API Client with Retry | State machine | Backoff, circuit breaker, idempotency | references/problem-archetypes.md |
Senior interviews are 50% code and 50% communication. The interviewer is evaluating whether they want to work with you, not just whether you can solve the problem.
These are the things that make an interviewer write "strong hire" for L6+:
| Signal | How to Demonstrate |
|--------|-------------------|
| Clean abstractions | Separate concerns: data model, business logic, I/O |
| Production sensibility | Error handling, input validation, logging mentions |
| Testing awareness | "I'd test the TTL edge case where expiry happens during a get" |
| Extensibility | Design classes that can be extended without rewriting |
| Trade-off fluency | Name multiple approaches, choose one, explain why |
| Complexity awareness | State big-O for each operation without being asked |
| Concurrency knowledge | Mention thread safety even if not implementing it |
| Stdlib mastery | Use dataclasses, defaultdict, deque, generators naturally |
Senior candidates use Python idioms that signal deep experience. See references/python-patterns-senior.md for the complete catalog with examples.
Key patterns to internalize:
@dataclass for any structured data (not raw dicts)collections.defaultdict, Counter, deque -- know the stdlibNovice: Reaches for algorithmically elegant solutions (segment trees, suffix arrays, Fenwick trees) when a hash map or sorted list suffices. Spends 15 minutes on optimal time complexity for a problem where n < 1000.
Expert: Chooses the simplest correct solution first. Uses built-in data structures (dict, list, deque, heapq) unless the problem explicitly demands otherwise. Discusses when algorithmic sophistication matters only if asked about scale. The goal is working, readable, maintainable code -- not a competitive programming submission.
Detection: Solution is asymptotically optimal but unmaintainable. Candidate cannot explain trade-offs between their approach and a simpler one. No working solution exists at the 25-minute mark because they're still optimizing.
Novice: Writes code for 15+ minutes without speaking. Treats the interview like a solo coding session. When they do speak, they narrate syntax ("Now I'm writing a for loop") rather than intent.
Expert: Narrates intent before writing code ("I'm going to use a dict here because we need O(1) lookup by key"). Asks clarifying questions when ambiguity appears. Signals uncertainty honestly ("I'm not sure if Python's heapq supports decrease-key -- let me use a different approach that I'm confident in"). Treats the interviewer as a collaborator, not an examiner.
Detection: Interviewer has to prompt "what are you thinking?" more than twice. Long silences followed by large code blocks. No questions asked during the clarify phase.
Novice: Starts with the distributed/concurrent/fault-tolerant version before solving the single-machine case. Adds caching, sharding, or thread pools before there's a working solution to optimize. Designs for 10 million users when the problem says "a few thousand."
Expert: Gets a working solution first, then optimizes when asked. Separates "what I'd do in production" from "what I'm implementing in this 40-minute interview." When the interviewer asks about scale, discusses the optimization path verbally: "I'd add a write-ahead log for durability, then shard by key hash for horizontal scaling."
Detection: No working solution at the 25-minute mark. Code has Lock, ThreadPoolExecutor, or asyncio imports but no passing test case. Architecture diagram exists but core logic doesn't.
CodeSignal's pre-recorded incremental format (used by Anthropic and others) differs from live interviews. See references/codesignal-incremental.md for detailed strategy.
Key differences:
flowchart TD
START[Problem received] --> READ["Read ENTIRE problem\n(2 min)"]
READ --> KNOWN{Recognize\nthe archetype?}
KNOWN -->|Yes| FAST["Fast-track clarify\n(2 min)"]
KNOWN -->|No| DEEP["Deep clarify\n(5 min)"]
FAST --> CODE["Code skeleton\n(18 min)"]
DEEP --> CODE
CODE --> CHECK{Working\nsolution?}
CHECK -->|No, 25 min mark| TRIAGE["Simplify approach\nGet SOMETHING working\n(5 min)"]
CHECK -->|Yes| EXTEND["Handle follow-ups\n(10 min)"]
TRIAGE --> EXTEND
EXTEND --> WRAP["Complexity + trade-offs\n(5 min)"]
This skill produces:
references/problem-archetypes.md -- Consult for worked examples of 8 problem archetypes with skeletons, clarifying questions, and follow-up extensionsreferences/python-patterns-senior.md -- Consult for senior Python idioms that signal experience: dataclasses, context managers, generators, stdlib mastery, testing hooksreferences/codesignal-incremental.md -- Consult when preparing for CodeSignal's pre-recorded incremental format: time management, extension strategies, self-testing without an interviewerdata-ai
license: Apache-2.0 NOT for unrelated tasks outside this domain.
development
Use when designing caching strategies (cache-aside, write-through, write-behind), implementing distributed locks, building rate limiters, leaderboards, real-time streams (XADD/consumer groups), pub/sub, or tuning eviction policies. Triggers: thundering-herd on cache miss, dogpile on key expiry, Redlock vs SET-NX-PX choice, sliding-window rate limiter, hot-key on a single cluster slot, big-key blowup, MULTI/EXEC across slots, KEYS in production. NOT for Redis Cluster operations/admin (different domain), embedded KV (SQLite, leveldb), in-process LRU caches, or Memcached.
tools
Drawing the `'use client'` boundary correctly in React Server Components apps (Next.js App Router, RSC frameworks) — leaf-pushing, slot composition, serialization rules, and environment poisoning prevention. Grounded in react.dev and Next.js 16 docs.
development
Use when designing rate limiting for an API, choosing between token bucket / sliding window / leaky bucket / fixed window, implementing it in Redis, deciding edge (Cloudflare/Upstash) vs origin enforcement, sizing per-user vs per-IP vs per-endpoint quotas, returning the right 429 response with Retry-After, or fixing the boundary-burst bug in fixed-window limiters. Triggers: 429 too many requests, INCR + EXPIRE, ZADD + ZREMRANGEBYSCORE + ZCARD, X-RateLimit-Remaining header, Cloudflare WAF rate limiting rules, Upstash @upstash/ratelimit, leaky bucket shaping vs policing, distributed rate limiter consistency. NOT for DDoS mitigation specifically (different scale), CAPTCHA / bot management, full WAF design, or per-user quota billing.