evidence-first-answer

Solid

Required pre-flight before answering any "why" or "are we" question about revenue, conversion, outbound, traffic, or commercial state. Forces verification of live data and distinguishes planning docs from telemetry. Triggered automatically when the CEO asks "are you sure?" — that phrase means the previous answer was wrong.

Code & Development 24 stars 7 forks Updated today MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
47
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Evidence-First Answer — The "Are You Sure?" Discipline ## When to invoke - Any user question that contains: "why didn't", "how come no", "are we", "what's our", "did we", "how much", "revenue", "money", "customers", "conversion", "traffic", "leads", "sales" - Any pushback that contains: **"are you sure?"**, "really?", "is that right?", "verify", "prove it" - Before writing any phrase that implies traction or its absence ## The hard discipline (4 steps, no skipping) ### 1. Date-check every number you're about to cite ```bash # For any doc you're about to quote: git log -1 --format='%ai %s' -- <path> grep -E "^Updated:|^Status:|2026-" <path> | head -5 ``` If the doc's last-updated date is older than 14 days, **treat its numbers as historical, not current.** Say "as of <date>" explicitly. ### 2. Distinguish "plan" from "telemetry" Words/phrases that mean the number is a **forecast, not an actual**: - "30-day revenue plan showed..." - "Modeled target..." - "Projected..." - "If we hit..." - Any number inside `docs/MONETIZATION_EXEC_SUMMARY_*.md` past line 30 - Any number inside `reports/gtm/*` that isn't backed by a same-file `curl` output Words/phrases that mean the number is **measured**: - "`getBillingSummary` returned..." - "`curl /v1/billing/summary` JSON..." - "Stripe-reconciled charges..." - A bash code block with the actual command + output When in doubt, run `revenue-truth` skill — query the live endpoint. ### 3. The "what would change my mind" test Before s...

Details

Author
IgorGanapolsky
Repository
IgorGanapolsky/ThumbGate
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

scientific-method

Use this skill whenever someone doubts a number, demands rigorous proof of a cause, or wants something invented and proven — any time a benchmark, metric, ceiling, or root-cause story must be verified rather than trusted, or a limit must be broken with a built, measured mechanism. Typical situations: a measurement looks suspicious ("2x faster but I don't trust it"); an incident needs its true cause before a decision ("the team blames X — confirm it, no guessing"); ANY production incident, outage, brownout, latency/error spike, regression, or "started failing" / "load suddenly went 5x" / "every component met spec but it still broke" report where the cause is not yet proven — especially when a recent deploy or change is suspected ("is the deploy to blame", "this coincided with the rollout"), since the obvious suspect is exactly what needs a control case; an asserted ceiling or "impossible" limit needs breaking or proving real; numbers need validation before publishing; a problem needs an invented solution that

1 Updated 4 days ago
88plug
AI & Automation Listed

evidence-investigate

Use when answering questions about the CURRENT state of code, git history, or on-disk files — e.g. "is X installed", "what does Y do", "what branch has Z", "when did W change", "does the running code have feature F". Do NOT use for trivial file existence checks answerable by a single ls, for implementation/edit work, or for questions about mutable external state (APIs, databases, live processes, Telegram history).

0 Updated 6 days ago
0xAddict
AI & Automation Listed

deep-grounding

Run a deep-grounding pass BEFORE asserting or analyzing — do not answer from priors on the first source or angle that comes to mind. Ask "where could the evidence for this be?", gather the relevant available sources (project memory, READMEs/docs, the actual code/config, tests, logs/telemetry, tickets, git history, the web — whatever fits the question), and follow the leads they reveal RECURSIVELY, even low-odds ones, until the trail runs dry; THEN reason, grounded, tagging each conclusion with its evidence tier and stating what could not be verified. Use this PROACTIVELY whenever you are about to assert a checkable claim, start a non-trivial analysis / design / diagnosis / recommendation, or answer from "what you already know" — ESPECIALLY when you notice yourself reaching for a conclusion from a single source or a single angle, or when a result BEATS your expectation (favorable surprises are the ones that silently skip verification). Evidence, not more reasoning, is what escapes a wrong prior.

1 Updated today
home-dev-lab