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

fraude-code

v0.1.2

Published

FraudeCode - An AI coding agent powered by Graph + Vector memory

Readme

Installation

npm install -g fraude-code

What is FraudeCode?

FraudeCode is a simple AI coding agent that can help you with your coding tasks. It has 3 different modes:

  • Fast Mode: Fast mode is the default mode. It will conduct research, generate code, and then test it itself.
  • Planning Mode: Planning mode will create an implementation plan and tasks, using a research subagent to gather context. It will then use a worker subagent to generate code, and a reviewer subagent to review the code. This mode is recommended for larger tasks.
  • Ask Mode: Ask mode will use an agent to answer a question about a codebase without altering it.

Graph + Vector Powered Memory

FraudeCode uses a graph + vector powered memory system to dynamically retain knowledge about the codebase and its context across sessions. This feature uses Kuzu as the graph database and LanceDB as the vector database, to store all data locally in the .fraude directory.

The first time you start the app, it will automatically index the current directory and store the data in the graph database. In future runs, it will only index files that have been modified since the last run.

After you make a query and the agent has completed it, a subagent will analyze the conversation and store relevant information in the graph database to remember it for future queries.

You can also manually store data using the /remember <query> command. The Knowledge Graph can be wiped completely using the /forget command.

If you want to visualize the Knowledge Graph, you can use the /visualize command. It will open a new window showing you the graph.


Supported Providers

I went with anyone that had a free tier :|

(This is built on vercel AI SDK so its easy to add more providers)

  • Ollama
  • Mistral
  • Groq
  • OpenRouter
  • Cerebras
  • Google

Installation

Still in dev so just clone the repo and run bun run dev

Plugins

You can use plugins to extend the functionality of FraudeCode. Check out the plugins directory for more information.

I'll be building out some plugins with corresponding UIs for some more fun use cases.

Plugins are automatically loaded on startup from ~/.fraude/plugins (global) and ./.fraude/plugins (local). Each plugin folder must contain an index.ts file with a default export.