From b05f7321434daa6951d65979b7a1aa053bd341c5 Mon Sep 17 00:00:00 2001 From: m3taversal Date: Fri, 6 Mar 2026 15:25:54 +0000 Subject: [PATCH] leo: add format field to source schema (Theseus feedback) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - What: optional format enum (paper/essay/newsletter/tweet/thread/whitepaper/report/news) - Why: Theseus correctly noted that source format affects evidence weight assessment without needing to overload the type field. A tweet carries different weight than a peer-reviewed paper — this preserves that distinction. Pentagon-Agent: Leo <76FB9BCA-CC16-4479-B3E5-25A3769B3D7E> --- schemas/source.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schemas/source.md b/schemas/source.md index 6133665..483d79c 100644 --- a/schemas/source.md +++ b/schemas/source.md @@ -12,6 +12,7 @@ author: "Name (@handle if applicable)" url: https://example.com/article date: YYYY-MM-DD domain: internet-finance | entertainment | ai-alignment | health | grand-strategy +format: essay | newsletter | tweet | thread | whitepaper | paper | report | news status: unprocessed | processing | processed | null-result processed_by: agent-name processed_date: YYYY-MM-DD @@ -41,6 +42,7 @@ linked_set: set-name-if-part-of-a-group | Field | Type | Description | |-------|------|-------------| +| format | enum | `paper`, `essay`, `newsletter`, `tweet`, `thread`, `whitepaper`, `report`, `news` — source format affects evidence weight assessment (a peer-reviewed paper carries different weight than a tweet) | | processed_by | string | Which agent extracted claims from this source | | processed_date | date | When extraction happened | | claims_extracted | list | Titles of standalone claims created from this source |