
Reviewing Personhog Protocol
FreeEnsure robust reviews for personhog protocol changes.
Free · Opens the source repo
What Reviewing Personhog Protocol does
The Reviewing Personhog Protocol skill provides a structured process for reviewing changes to the personhog coordination protocol. It is designed to help developers and reviewers catch defects that might go unnoticed during standard review processes. By focusing on the interactions between components rather than isolated correctness, this skill helps ensure that complex changes are thoroughly vetted before deployment.
The review process is divided into three main phases: the author pass, an independent adversarial pass, and author verification. During the author pass, the developer examines the full diff against specified lens dimensions, emphasizing the composed state where bugs often reside. The adversarial pass involves an independent agent reviewing the changes without bias, using protocol invariants to identify potential defects. Finally, the author verifies each finding, ensuring that no issues are accepted on authority alone, thus maintaining the integrity of the review process.
The skill also outlines specific lens dimensions to guide the review, such as authority transitions, observation latency, and failure-path parity. Each dimension prompts reviewers to ask critical questions about the interactions and potential pitfalls of the protocol changes. Additionally, the skill emphasizes the importance of clearing multiple layers of checks, including decision-logic coupling and protocol integration tests, to ensure comprehensive coverage of the changes.
This skill is particularly useful for teams working on complex systems where protocol changes can introduce subtle bugs that are difficult to detect. It is aimed at developers and reviewers who need a rigorous framework for ensuring the correctness and reliability of their code before it goes live.
When to use it
Use this skill before pushing or requesting reviews on any personhog protocol changes, especially for complex changes.
When not to use it
This skill may not be necessary for simple changes or when rapid iterations are prioritized over thorough review processes.
What you can build with it
Complex Protocol Changes
When making significant changes to the personhog protocol, use this skill to ensure all potential defects are identified and addressed.
Independent Code Reviews
Utilize the adversarial pass to have an unbiased review of your changes, helping to uncover issues that may have been overlooked.
Post-Fix Review
After fixing identified defects, apply this skill to re-review the changes, ensuring that new bugs have not been introduced.
How to install Reviewing Personhog Protocol
View source1. Install with the skills CLI
npx skills add posthog/posthog/reviewing-personhog-protocol --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by posthogReviewing personhog protocol changes
Protocol defects survive ordinary review because every component looks correct in isolation — the bugs live in compositions: an authority signal nobody observes during one await, a threshold that coincides with a detector's duration, a rarely-taken exit path that skips the fence. This skill encodes the process that has actually caught them, and the full set of layers a personhog change must clear before it ships.
The process: two passes, then verification
- Author pass. Sweep the full diff against every lens dimension below. Read final files, not hunks — composed state is where the bugs are.
- Independent adversarial pass. Spawn a cold-context agent on the
full diff. Give it the protocol invariants
(references/personhog-invariants.md)
and the lens dimensions — never your conclusions or your fixes'
rationale, which would anchor it. Demand: ranked findings with
file:line, a one-sentence defect statement, a concrete failure scenario (inputs/state → wrong outcome), and a CONFIRMED (traced end-to-end) or PLAUSIBLE (missing check named) label. Ask it to state clean dimensions in one line each — silence is not coverage. - Author verification. Verify every finding against code before accepting it. Findings get upgraded, downgraded, or killed with evidence — never adopted on authority. A wrong finding fixed is a new defect introduced.
- After a fix batch, review again. Fresh agent, full scope, with the fix batch named as the primary attack surface: new code is where new bugs live, and a fix can displace a defect instead of closing it. Ask for a per-finding CLOSED / DISPLACED / STILL OPEN verdict.
The lens dimensions
For each, the question to ask — not a checkbox, a hunt:
- Authority transitions × in-flight work. Enumerate every writer × key × guard. For each transition of serving authority (acquire, release, fence, deregister): what work is in flight across it, and what guarantees it lands on the right side? Never dismiss a race on likelihood — protocol review argues structure, not odds.
- Observation latency. A prompt failure signal nobody is listening to is a deferred fence. Enumerate every await a component makes while holding authority (lease, registration, serving state) and ask: is the authority-loss signal raced here, or does this await defer detection for its full duration? Backoff naps, drains, and bootstrap sequences are where this hides.
- Timescale interactions. Build the full constants table (TTLs, heartbeats, margins, budgets × intervals, timeouts, deadlines, watchdogs, produce/message timeouts) and check pairwise interactions. Two smells: a threshold that equals a detector's duration (the detector's failures become structurally exempt from the threshold), and a margin whose consumer can outspend it (a fence bounded by a timeout larger than the runway). Validate required relations at construction, not in comments.
- Budget and counter semantics. What resets what, and on which evidence? Progress must mean applied work — never a successful read, which stays available in exactly the wedges budgets exist for. Ask both directions: can a wedge class cycle forever without escalating, and can a transient class escalate spuriously?
- Lifecycle. Every spawned task joined or aborted on every exit path; raced JoinHandles consumed at most once with every later await site guarded; cancel-by-drop assumptions verified (dropping a loop future drops its owned futures — but never its spawned tasks); teardown ordering stated and tested. The bootstrap window — registered but not yet supervised — is an exit-path zoo of its own.
- Primitive semantics, verified against implementation. What does
the primitive actually do — not what its name suggests?
select!short-circuits on first ready arm;FuturesUnorderedonly progresses when polled; a keepalive response proves a reset at send-processing time, not receipt time; stream end and lease expiry are different facts; etcd answers keepalives for a dead lease with TTL 0, not a closed stream. When in doubt, read the dependency's source. - Failure-path parity. The rarely-taken exits — budget exhaustion, timeouts, poison paths, fast-shutdown branches — must uphold the same invariants as the hot path. "The fence exists" is not enough; it must run on every path that drops authority, in the right order relative to deregistration.
- Escalation legibility. Fail loudly and attributably: a crash cascade that shows up as generic restarts is loud but illegible. Every deliberate escalation should carry the specific cause (which partition, which budget, which margin) in its metric labels and logs.
The layers a change must clear
A personhog protocol change is not reviewed by reasoning alone. Check each layer, in order of cost:
- Decision-logic coupling (stateright).
personhog-staterightmodel-checks the protocol by driving transitions through the production decision functions (desired_stateand friends). If the change touches decision logic, phases, or ack semantics: does the model still compile against it, do the existing properties still hold, and does the change introduce interleavings the model should now cover (a new scenario variant)? Execution-level changes (concurrency structure, supervision) don't need model updates — say so explicitly rather than silently skipping. - Protocol integration tests (
personhog-coordination/tests/, real etcd): every behavioral change pinned by a test that fails on the old code — see the red-check discipline below. Connection-level behavior (blips, outages, lease margins) is testable by routing the component's store through a byte-forwarding TCP proxy the test controls: sever live connections to simulate a blip, refuse new ones to simulate an outage. The test commons'FlakyProxyprovides this (arriving with the etcd-resilience changes); on a tree without it, that is the pattern to build — tokio only, well under a hundred lines. - The e2e harness gates (
personhog-test-harness gate): run the CI gate scenarios locally against the built tree — at minimum the drain + zombie + writer-lag and kill + scale-up variants, plus any scenario shaped like the change. The gates assert the invariant that matters: every acked write visible in strong reads and Postgres. - Mixed-fleet compatibility. Deploys roll pods one at a time: old and new binaries share etcd and the changelog mid-roll. Any change to etcd record shapes, ack semantics, phase meanings, or changelog framing must be read-compatible in both directions across one release, or gated. Also check charts interplay: termination grace periods versus drain timeouts, lease TTLs versus rollout pacing.
- Observability and the residual ledger. New failure modes need
counters with attributing labels and, where they change operator
response, dashboard panels.
rust/personhog-coordination/README.mdis the design + residual-risk ledger: update it when a fix changes a stated guarantee, and never let a known residual silently widen. After deploy, validate on the dev traffic bed: violations zero, restarts flat, the change's own metrics moving as predicted.
Fix discipline
- Red-check every fix: temporarily disable the fix (scratch-copy the
file first — never
git checkoutfor temp reverts, it destroys uncommitted work), run the new test, confirm it fails for the predicted reason, restore, confirm green. - One regression test per fix, at the lowest level that catches it, per
/writing-tests. If a fix can't be pinned without heavy new machinery, say so explicitly in the PR rather than silently skipping. - Fixes to counters, budgets, or thresholds must state their invariant in a comment — the next reviewer checks the invariant, not the arithmetic.
Related
/writing-tests— the test-worthiness gate for the regression pins./adding-personhog-rpc— the data-plane counterpart (RPCs, storage, routing); this skill owns the coordination plane.rust/personhog-coordination/README.md— the protocol's own design and residual documentation; review claims against it.
Frequently asked questions about Reviewing Personhog Protocol
Similar skills
Quality Playbook Generator
Run comprehensive quality audits on any codebase.
PR Draft Summary
Automate PR summary generation for openai-agents-python.
Final Release Review
Streamline your release candidate audits with ease.
Unit Test Vue Pinia
Efficiently write and review unit tests for Vue 3 applications.
Slang Shader Expert
Optimize and integrate Slang shaders with ease.
Telemetry Standards
Ensure consistent event tracking in Supabase Studio.
