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

proof-of-persona

v2.0.0

Published

Cryptographically verified digital personalities with online reputations and LLM-style thinking.

Downloads

10

Readme

🧬 Proof of Persona

Your programmable onchain identity, powered by signed thoughts.

👉 Full Documentation


🚀 Overview

proof-of-persona is a CLI and SDK for pseudonymous identity through cryptographically signed thoughts.

It redefines identity through behavior, writing, and thought — not accounts.


🔑 Philosophy

You are not a login. You are what you think.

The modern web replaced thought with engagement. persona reclaims identity through consistent, signed expression.

  • No email
  • No KYC
  • No centralized login
  • Just thinking, signing, and reputation

🧠 How It Works

  • Create persona: A unique alias + public key + behavioral model
  • Post thoughts: Signed locally with private key
  • Store data: JSON files in ./storage/ or exported
  • Verify identity: Every thought is cryptographically verifiable

🛠 Features

  • ✅ Local-first, privacy-focused
  • ✅ CLI-powered identity layer
  • ✅ Signed thought logs (verifiable)
  • ✅ Portable and extensible formats (JSON, TXT, ZIP)
  • ✅ Import/export personas and thoughts
  • ✅ Signature validation (via Ethers.js)

✨ Use Cases

  • 🧾 Pseudonymous blogs (signed with key)
  • 🧠 AI memory trails (LLM identity)
  • 🧱 DAO voting via thought identity
  • 🗨️ Forums with signed post authorship
  • 🧠 Philosophy/idea journaling

📦 Installation

npm install -g proof-of-persona

See installation.md for full setup.


🧪 Example

import { createPersona, postThought } from "proof-of-persona";

const persona = await createPersona({
  alias: "neo",
  publicKey: "0x...",
  behaviorModel: "socratic-punk",
  privateKey: "0x..."
});

await postThought(persona, {
  content: "The chain remembers.",
  topic: "philosophy"
});

See more in use-cases.md


🧱 Architecture

  • CLI interface (/cli)
  • Core logic (/core)
  • Local storage adapter (/storage)
  • Signature module (/signer)

Detailed breakdown in architecture.md


📚 Documentation


🧩 Roadmap Highlights

  • [x] Full local CLI
  • [x] Signature-based identities
  • [x] Import/export
  • [x] Memory system
  • [x] Modular core SDK
  • [ ] Forum framework (threads, replies)
  • [ ] IPFS/Arweave sync
  • [ ] Rust SDK (in progress)
  • [ ] LLM-style detection and signature scoring

💬 Philosophy

What if identity was built on thought?

What if reputation wasn't a number, but a narrative?

What if pseudonymity became a virtue?


🛠 Built By

badasya — open identity engineer

✨ Stay anonymous. Stay sovereign. Stay you.


🧠 persona — your programmable onchain mind.