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

devfluo

v0.4.0

Published

A Model Context Protocol server for development workflow assistance

Readme

Devfluo

A sophisticated Model Context Protocol (MCP) server that provides comprehensive development workflow management with a multi-level knowledge base system. This server enables AI assistants to manage project initiatives, track decisions, maintain code patterns, and provide structured development guidance through persistent knowledge storage.

Purpose

Devfluo is designed to maintain consistency and continuity across development sessions by providing:

  • Multi-level Memory System: Persistent storage of project knowledge, decisions, patterns, and solutions
  • Initiative Management: Structured approach to managing development projects with tasks, specifications, and progress tracking
  • Knowledge Base: Centralized repository for architecture documentation, codebase understanding, and development patterns
  • AI-Driven Prompts (commands): Specialized prompts for different phases of development workflow
  • Structured Development: Enforces consistent practices through schemas and validation

Architecture

The server implements a comprehensive knowledge management system with several key components:

Knowledge Layers

  • Base Knowledge: Core project architecture and codebase documentation
  • Initiatives: Individual development projects with specifications, tasks, and progress tracking
  • Decisions: Architecture and design decisions with rationale and context
  • Patterns: Reusable code patterns and best practices
  • Solutions: Problem-solution pairs for common development challenges
  • Backlog: Prioritized list of future development items

Installation

Prerequisites

  • Node.js ≥22.0.0
  • npm or equivalent package manager

Installation

Global Installation (Recommended)

npm install -g devfluo

Using npx (No Installation Required)

npx devfluo

Local Development Setup

For contributing or local development:

git clone https://github.com/your-username/devfluo.git
cd devfluo
npm install
npm run build
npm run start

Usage

For detailed usage instructions, MCP client integration, workflow examples, and configuration details, see the Workflow Guide.

Quick Start

  1. Install the package globally:

    npm install -g devfluo
  2. Configure your MCP client (Claude Desktop, Continue, etc.) to use this server:

    {
      "mcpServers": {
        "devfluo": {
          "command": "devfluo",
          "env": {
            "PROJECT_ROOT": "/path/to/your/project/knowledge-base"
          }
        }
      }
    }
  3. Initialize your project using the project_init tool in your MCP client

  4. Start managing your development workflow with initiatives, tasks, and knowledge tracking

Development

Available Scripts

  • npm run build - Build TypeScript to JavaScript
  • npm run dev - Build and run in development mode
  • npm run inspector - Run with MCP inspector for debugging
  • npm run typecheck - Run TypeScript type checking
  • npm run lint - Check code style with Biome

Code Style

  • Tab indentation, ESM modules, Zod validation, functional programming patterns

Contributing

Follow existing code patterns, add tests for new features, update documentation, and ensure TypeScript compliance. See development section for specific guidelines.

License

MIT License - see LICENSE file for details.