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

cognetivy

v0.1.34

Published

Reasoning orchestration state: workflow structure, run logs, and versioned mutations

Readme

Cognetivy

npm version License: MIT

Cognetivy is an open-source state layer for AI-assistants like Claude Code, Cursor, OpenClaw, etc. It helps you define workflows, track runs and events, and store structured collections in a local .cognetivy/ workspace. No LLMs inside - just the data and tools your editor's agent uses via Skills and MCP. Works with Claude Code, Cursor, OpenClaw, and other Skills and MCP-compatible clients.

Project status: Actively maintained. We welcome issues and pull requests.

Requirements

  • Node.js ≥ 18
  • A project directory (or an empty folder) to create a workspace in
  • A coding agent (Claude Code, Cursor, OpenClaw, etc.) working on that directory

Install

Run once with npx (no global install):

npx cognetivy

Or install globally for use from any directory and for MCP:

npm install -g cognetivy

Step-by-step

Step 1 - Run cognetivy

Open a terminal in your project folder (or an empty folder) and run:

npx cognetivy

An installer will open in the terminal:


Step 2 - Use the installer

  1. In the installer, choose your coding agent (Claude Code, Cursor, OpenClaw, etc.)
  2. Cognetivy will create a .cognetivy/ workspace in the current folder.
  3. Cognetivy will install its skills into the workspace.

Step 3 - Studio opens

When the installer finishes, Cognetivy Studio opens in your browser.

  • You’ll see the read-only UI: workflow, runs, and collections.

Step 4 - Ask your agent to create a workflow and run it

In another chat window, ask your agent to create a workflow and run it.

  • "Create a workflow with three nodes: one that gathers requirements, one that writes a plan, and one that writes a summary. Save it as the current workflow."
  • "Start a run for the current workflow with input with the topic 'user onboarding'."

Connect your agent (MCP)

Cognetivy works best with agent skills, but you can connect via MCP so cognetivy tools appear in chat.

Cursor

  1. Open SettingsTools & MCP (or FeaturesMCP).
  2. Click Add new MCP server.
  3. Set Name to cognetivy.
  4. Set Command to cognetivy (or the full path if not on PATH).
  5. Set Arguments to mcp. If your project root is not the folder that contains .cognetivy/, add --workspace and the path to that folder (e.g. --workspace ./example-usage).
  6. Save and restart Cursor.

Cognetivy tools (workflow, run, event, collection, node, etc.) will then be available in chat.

Optional - config file: You can instead add the server to ~/.cursor/mcp.json (or your project’s .cursor/mcp.json):

{
  "mcpServers": {
    "cognetivy": {
      "command": "cognetivy",
      "args": ["mcp"]
    }
  }
}

Use "args": ["mcp", "--workspace", "/path/to/folder/with/.cognetivy"] if the workspace is not your current project root.

Commands

| Command | Description | |--------|-------------| | npx cognetivy | Run installer and open Studio (first time) or open Studio | | cognetivy workflow get | Print current workflow | | cognetivy run start --input <file> | Start a run | | cognetivy studio | Open Studio in the browser | | cognetivy mcp | Start MCP server (for your editor) | | cognetivy install cursor | Install skills into Cursor (claude, agents, gemini, qwen, factory, opencode, openclaw, workspace also supported) |


Community


License

MIT