KJVEL DATABASE SEARCH

31,102 verses · 12,766 words · 3,003 names decoded · 1,111 perfect Tesla · 203 families

KJVEL Quick Start Guide

Title = 245 DR=2 4K Search =245

KJVEL Quick Start Guide =245

Get up and running in 5 minutes.


Prerequisites =181

  • Python 3.8+
  • numpy (pip install numpy)
  • That's it. No other dependencies.

Setup =81

`bash

git clone <repo-url>

cd KJVEL

1. Parse the raw KJV text into structured JSON =511

python src/ingest.py

Creates: data/kjv_parsed.json (6.8 MB, 31,102 verses) =364

2. Run all analysis engines =251

python src/analyze.py

Creates: data/*.json (134 analysis files) =306

3. Build the database =134

python src/build_db.py

Creates: data/kjvel.db (165 MB, 975K rows, ~3.8 seconds) =343

`

Try It Out =148

Decode a name =70

`bash

python src/name_decoder.py "JESUS"

`

Output: gematria=74, DR=2, 9 cipher systems, KJV frequency twins, Psalm pointer, and more. Creates data/name_decodes/name_decode_jesus.json + .txt.

Search the corpus =179

`bash

python src/search_server.py

Open http: /localhost:8740 =219

`

Type a word, number, or verse reference. Every result shows Tesla signatures and clickable links.

Run the phreaking kit =215

`bash

Full fingerprint of any term =304

python src/phreak.py jubilee "BITCOIN"

Threat-score a group =210

python src/phreak.py stones "GOLD,SILVER,BRONZE"

Find the hidden thread connecting terms =345

python src/phreak.py chain "ADAM,EVE,SERPENT"

Reverse lookup: what terms have gematria 74? =419

python src/phreak.py reverse 74

Quantum crypto vulnerability scan =411

python src/phreak.py quantum "RSA,AES"

`

Connect an AI agent via MCP =210

Add to ~/.claude/settings.json:

`json

{

"mcpServers": {

"kjvel": {

"command": "python3"

"args": ["src/mcp_server.py"]

"cwd": "/path/to/KJVEL"

}

}

}

`

Now any Claude Code session has 16 KJVEL tools available automatically.

Decode biochemistry =182

`bash

python src/biochem_decoder.py

`

Maps amino acids, codons, genes, and diseases through KJV gematria.


Key Concepts in 60 Seconds =238

Gematria: A=1, B=2, ... Z=26. Sum the letters. JESUS=74. CHRIST=77.

Digital Root: Keep summing digits until single. DR(74) = 7+4 = 11 = 1+1 = 2.

Tesla Signature: DR is 3, 6, or 9. Tesla said "if you knew the magnificence of 3, 6, 9, you'd have the key to the universe."

The Discovery: Individual layers show ~33% Tesla (random baseline). But when you multiply layers together (address × content), Tesla rate jumps to 55%, then 69%. The signal is in the interaction between layers.

1,098 Resonance Verses: Achieve perfect 7/7 Tesla saturation. They span 59 of 66 books and tell the Fall→Redemption arc. First: Genesis 3:6 (the Fall). Last: Revelation 21:27 (Book of Life).


Reading the Results =205

Want to know...Read this
Everything at once
The mathAXIOMS.md
What was foundFINDINGS.md
How it's builtDESIGN.md
MCP toolsMCP_README.md
Detailed analysisdocs/01-92_*.md
Name decodesdata/name_decodes/*.txt

Common Tasks =143

TaskCommand
Parse raw textpython src/ingest.py
Run all enginespython src/analyze.py
Build databasepython src/build_db.py
Decode a namepython src/name_decoder.py "NAME"
Search browserpython src/search_server.py
Start MCP serverpython src/mcp_server.py
Build familiespython src/family_builder.py
Phreak scanpython src/phreak.py MODE ARGS
Biochem decodepython src/biochem_decoder.py
Quantum scanpython src/phreak.py quantum --all

Project Scale =127

  • 174 Python analysis engines
  • 1,233+ name decodes (JSON + TXT pairs)
  • 31,102 verses analyzed
  • 975,000+ database rows
  • 192 EL compression families
  • 20 verified mathematical axioms
  • 92+ analysis documents
  • 24 audio healing frequency tracks
  • 16 MCP tools
  • 2 live web deployments (come.rent, biblename.me)