A historical research project exploring Benjamin Franklin’s pioneering work in atmospheric science and climate, tracing the evolution of these fields from the 18th century through the early 20th century.
This repository follows the LLM Wiki pattern - a system for building and maintaining personal knowledge bases using LLMs. Rather than just storing documents, the LLM incrementally builds and maintains a structured, interlinked wiki that synthesizes information across sources.
/
├── raw/ # Source documents (immutable)
│ └── [historical documents, papers, articles]
├── wiki/ # LLM-maintained wiki (structured knowledge)
│ ├── index.md # Content catalog
│ ├── log.md # Chronological activity log
│ ├── overview.md # High-level synthesis
│ ├── entities/ # People, organizations, places
│ ├── concepts/ # Scientific concepts and theories
│ ├── sources/ # Source summaries
│ └── topics/ # Thematic syntheses
├── CLAUDE.md # Schema defining wiki structure and workflows
├── llm-wiki.md # Pattern documentation
└── README.md # This file
raw/ - Your curated collection of source documents. These are immutable - the LLM reads from them but never modifies them.
wiki/ - LLM-generated and maintained markdown files. The LLM creates summaries, entity pages, concept pages, and maintains cross-references. This is where knowledge is synthesized and structured.
CLAUDE.md - The schema file that tells the LLM how the wiki is structured, what conventions to follow, and what workflows to use.
Ingest: Process a new source document. The LLM reads it, creates a summary, updates relevant entity and concept pages, and maintains the index.
Query: Ask questions against the wiki. The LLM searches relevant pages and synthesizes answers with citations.
Lint: Health-check the wiki for contradictions, stale claims, missing cross-references, and gaps.
wiki/overview.md for a high-level synthesiswiki/index.md catalogs all pages by categoryWiki initialized - The structure is in place and ready for source ingestion. Six historical documents are in raw/ awaiting processing.
Benjamin Franklin was investigating two connected phenomena from 1783-1784:
Franklin proposed that the fog (caused by volcanic eruptions, particularly Lakagígar in Iceland) reduced the sun’s heating effect, leading to the severe winter. This was remarkably prescient - modern science has confirmed the connection between volcanic aerosols and climate patterns.
This repository traces the development of atmospheric and climate science from Franklin’s early observations through the formalization of greenhouse gas theory in the late 19th century.
llm-wiki.md for detailed documentation of the LLM Wiki patternCLAUDE.md for the specific schema and workflows for this wikiwiki/overview.md for a synthesis of the current knowledge baseThis is a research and educational project. Source documents are historical and in the public domain where applicable.