grounded-citations

Ground answers and documents in cited, verifiable sources.

  • Research
  • Citations
  • Grounding
  • Sources
  • Web
  • Reports

Declared platforms: linux · macos · windows

Install
npx skills add 'https://github.com/NousResearch/hermes-agent/tree/main/skills/research/grounded-citations'
Download bundle ↓
main · 24fd22bScanned 2026-09-15

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗
View on GitHub
---name: grounded-citationsdescription: "Ground answers and documents in cited, verifiable sources."version: 1.2.0author: Hermes Agent + Tekniumlicense: MITplatforms: [linux, macos, windows]metadata:  hermes:    tags: [Research, Citations, Grounding, Sources, Web, Reports]    category: research    related_skills: [arxiv, pdf, reddit-reading, rss-feeds, youtube-content]--- # Grounded Citations Every claim taken from an outside source gets an inline numbered citation and a`Sources:` list, Perplexity-style. A ledger script owns the `url → [n]` mappingso the numbers and URLs come from retrieval, never from memory — the model onlyever emits small integers it was handed. For high-stakes work the same ledger doubles as a fact-checking chain: verbatimquotes are attached to each source (rejected unless they literally appear inthe fetched page text), claims from model knowledge are flagged `[unverified]`,and `verify --evidence` fails any draft whose cited sources carry no evidence. This skill covers answers in chat, written documents (markdown, PDF, docx,slides), and research reports. It does not cover academic BibTeX pipelines —for conference papers use the `arxiv` skill, which this skillfeeds (see `references/citation-formats.md`). ## When to Use Use whenever an answer or artifact rests on information you fetched rather thanknew: - Research, comparisons, news summaries, "what is the current state of X"- Any deliverable you write to disk that quotes, paraphrases, or reports  outside facts — reports, briefs, docs, decks, wiki pages- Fact-finding where the user will want to check your work- Multi-source synthesis where conflicting sources must be attributed Skip inline citations when the retrieval is incidental to another task — aquick syntax/version lookup mid-coding, casual conversation, creative writing.Mention a URL only if the user would plausibly want the link. ## Prerequisites None beyond the standard toolset. `scripts/sources.py` is stdlib-only Python 3.Retrieval comes from whatever is configured: `web_search`, `web_extract`,`browser_navigate`, or `terminal` (curl, CLIs). Ledger location: `$HERMES_HOME/cache/citations/ledger.json` (profile-aware).Override per task with `--ledger <path>` or `HERMES_CITATION_LEDGER`. ## How to Run ```bashS=~/.hermes/skills/research/grounded-citations/scripts/sources.py python "$S" reset                                  # start a clean ledgerpython "$S" add https://example.com/a --title "A"  # prints: [1]python "$S" add https://example.com/b --title "B"  # prints: [2]python "$S" list                                   # ledger tablepython "$S" render                                 # Sources: blockpython "$S" verify draft.md                        # catch bad citations``` `add` is idempotent and URL-normalized: the same page always returns the sameid within a ledger, so ids stay stable across many search/extract rounds. ## Quick Reference | Action | Command ||---|---|| Fresh ledger for a new task | `sources.py reset` || Register a source, get its id | `sources.py add <url> [--title T]` || Register several at once | `sources.py add <url1> <url2> ...` || Register from JSON tool output | `sources.py ingest results.json` || Attach verbatim evidence to a source | `sources.py quote <id> --text "exact wording" --from page.txt` || Show ledger | `sources.py list [--json]` || Render the Sources block | `sources.py render [--style markdown\|plain\|footnotes\|bibtex\|evidence] [--only 1,3]` || Render only what a draft cites | `sources.py render --cited-in draft.md` || Rewrite a draft's Sources block in place | `sources.py render --replace-in draft.md` || Check a draft's citations | `sources.py verify draft.md [--strict] [--min-coverage 0.6] [--evidence]` | ## Procedure ① **Reset the ledger** at the start of a task that will produce a groundedanswer or document. Skip the reset when continuing work whose ids are alreadyin a draft — reusing the ledger keeps the numbering stable. ② **Register every source at retrieval time.** After each `web_search` /`web_extract` / `browser_navigate` / fetch, pass the URLs to `sources.py add`(or pipe the raw JSON through `sources.py ingest`). Do this *before* writingprose. Registering later, from memory, is the failure mode this skill exists toprevent. ③ **Write cite-while-drafting.** Place the bracketed id(s) immediately aftereach sentence the source supports: ```Ice floats because it is less dense than liquid water.[1][2]``` - No space before the bracket; each id in its own brackets.- Max 3 ids per sentence. Cite per sentence, not one dump at the end.- Only ids the ledger returned. Never invent an id or a URL.- Claims from your own knowledge get no citation.- Conflicting sources: present both readings, each with its own id.- Quote exact figures, dates, and names as the source states them; flag gaps  explicitly ("no source found for X") instead of smoothing them over. ④ **Append the Sources block** with `sources.py render --cited-in <draft>` sothe id → URL mapping is generated mechanically from the ledger, not retyped.For non-markdown targets pick the matching `--style` and follow`references/citation-formats.md` for placement (footnotes in docx, endnotes inPDF/LaTeX, a Sources slide in decks, per-page source lists in wiki output). ⑤ **Verify before delivering** — `sources.py verify <draft>` exits non-zero onunknown ids, on a Sources block that disagrees with the ledger, or (with`--min-coverage`) on prose that is too thinly cited. Fix and re-run. ⑥ **Chat answers** follow the same steps with the draft in your reply: registersources, cite inline, end with the rendered `Sources:` list. For a short answeryou may render the block from `sources.py render --only <ids>` instead ofwriting to a file. ## Multi-Platform Sweeps "What are people saying about X" / "research X across the web" is not one`web_search`. Fan out across source types, collect in parallel, then synthesisewith every claim attributed to the platform it came from: | Source type | Route | What it adds ||---|---|---|| Open web | `web_search` → `web_extract` | official docs, articles, announcements || Community discussion | `reddit-reading` (`search`, `thread`) | real user experience, complaints, workarounds || Blogs / releases / changelogs | `rss-feeds` (`read`, `discover`) | dated primary posts, version history || Video | `youtube-content` | walkthroughs, demos, talks || Code | `terminal` with `gh search repos` / `gh search issues` | implementations, open bugs || X/Twitter | `xurl` (needs API access) | announcements, developer chatter | The `reddit-reading` and `rss-feeds` skills are optional. If absent, install with`hermes skills install official/social-media/reddit-reading` or`hermes skills install official/research/rss-feeds` before using them. Register every URL from every route in the ledger as it arrives (step ②). Keepopinion and measurement apart: a Reddit thread is evidence that users *report*something, not that it is true; pair it with a primary source or label it assentiment. Report per-platform coverage gaps ("Reddit search returned nothingnewer than March") rather than silently narrowing to what worked. ## Fact-Checking Mode For work where the reader must be able to check the chain — medical, legal,financial, safety, disputed claims, or when the user asks for fact-checking —upgrade from citations to evidence: ① **Attach a verbatim quote per source.** After extracting a page, save itstext to a file and attach the sentence(s) that carry each claim: ```bashpython "$S" quote 1 --text "Ice is about 9% less dense than liquid water." --from page1.txt``` The quote is rejected unless it appears verbatim in the evidence text(insensitive to whitespace, case, and markdown markup — inline links like`_[ERAP1](https://…)_` in extracted text match the plain prose a reader sees),so a paraphrase or misremembered figure cannot masquerade as evidence.Copy-paste from the fetched text; never retype. Quote the sentence as thereader sees it — the matcher sees through the extractor's markup for you, soyou don't have to reproduce link syntax or escaped asterisks in your quote. ② **Flag model-knowledge claims with `[unverified]`.** A load-bearing claimyou could not source gets an explicit marker instead of a citation: ```The refactor likely predates the 2.0 release.[unverified]``` `verify --min-coverage` counts `[unverified]` sentences as covered — the goalis declared provenance for every claim, not a citation on every sentence.If a key claim can be checked, check it; `[unverified]` is for what genuinelycannot be, and a fact-check deliverable dominated by `[unverified]` markersshould say so in its summary. ③ **Cross-check disputed facts against a second independent source.** When twosources disagree, cite both readings with their own ids and quotes, and saywhich you weight and why. One source is reporting; two independent sources arecorroboration. ④ **Verify with the evidence gate and render the evidence block:** ```bashpython "$S" verify report.md --evidence --min-coverage 0.5python "$S" render --style evidence --replace-in report.md``` `--evidence` fails the draft if any cited source has no attached quote. The`evidence` render style prints each source's quotes beneath its URL, so thedeliverable shows claim → source → exact supporting text with nothing taken onfaith. Use `--replace-in <draft>` to rewrite an existing Sources block in place(idempotent — safe to re-run after attaching more quotes); `--cited-in` printsto stdout instead. Both emit the heading `## Sources` (`--style plain` emits`Sources:`). **What `--min-coverage` counts.** Coverage is`sentences with declared provenance / prose sentences`. A prose sentence is anon-empty line fragment of 4+ words after the Sources block, headings (`#`),table rows (`|`), and fenced code are dropped; blockquote markers are stripped.Provenance is declared by either a `[n]` citation or an `[unverified]` marker,so a sentence carrying both counts once. Run `verify` without a threshold firstand read the `info: stats:` line to see the counts before picking a number. ## Pitfalls - **Registering after writing.** The ledger must be populated from tool output,  not reconstructed from the draft — that reintroduces exactly the hallucinated  -URL risk the numbering removes.- **Renumbering mid-task.** Never hand-edit ids in a draft. Ids are ledger  identities; if a draft cites `[4]`, `[4]` must stay that source. Run `reset`  only between tasks.- **Retyping URLs into the Sources block.** Always `render`. A hand-typed URL  is an unverified claim.- **Citing a search snippet as if you read the page.** A `web_search`  description supports only what it literally says. Cite the extracted page  when the claim needs the body — `web_extract` it first.- **Over-citing.** Three ids on a sentence is the ceiling; a citation on every  clause makes text unreadable and hides which source carries the load.- **Citing the ledger in code/config artifacts.** Source comments belong in  prose deliverables and doc headers, not inside generated code.- **Parallel subagents.** Each subagent has its own working directory; point  them all at one ledger with `--ledger` (or `HERMES_CITATION_LEDGER`) if their  outputs get merged, otherwise their ids will collide.- **Quoting from a snippet instead of the page.** Evidence quotes must come  from the extracted page text, not a search-result description — `web_extract`  first, save the text, then `quote --from` that file.- **Paraphrasing into `quote --text`.** The verbatim check will reject it; the  fix is to find the actual sentence, not to reword until something matches.- **Using `[unverified]` as an escape hatch.** It marks the rare claim that  genuinely cannot be sourced; if most sentences carry it, the task needed more  retrieval, not more markers.- **Hand-editing the Sources block.** Use `render --replace-in <draft>`; slicing  the file yourself risks a stale or duplicated block that `verify` then flags. ## Verification ```bashpython "$S" verify report.md --strict --min-coverage 0.5``` Green means: every `[n]` in the draft exists in the ledger, the Sources blocklists exactly the cited ids with the ledger's URLs, and the cited share ofsource-bearing sentences meets the threshold. Read the warnings even when theexit code is 0 — uncited registered sources usually mean a claim lost itsattribution during editing. 
Discovery context

Discovered by repository scan. No exact path reference found in the snapshot’s root AGENTS.md.