npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-lumensyntax

v1.3.0

Published

Initialize a LumenSyntax truth verification ecosystem

Readme

LumenSyntax Ecosystem

Truth Verification Infrastructure for AI Applications

npm License: MIT

DocumentationTruthGitDiscord


Quick Start

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

What is LumenSyntax?

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

The Three Laws

  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

Components

Core (100% LumenSyntax)

| Component | Install | Purpose | |-----------|---------|---------| | TruthGit | pip install truthgit | Multi-validator truth verification | | LumenSyntax MCP | npm i -g lumensyntax-mcp | Claude/MCP integration | | CLAUDE.md | Generated | Session startup config | | .truth/ | Generated | Verified claims repository |

Optional Integrations

| Integration | Purpose | |-------------|---------| | Obsidian | Persistent knowledge memory | | Ollama | Local LLM validators |

Usage

Verify a Claim

# Add a claim
truthgit claim "Water boils at 100°C at sea level" --domain physics

# Verify with multiple validators
truthgit verify

# Output:
# ✓ Consensus: 94% (3/3 validators)
# Status: PASSED

Generate Proof

truthgit prove "Water boils at 100°C at sea level"
# Returns cryptographic certificate

Search Verified Claims

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

# Initialize ecosystem
npx create-lumensyntax

# Check status
npx create-lumensyntax status

# Initialize in specific directory
npx create-lumensyntax init --path ./my-project

Related Projects

License

MIT © LumenSyntax