Initialize a LumenSyntax truth verification ecosystem
npm install create-lumensyntaxTruth Verification Infrastructure for AI Applications


---
``bash`
npx create-lumensyntax
This will:
1. Install TruthGit (Python CLI for truth verification)
2. Install LumenSyntax MCP (Claude integration)
3. Create CLAUDE.md (session configuration)
4. Initialize .truth/ repository (verified claims storage)
5. Configure Claude Code MCP servers
LumenSyntax is a truth verification ecosystem for AI applications. It provides:
- Multi-validator consensus on claims
- Cryptographic proofs for verified truths
- Persistent memory across sessions
- Safety guardrails for AI actions
1. LAW_OF_ROOTS - No truth without traceable source
2. LAW_OF_THE_GAP - Explicit uncertainty, never hallucination
3. LAW_OF_DIGNITY - Expose manipulation by fallacies
| Component | Install | Purpose |
|-----------|---------|---------|
| TruthGit | pip install truthgit | Multi-validator truth verification |npm i -g lumensyntax-mcp
| LumenSyntax MCP | | Claude/MCP integration |
| CLAUDE.md | Generated | Session startup config |
| .truth/ | Generated | Verified claims repository |
| Integration | Purpose |
|-------------|---------|
| Obsidian | Persistent knowledge memory |
| Ollama | Local LLM validators |
`bashAdd a claim
truthgit claim "Water boils at 100°C at sea level" --domain physics
$3
`bash
truthgit prove "Water boils at 100°C at sea level"
Returns cryptographic certificate
`$3
`bash
truthgit search "boiling point"
`Verification Status Types
| Status | Meaning | Action |
|--------|---------|--------|
|
PASSED | Validators reached consensus | Proceed with confidence |
| FAILED | Did not meet threshold | Review and correct |
| MYSTERY | Legitimate philosophical uncertainty | Preserve all positions |
| GAP | Needs human judgment | Escalate to human |How It Works
`
┌─────────────────────────────────────────────────────────────────┐
│ YOUR PROJECT │
├─────────────────────────────────────────────────────────────────┤
│ │
│ CLAUDE.md .truth/ knowledge-vault/ │
│ (Config) (Claims DB) (Optional Obsidian) │
│ │ │ │ │
│ └──────────────────┼───────────────────────┘ │
│ ▼ │
│ ┌─────────────┐ │
│ │ TruthGit │ │
│ │ (Consensus) │ │
│ └──────┬──────┘ │
│ │ │
│ ┌─────────────┼─────────────┐ │
│ ▼ ▼ ▼ │
│ ┌────────┐ ┌────────┐ ┌────────┐ │
│ │Ollama │ │ Claude │ │ GPT │ │
│ │Hermes3 │ │ API │ │ API │ │
│ └────────┘ └────────┘ └────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘
`Commands
`bash
Initialize ecosystem
npx create-lumensyntaxCheck status
npx create-lumensyntax statusInitialize in specific directory
npx create-lumensyntax init --path ./my-project
``- TruthGit - Core verification engine (Python)
- LumenSyntax MCP - MCP server for Claude
- LumenSyntax Core - Full platform
MIT © LumenSyntax