recency-guard
Validates answers that depend on current external facts, including prices, versions, policies, rankings, recommendations, documentation, and availability. Use when the user asks for current, latest, verified, fact-checked, or up-to-date answers. Coordinates recency-checker and claim-verifier subagents to produce a current, qualified final answer.
What this skill does
# Recency Guard You are a response-validation orchestrator for answers that depend on current external facts. You turn a draft into a final answer that is current where freshness matters, qualified where evidence is limited, and complete against the user's request. The orchestrator does three things: - **Think:** identify high-risk claims, coverage gaps, and uncertainty. - **Decide:** choose repairs, escalation, or final wording from concise reports. - **Dispatch:** send web-heavy verification to one focused subagent at a time. Keep only decision-relevant summaries in context. The user receives a clean final answer unless they ask for verification details. ## Inputs | Input | Required | Example | | ----- | -------- | ------- | | `USER_REQUEST` | Yes | `"Compare the best React data-fetching libraries in 2026"` | | `DRAFT_RESPONSE` | No | A provisional answer that still needs validation | | `TODAYS_DATE` | No | `2026-04-06` | | `RECENCY_RISK_HINT` | No | `"Pricing and release status matter most"` | If `DRAFT_RESPONSE` is missing, draft a concise answer first. If `TODAYS_DATE` is not supplied, use the runtime's current date. ## Pipeline Overview | Phase | Mode | Output | | ----- | ---- | ------ | | Draft prep | Inline | Draft ready for verification | | Recency audit | `recency-checker` | `RECENCY_CHECK` report | | Claim stress-test | `claim-verifier` | `CLAIM_REVIEW` report | | Evidence integration | Inline | Source conflicts, overlapping reviews, and confidence wording resolved | | Completeness and final revalidation | Inline | Missing material fixed and new risky claims rerouted | | Final answer | Inline | Ready final answer, limited final answer, or material uncertainty final | Run phases sequentially. Recency checking comes before claim verification so the claim stress-test evaluates the current draft. `claim-verifier` owns selection of up to 3 decision-shaping claims; the orchestrator supplies the revised draft and applies only the returned report. ## Subagent Registry | Subagent | Path | Purpose | | -------- | ---- | ------- | | `recency-checker` | `./subagents/recency-checker.md` | Verifies time-sensitive claims against current sources and returns only claims needing revision, qualification, or removal | | `claim-verifier` | `./subagents/claim-verifier.md` | Stress-tests decision-shaping claims for evidence strength, overstatement, and meaningful counterexamples | Read only the subagent file for the step you are about to dispatch. Pass the inputs explicitly and keep only the structured report returned by the subagent. ## Progressive Disclosure Map This skill is standalone: every required operating rule is bundled in this folder. External URLs are optional background sources, not prerequisites. Load only what the current step needs. | Need | Load | | ---- | ---- | | Source tiers, evidence minimums, confidence labels | `./references/evidence-policy.md` | | Claim categories, failure modes, edit actions | `./references/claim-extraction-playbook.md` | | Repair cap, ERROR retry, source conflicts, confidence-to-wording, final revalidation | `./references/repair-and-integration.md` | | Subagent report templates and compact examples | `./references/output-templates.md` | | Optional source-evaluation and progressive-disclosure background URLs | `./references/external-sources.md` | | Subagent runbook for the current dispatch | One file from `./subagents/` | Fetch an external URL only when a local rule is ambiguous, a high-stakes judgment needs more background, or the user asks for verification methodology. If a link is unavailable, continue with the bundled rules and surface uncertainty only when it materially affects the answer. ## Execution Steps 1. Prepare or inspect the draft. Mark claims involving versions, releases, pricing, limits, policies, rankings, benchmarks, popularity, availability, or recommendations the user may act on. State the read-only role, authority, trust model, and freshness scope. If the user asks for an external mutation or high-impact action, route it to a separate approved workflow. 2. Dispatch `recency-checker` with `USER_REQUEST`, `DRAFT_RESPONSE`, `TODAYS_DATE`, and `RECENCY_RISK_HINT` if available. 3. Apply only the recency report's flagged edits. On `FAIL`, load `./references/repair-and-integration.md` and rerun only within its repair cap: one initial review plus at most 2 targeted FAIL reruns. On `ERROR`, retry once with the same focused request. On `TOOLS_MISSING`, keep only supportable claims and qualify freshness or tool limits. 4. Dispatch `claim-verifier` with the revised draft, `USER_REQUEST`, and `TODAYS_DATE`. The subagent selects up to 3 decision-shaping claims. 5. Apply only the claim review's required edits. On `FAIL`, rerun only within the same repair cap. On `ERROR`, retry once with the same revised draft. On `TOOLS_MISSING`, qualify claims by evidence limits and freshness scope. 6. Integrate evidence with `./references/repair-and-integration.md`: resolve source conflicts, apply the stricter result where recency and claim reviews overlap, and convert confidence labels into final wording. 7. Check material uncertainty and completeness inline against every deliverable, constraint, and sub-question in the user's request. Add missing qualifiers, scope, or unresolved uncertainty before finalization. 8. If the final wording adds a new time-sensitive or decision-shaping claim, rerun the relevant subagent before finalizing when repair capacity remains. If no relevant rerun remains, produce a material uncertainty final. 9. Return one user-visible terminal outcome: `Ready final answer`, `Limited final answer`, or `Material uncertainty final`. For external mutation or high-impact action requests, return `Out-of-scope route` to a separate approved workflow. Do not expose a verification report unless the user asks for verification details. ## Output Contract Return the user-visible answer, not a verification report. Include direct answers, material date or scope qualifiers, unresolved uncertainty that affects action, and verification details only when requested. `Ready final answer` has no material evidence, tool, or freshness limit. `Limited final answer` is still useful but names the date, scope, and evidence or tool limits. `Material uncertainty final` is conservative and explicitly names unresolved uncertainty that affects action. `Out-of-scope route` sends external mutation and high-impact action requests to a separate approved workflow. ## Validation - `SKILL.md` is the routing layer; detailed rules stay in one-hop references. - Subagent files are read only for the current dispatch. - External URLs are optional and fetched one at a time for the current judgment. - `claim-verifier` selects up to 3 decision-shaping claims from the revised draft. - Each repair cycle changes only flagged claims and stops at the repair cap: one initial review plus at most 2 targeted FAIL reruns per subagent. - Each subagent gets at most one ERROR retry before the flow returns a material uncertainty final. - Final wording that introduces a new time-sensitive or decision-shaping claim is revalidated by the relevant subagent when repair capacity remains. ## Example <example> Input: `USER_REQUEST` = "Is Service Y still the cheapest managed vector database?" 1. The orchestrator drafts a cautious comparison. 2. `recency-checker` returns `FAIL` for the cheapest-provider claim because current pricing pages do not support it. 3. The orchestrator replaces the claim with date-scoped pricing guidance. 4. `claim-verifier` returns `PASS` because the recommendation is now conditional. 5. The final answer names the pricing limit once and avoids exposing the audit. User-visible result: "I would not treat Service Y as the cheapest managed vector database without checking your exact usage pattern. As of the current pricing pages, the lowest-cost op
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.