This document provides comprehensive navigation for all resources in the Voynich Translation System.
Start with these 3 documents in order:
- AI_RESEARCH_GUIDE.md - Your mission, capabilities, and decision framework
- WORKFLOW_INSTRUCTIONS.md - Complete step-by-step workflow
- VOCABULARY_EXTENSION_GUIDE.md - Linguistic methodology
Configuration files:
- agent_config.yaml - Your behavior parameters
- research_workflow.yaml - Workflow definition
- vocabulary_rules.yaml - Morphological rules
Run your first iteration:
python scripts/iteration_orchestrator.py --validation-gatesEssential guides:
- README.md - Project overview and quick start
- DEVELOPMENT_GUIDE.md - Complete usage guide
- SYSTEM_ARCHITECTURE.md - Technical architecture
Then:
- Try translating:
python translate_folio.py --section q02 --folio 014r - Analyze gaps:
python analyze_gaps.py --min-freq 5 - Update dictionary:
python scripts/batch_dictionary_updater.py --interactive
Key documents:
- RESEARCH_RESULTS.md - Performance metrics and analysis
- SYSTEM_ARCHITECTURE.md - Technical foundation
- voynich.md - Complete decipherment framework (1000+ lines)
Historical reports:
- See docs/archive/ for 12 archived reports
Primary documents for AI agents conducting research:
| Document | Purpose | Priority |
|---|---|---|
| AI_RESEARCH_GUIDE.md | START HERE - Complete agent instructions, decision framework, examples | ⭐⭐⭐⭐⭐ |
| WORKFLOW_INSTRUCTIONS.md | Step-by-step workflow for each iteration phase | ⭐⭐⭐⭐⭐ |
| VOCABULARY_EXTENSION_GUIDE.md | Linguistic methodology, morphological patterns, worked examples | ⭐⭐⭐⭐⭐ |
Technical and operational documentation:
| Document | Purpose | Priority |
|---|---|---|
| README.md | Project overview, quick start, navigation | ⭐⭐⭐⭐⭐ |
| DEVELOPMENT_GUIDE.md | Complete usage guide with all commands | ⭐⭐⭐⭐⭐ |
| SYSTEM_ARCHITECTURE.md | Technical architecture, components, design | ⭐⭐⭐⭐ |
| RESEARCH_RESULTS.md | Performance metrics, coherency analysis | ⭐⭐⭐⭐ |
| MASTER_INDEX.md | This file - navigation hub | ⭐⭐⭐ |
Detailed research materials:
| Document | Purpose | Priority |
|---|---|---|
| voynich.md | Complete 1000+ line decipherment framework | ⭐⭐⭐⭐ |
| docs/archive/ | 12 historical reports (detailed session logs) | ⭐⭐⭐ |
System configuration in YAML format:
| File | Purpose | Priority |
|---|---|---|
| voynich.yaml | Master dictionary - 708 words with descriptions | ⭐⭐⭐⭐⭐ |
| agent_config.yaml | AI agent behavior and parameters | ⭐⭐⭐⭐ |
| research_workflow.yaml | Complete 6-phase workflow definition | ⭐⭐⭐⭐ |
| vocabulary_rules.yaml | Morphological and linguistic rules | ⭐⭐⭐⭐ |
| Script | Purpose | Quick Example |
|---|---|---|
| download_folios.py | Download folios from voynich.nu | python download_folios.py --section q02 |
| translator.py | Core translation engine (library) | Used by other scripts |
| translate_folio.py | CLI for translation | python translate_folio.py --section q02 --folio 014r |
| analyze_gaps.py | Gap analysis tool | python analyze_gaps.py --min-freq 5 |
| review_and_update.py | Legacy dictionary updater | python review_and_update.py --interactive |
| Script | Purpose | Quick Example |
|---|---|---|
| word_frequency.py | Frequency analysis | python scripts/word_frequency.py --min-freq 10 |
| morphology_analyzer.py | Morphological decomposition | python scripts/morphology_analyzer.py --word kokaiin |
| pattern_detector.py | Pattern & formula detection | python scripts/pattern_detector.py --pattern-type all |
| compound_decomposer.py | Compound word analysis | python scripts/compound_decomposer.py --word qotchedy |
| batch_dictionary_updater.py | Dictionary management | python scripts/batch_dictionary_updater.py --interactive |
| validation_checker.py | System integrity checks | python scripts/validation_checker.py --check-type all |
| iteration_orchestrator.py | Full workflow automation | python scripts/iteration_orchestrator.py --validation-gates |
| Location | Contents | Purpose |
|---|---|---|
data/folios/*.txt |
Downloaded folio transcriptions (EVA format) | Source text |
data/folios/metadata.json |
Folio metadata (word counts, sections) | Organization |
| Location | Contents | Purpose |
|---|---|---|
data/translations/*.json |
Translation outputs (Voynich, Latin, English) | Results |
data/dictionary_suggestions.json |
Gap analysis output | Vocabulary priorities |
data/unknown_ranked.json |
Frequency-ranked unknown words | Analysis |
data/patterns_detected.json |
Detected patterns | Pattern analysis |
data/morphology_analysis.json |
Morphological decompositions | Linguistic analysis |
| Location | Contents | Purpose |
|---|---|---|
reports/ |
Iteration reports | Track progress |
docs/archive/ |
Historical session reports | Reference |
- Start: README.md
- Deep dive: SYSTEM_ARCHITECTURE.md
- Research: RESEARCH_RESULTS.md
- Guide: DEVELOPMENT_GUIDE.md → Translation Commands
- Script:
python translate_folio.py --section q02 --folio 014r
- AI Agent: VOCABULARY_EXTENSION_GUIDE.md
- Developer: DEVELOPMENT_GUIDE.md → Phase 4: Update Dictionary
- Script:
python scripts/batch_dictionary_updater.py --interactive
- Guide: WORKFLOW_INSTRUCTIONS.md → Phase 2: Analyze Patterns
- Scripts:
python scripts/word_frequency.py --min-freq 5python analyze_gaps.py --min-freq 5
- Guide: VOCABULARY_EXTENSION_GUIDE.md → Decomposition Strategies
- Scripts:
python scripts/morphology_analyzer.py --word kokaiinpython scripts/compound_decomposer.py --word qotchedy
- Script:
python scripts/validation_checker.py --check-type all - Reference: SYSTEM_ARCHITECTURE.md → Quality Control
- AI Agent: WORKFLOW_INSTRUCTIONS.md
- Script:
python scripts/iteration_orchestrator.py --validation-gates
- Results: RESEARCH_RESULTS.md
- Metrics: README.md → Performance section
- File: agent_config.yaml
- Reference: AI_RESEARCH_GUIDE.md → Configuration section
- README.md - Overview (10 min)
- DEVELOPMENT_GUIDE.md - Quick Start section (5 min)
- Try commands (15 min):
- Validate:
python scripts/validation_checker.py --check-type all - Translate:
python translate_folio.py --section q02 --folio 014r - View:
python translate_folio.py --section q02 --show 014r
- Validate:
- AI_RESEARCH_GUIDE.md - Complete read (45 min)
- WORKFLOW_INSTRUCTIONS.md - Complete read (45 min)
- VOCABULARY_EXTENSION_GUIDE.md - Skim patterns (30 min)
- Run:
python scripts/iteration_orchestrator.py --validation-gates
- README.md - Overview (15 min)
- SYSTEM_ARCHITECTURE.md - Complete read (60 min)
- DEVELOPMENT_GUIDE.md - Complete read (45 min)
- RESEARCH_RESULTS.md - Review metrics (30 min)
- Explore code:
translator.py- Core enginescripts/morphology_analyzer.py- Linguistic logic
- Run experiments (90 min)
- README.md - Context (15 min)
- RESEARCH_RESULTS.md - Complete read (60 min)
- voynich.md - Skim sections (60 min)
- SYSTEM_ARCHITECTURE.md - Methodology section (30 min)
- docs/archive/ - Browse reports (15 min)
Guides:
- DEVELOPMENT_GUIDE.md → Translation Commands
- WORKFLOW_INSTRUCTIONS.md → Phase 5: Test
Scripts:
- Single:
translate_folio.py --section q02 --folio 014r - Batch:
translate_folio.py --section q02 --start 14 --end 16 - View:
translate_folio.py --section q02 --show 014r
Guides:
- AI_RESEARCH_GUIDE.md → Decision Framework
- VOCABULARY_EXTENSION_GUIDE.md → Finding New Words
- WORKFLOW_INSTRUCTIONS.md → Phase 2: Propose
Scripts:
- Analyze:
analyze_gaps.py --min-freq 5 - Frequency:
scripts/word_frequency.py --min-freq 10 - Morphology:
scripts/morphology_analyzer.py --word WORD - Update:
scripts/batch_dictionary_updater.py --interactive
Guides:
- VOCABULARY_EXTENSION_GUIDE.md → Decomposition Strategies
- WORKFLOW_INSTRUCTIONS.md → Phase 2.4: Detect Patterns
Scripts:
- Patterns:
scripts/pattern_detector.py --pattern-type all - Morphology:
scripts/morphology_analyzer.py --batch-file words.txt - Compounds:
scripts/compound_decomposer.py --word WORD --strategy all
Guides:
- SYSTEM_ARCHITECTURE.md → Quality Control
- WORKFLOW_INSTRUCTIONS.md → Validation Gates
Scripts:
- Validate:
scripts/validation_checker.py --check-type all - Check dictionary:
scripts/validation_checker.py --check-type dictionary - Check translations:
scripts/validation_checker.py --check-type translations
voynich/
├── README.md ⭐⭐⭐⭐⭐ Start here
├── MASTER_INDEX.md ⭐⭐⭐ This file
├── AI_RESEARCH_GUIDE.md ⭐⭐⭐⭐⭐ For AI agents
├── WORKFLOW_INSTRUCTIONS.md ⭐⭐⭐⭐⭐ Step-by-step
├── VOCABULARY_EXTENSION_GUIDE.md ⭐⭐⭐⭐⭐ Linguistic guide
├── DEVELOPMENT_GUIDE.md ⭐⭐⭐⭐ Usage guide
├── SYSTEM_ARCHITECTURE.md ⭐⭐⭐⭐ Technical docs
├── RESEARCH_RESULTS.md ⭐⭐⭐⭐ Performance
├── voynich.md ⭐⭐⭐⭐ Full framework
├── voynich.yaml ⭐⭐⭐⭐⭐ Dictionary
├── agent_config.yaml ⭐⭐⭐⭐ AI config
├── research_workflow.yaml ⭐⭐⭐⭐ Workflow
├── vocabulary_rules.yaml ⭐⭐⭐⭐ Rules
├── Core scripts (download, translate, analyze)
└── LICENSE
scripts/ ⭐⭐⭐⭐ Helper tools
├── word_frequency.py
├── morphology_analyzer.py
├── pattern_detector.py
├── compound_decomposer.py
├── batch_dictionary_updater.py
├── validation_checker.py
└── iteration_orchestrator.py
data/ ⭐⭐⭐ Data files
├── folios/ Transcriptions
├── translations/ Outputs
├── dictionary_suggestions.json Gap analysis
└── [other analysis files]
docs/ ⭐⭐⭐ Documentation
└── archive/ Historical reports
reports/ ⭐⭐ Iteration logs
└── iteration_*.md
# Validate system
python scripts/validation_checker.py --check-type all
# Translate folio
python translate_folio.py --section q02 --folio 014r
# View translation
python translate_folio.py --section q02 --show 014r
# Analyze gaps
python analyze_gaps.py --min-freq 5
# Word frequency
python scripts/word_frequency.py --min-freq 10 --top 20
# Morphology
python scripts/morphology_analyzer.py --word kokaiin
# Update dictionary
python scripts/batch_dictionary_updater.py --interactive --backup
# Full iteration
python scripts/iteration_orchestrator.py --validation-gatesSee DEVELOPMENT_GUIDE.md → Complete Command Reference
As of November 27, 2025:
- Dictionary: 708 words
- Coverage: 56.6% average (Herbal B: 67.0%, Herbal A: 52.8%)
- Best Folio: 73.1% (q02_f014r)
- Coherency: 7.0/10 (GOOD)
- System Status: ✅ OPERATIONAL & PRODUCTION-READY
Next Target: 62-65% combined coverage (3-4 iterations)
- Complete Framework: voynich.md
- Architecture: SYSTEM_ARCHITECTURE.md
- Methodology: VOCABULARY_EXTENSION_GUIDE.md
- Historical Reports: docs/archive/
- voynich.nu: EVA transcriptions and folio images
- Wikipedia: Voynich Manuscript overview
- Yale Beinecke: High-resolution manuscript scans
- EVA Standard: European Voynich Alphabet documentation
| Document | Summary |
|---|---|
| README.md | Project overview with quick start and navigation |
| AI_RESEARCH_GUIDE.md | Complete AI agent instructions with decision framework and examples |
| WORKFLOW_INSTRUCTIONS.md | Detailed step-by-step workflow for each iteration phase |
| VOCABULARY_EXTENSION_GUIDE.md | Linguistic methodology and morphological analysis techniques |
| DEVELOPMENT_GUIDE.md | Complete usage guide with all commands and examples |
| SYSTEM_ARCHITECTURE.md | Technical architecture, components, and design principles |
| RESEARCH_RESULTS.md | Performance metrics, coherency analysis, and achievements |
| MASTER_INDEX.md | Comprehensive navigation hub (this document) |
| voynich.md | Complete 1000+ line decipherment framework |
- Repository: (local project)
- Data Source: https://voynich.nu
- Folio Images: https://voynich.nu/q[section]/f[folio].jpg
- Yale Collection: https://brbl-dl.library.yale.edu/vufind/Record/3519597
- EVA Transcription: Standard Voynich alphabet system
- Voynich Manuscript (Wikipedia): Historical background
- Medieval Latin Resources: For translation validation
New to the project?
- Read README.md
- Choose your path (AI Agent / Developer / Researcher)
- Read relevant guides
- Run validation:
python scripts/validation_checker.py --check-type all - Try a translation:
python translate_folio.py --section q02 --folio 014r
AI Agent starting research?
- Read AI_RESEARCH_GUIDE.md
- Study WORKFLOW_INSTRUCTIONS.md
- Review VOCABULARY_EXTENSION_GUIDE.md
- Check agent_config.yaml
- Run:
python scripts/iteration_orchestrator.py --validation-gates
Developer integrating?
- Review SYSTEM_ARCHITECTURE.md
- Read DEVELOPMENT_GUIDE.md
- Explore code in
scripts/ - Check RESEARCH_RESULTS.md
- Run tests:
python scripts/validation_checker.py --check-type all
Researcher evaluating?
- Check README.md performance metrics
- Read RESEARCH_RESULTS.md
- Review voynich.md methodology
- Browse docs/archive/ for history
- Examine SYSTEM_ARCHITECTURE.md technical details
Last Updated: November 27, 2025
System Version: 5.0 (AI Agent System)
Status: ✅ OPERATIONAL
Need help finding something? Check the relevant section above or start with README.md!