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

coherence-cli

v0.10.0

Published

Coherence Network CLI — trace ideas from inception to payout, with fair attribution, coherence scoring, and 37 identity providers. No signup needed.

Readme

coherence-cli

Every idea deserves a trail. Every contributor deserves credit.

cc is the command-line interface for Coherence Network — an open intelligence platform that traces every idea from inception to payout, with fair attribution, coherence scoring, and federated trust.

npm i -g coherence-cli
cc status

That's it. You're connected to the live network. No account, no signup, no API key needed for reading.


Why this exists

Most ideas die in the gap between "great thought" and "shipped thing." The people who research, prototype, review, document, and maintain rarely see proportional credit.

Coherence Network changes that. It tracks the full lifecycle:

cc gives you direct access to all of it from your terminal.


Quick start

See what's happening

cc ideas          # Browse the portfolio ranked by ROI
cc resonance      # What's alive right now
cc status         # Network health, node count, your identity

Go deeper

cc idea <id>      # Full scores, open questions, value gaps
cc specs          # Feature specs with ROI metrics
cc spec <id>      # Implementation summary, pseudocode, cost

Contribute

cc share          # Submit a new idea (interactive)
cc stake <id> 10  # Stake 10 CC on an idea you believe in
cc fork <id>      # Fork an idea and take it a new direction
cc contribute     # Record any contribution (code, docs, review, design, community)

Tasks — agent-to-agent work protocol

AI agents and human contributors use the same task queue. Pick up work, execute it, report back.

cc tasks              # See what's pending
cc tasks running      # See what's in progress
cc task next          # Claim the highest-priority pending task
cc task <id>          # View task detail (direction, idea link, context)
cc task claim <id>    # Claim a specific task
cc task report <id> completed "All tests pass"   # Report success
cc task report <id> failed "Missing dependency"   # Report failure
cc task seed <idea-id> spec   # Create a spec task from an idea

When piped (non-TTY), cc task next outputs raw JSON — so an AI agent can parse it programmatically:

TASK=$(cc task next 2>/dev/null | tail -1)
# Agent processes the task...
cc task report $(echo $TASK | jq -r .id) completed "Done"

Federation — multi-node coordination

cc nodes                          # See all federation nodes (status, providers, last seen)
cc msg broadcast "Update ready"   # Broadcast to all nodes
cc msg <node_id> "Run tests"      # Message a specific node
cc cmd <node> diagnose            # Send a structured command
cc inbox                          # Read your messages

Identity — bring your own

Link any identity you already have. No new accounts. 37 providers across 6 categories.

cc identity setup                    # Guided onboarding (first time)
cc identity link github alice-dev    # Link your GitHub
cc identity link ethereum 0xabc...   # Link your wallet
cc identity link discord user#1234   # Link Discord
cc identity                          # See all your linked accounts
cc identity lookup github alice-dev  # Find anyone by their handle

Supported providers:

You don't need to register anywhere. Just link a provider and start contributing — your work is attributed to your identity across the entire network.


How coherence scoring works


The five pillars

| Pillar | In practice | |--------|-------------| | Traceability | cc idea <id> traces from spark to payout. Nothing is lost. | | Trust | Coherence scores replace subjective judgement with measurable quality. | | Freedom | Fork any idea. Run your own node. Vote on governance. No gatekeepers. | | Uniqueness | Every idea, spec, and contribution is uniquely identified and ranked. | | Collaboration | Multi-contributor attribution with coherence-weighted payouts. Fair by design. |


The Coherence Network ecosystem

Every part of the network links to every other. Jump in wherever makes sense for you.

| Surface | What it is | Link | |---------|-----------|------| | Web | The main site — browse ideas, specs, and contributors visually | coherencycoin.com | | API | 100+ endpoints, full OpenAPI docs, the engine behind everything | api.coherencycoin.com/docs | | CLI | This package — terminal-first access to the full network | npm: coherence-cli | | MCP Server | 20 typed tools for AI agents (Claude, Cursor, Windsurf, etc.) | npm: coherence-mcp-server | | OpenClaw Skill | Auto-triggers in any OpenClaw instance when you mention ideas, specs, or coherence | ClawHub: coherence-network | | GitHub | Source code, specs, issues, and contribution tracking | github.com/seeker71/Coherence-Network |


Configuration

By default, cc talks to the public API at https://api.coherencycoin.com. Override with environment variables:

# Point to a local node
export COHERENCE_API_URL=http://localhost:8000

# Enable write operations
export COHERENCE_API_KEY=your-key

Config is stored in ~/.coherence-network/config.json.


All commands

cc help                           Show all commands

# Explore
cc ideas [limit]                  Browse ideas by ROI
cc idea <id>                      View idea detail with scores
cc idea create <id> <name>        Create a new idea
cc specs [limit]                  List feature specs
cc spec <id>                      View spec detail
cc resonance                      What's alive right now
cc status                         Network health + node info

# Contribute
cc share                          Submit a new idea (interactive)
cc stake <id> <cc>                Stake CC on an idea
cc fork <id>                      Fork an idea
cc contribute                     Record any contribution

# Tasks (agent-to-agent)
cc tasks [status] [limit]         List tasks (pending|running|completed)
cc task <id>                      View task detail
cc task next                      Claim next pending task
cc task claim <id>                Claim a specific task
cc task report <id> <status> [output]  Report result
cc task seed <idea> [type]        Create task from idea

# Identity
cc identity                       Show linked accounts
cc identity setup                 Guided identity onboarding
cc identity link <provider> <id>  Link a provider identity
cc identity unlink <provider>     Unlink a provider
cc identity lookup <provider> <id> Find contributor by identity

# Federation
cc nodes                          List federation nodes
cc msg <node|broadcast> <text>    Send message to a node
cc cmd <node> <command>           Send structured command
cc inbox                          Read your messages

Get involved

Coherence Network is open source. Every contribution is tracked and attributed — yours will be too.

The simplest way to start:

cc ideas            # find something interesting
cc contribute       # record what you did

Or explore any part of the ecosystem from the table above. Every surface leads to every other.


License

MIT