skill-system-reviewer-comms
Structured reviewer communication for tmux-routed send and broadcast, file-backed acknowledgements and polling, meeting lifecycle management, startup soul-profile delivery, guarded dispatch-down messaging, and session activity reports that reuse coder lifecycle discovery.
What this skill does
# Skill System Reviewer Comms
This skill replaces manual reviewer tmux messaging and ad-hoc inbox files with a
structured command surface.
## Commands
```bash
python3 "{skill_dir}/scripts/reviewer_comms.py" send <target> <message>
python3 "{skill_dir}/scripts/reviewer_comms.py" broadcast <message>
python3 "{skill_dir}/scripts/reviewer_comms.py" ack <message-id>
python3 "{skill_dir}/scripts/reviewer_comms.py" poll
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting start <topic>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting ack <meeting-id> <reviewer>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting status <meeting-id>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting close <meeting-id>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting agenda add <topic> --author <name> --kind vote|discuss --text <item>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting agenda list <topic>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting veto <meeting-id> --item-id <id> --author <name> --reason <text>
python3 "{skill_dir}/scripts/reviewer_comms.py" meeting veto-list <meeting-id>
python3 "{skill_dir}/scripts/reviewer_comms.py" dispatch-down <project> <session-type> <message> [--notify]
python3 "{skill_dir}/scripts/reviewer_comms.py" startup <reviewer> [--message <context>]
python3 "{skill_dir}/scripts/reviewer_comms.py" session-report scan <project-dir>
```
## Rules
- tmux routing is by window name under `dev-user:<target>`.
- Message and ack artifacts are file-backed under `.tkt/`.
- Meeting close emits per-owner inbox YAML under `.tkt/inbox/<reviewer>/`.
- Meeting agenda: any participant may pre-file items (`meeting agenda add`) before `meeting start` consumes them into the meeting md. Items are either `vote` or `discuss`.
- Absolute veto: any single participant may veto one agenda item (`meeting veto`) with a mandatory reason. The item is flagged `redraft_required` and the meeting continues for the remaining items — no quorum needed. Authority: Arthur 2026-04-13 directive.
- Session-report reuses B-054 coder lifecycle discovery logic.
- dispatch-down rejects placeholder payloads and reports TASK/EXPECTED OUTCOME/CONTEXT quality.
- dispatch-down triggers architecture escalation metadata after three retryable failures.
- startup loads reviewer soul profile mappings from `config/reviewer-comms.yaml`.
```skill-manifest
{
"schema_version": "2.0",
"id": "skill-system-reviewer-comms",
"version": "1.1.0",
"capabilities": ["reviewer-send", "reviewer-broadcast", "reviewer-ack", "reviewer-poll", "reviewer-meeting", "reviewer-meeting-agenda", "reviewer-meeting-veto", "reviewer-dispatch-down", "reviewer-startup", "reviewer-session-report"],
"effects": ["fs.read", "fs.write", "proc.exec", "db.read"],
"operations": {
"send": {
"description": "Send a reviewer message to one named reviewer window and log it.",
"input": {
"target": {"type": "string", "required": true, "description": "Reviewer window target"},
"message": {"type": "string", "required": true, "description": "Message body"}
},
"output": {
"description": "Delivery result and message id",
"fields": {"message_id": "string", "delivery": "object"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "send", "{target}", "{message}"]
}
},
"broadcast": {
"description": "Send a reviewer message to all known reviewer windows.",
"input": {
"message": {"type": "string", "required": true, "description": "Message body"}
},
"output": {
"description": "Per-target delivery rows",
"fields": {"rows": "array"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "broadcast", "{message}"]
}
},
"ack": {
"description": "Acknowledge a reviewer message.",
"input": {
"message_id": {"type": "string", "required": true, "description": "Message id"}
},
"output": {
"description": "Ack result",
"fields": {"ack_path": "string", "ack_at": "string"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "ack", "{message_id}"]
}
},
"poll": {
"description": "List sent reviewer messages with ack status.",
"input": {},
"output": {
"description": "Poll rows",
"fields": {"rows": "array"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "poll"]
}
},
"meeting": {
"description": "Manage reviewer meeting lifecycle including pre-filed agenda items and per-item absolute veto.",
"input": {
"subcommand": {"type": "string", "required": true, "description": "start/ack/status/close/agenda/veto/veto-list"}
},
"output": {
"description": "Meeting operation result",
"fields": {"meeting_id": "string", "agenda_consumed_path": "string", "redraft_required": "boolean"}
},
"entrypoints": {
"agent": "Invoke reviewer_comms.py meeting {start|ack|status|close|agenda add|agenda list|veto|veto-list} with required args. Agenda items (kind=vote|discuss) are pre-filed by any participant; a single veto with reason marks an item redraft_required and the meeting continues for remaining items."
}
},
"dispatch-down": {
"description": "Dispatch work context to a downstream opencode session with placeholder and prompt-quality guards.",
"input": {
"project_alias": {"type": "string", "required": true, "description": "Project alias fd|ep|sk"},
"session_type": {"type": "string", "required": true, "description": "Session lane"},
"message": {"type": "string", "required": true, "description": "Dispatch payload"},
"notify": {"type": "boolean", "required": false, "description": "Notification-only dispatch"}
},
"output": {
"description": "Dispatch result with prompt-quality metadata",
"fields": {"session_id": "string", "prompt_quality": "object"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "dispatch-down", "{project_alias}", "{session_type}", "{message}"]
}
},
"startup": {
"description": "Load reviewer soul profile and deliver startup payload.",
"input": {
"reviewer": {"type": "string", "required": true, "description": "Reviewer identity"},
"message": {"type": "string", "required": false, "description": "Optional startup context"}
},
"output": {
"description": "Startup delivery payload with profile metadata",
"fields": {"profile_name": "string", "profile_path": "string", "inbox_path": "string"}
},
"entrypoints": {
"unix": ["python3", "{skill_dir}/scripts/reviewer_comms.py", "startup", "{reviewer}"]
}
},
"session-report": {
"description": "Scan project sessions and emit per-session summaries.",
"input": {
"project_dir": {"type": "string", "required": true, "description": "Target project directory"}
},
"output": {
"description": "Session report rows and auto report payloads",
"fields": {"rows": "array", "auto_reports": "array"}
},
"entrypoints": {
"agent": "Invoke reviewer_comms.py session-report scan <project-dir>"
}
}
},
"stdout_contract": {
"last_line_json": true
}
}
```
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.