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

devmind-ai

v1.0.4

Published

🧠 AI-powered CLI assistant that generates project ideas, scaffolds structures, writes READMEs, suggests tech stacks, explains errors, and builds full starter projects β€” for any domain.

Readme

🧠 DevMind AI

AI-Powered CLI Assistant for Developers

npm version License: MIT Node.js

Generate project ideas β€’ Scaffold structures β€’ Get tech stacks β€’ Fix errors β€’ Build full starter apps


πŸš€ Quick Start

npx devmind-ai
# or install globally:
npm install -g devmind-ai
devmind --help

✨ Commands

| Command | Description | |---------|-------------| | devmind idea <domain> | πŸ’‘ Generate project ideas | | devmind scaffold <stack> | πŸ“ Create project folder structure | | devmind stack <project> | πŸ› οΈ Get tech stack recommendations | | devmind fix "<error>" | πŸ”§ Explain and fix any error | | devmind roadmap <project> | πŸ—ΊοΈ Generate a development roadmap | | devmind build <project> | ⚑ Build a full starter project | | devmind readme | πŸ“ Generate a professional README | | devmind scan [path] | πŸ” Security scan for vulnerabilities | | devmind chat | πŸ’¬ Interactive AI coding assistant | | devmind config | βš™οΈ Configure API key and settings |


πŸ“Έ Usage Examples

πŸ’‘ Generate Ideas

devmind idea "cybersecurity"

Output β†’ 5 detailed project ideas with features, difficulty, and estimated time

πŸ“ Scaffold a Project

devmind scaffold "node api"
# Creates: src/, routes/, controllers/, models/, tests/, package.json, .env.example

πŸ› οΈ Tech Stack

devmind stack "AI chatbot"
# Outputs a table: Frontend | Backend | Database | Auth | Deployment | ...

πŸ”§ Fix Errors

devmind fix "TypeError: Cannot read properties of undefined"
# Output: Root cause, 3+ common causes, working code fix, prevention tip

⚑ Build Full Project (Killer Feature)

devmind build "password manager"
# Creates full project with starter code, README, package.json, .gitignore

πŸ” Security Scan

devmind scan ./my-project
# Checks for: hardcoded secrets, SQL injection, eval(), weak random, HTTP URLs...

βš™οΈ Configuration (Unlock AI)

This tool works in demo mode out of the box with smart static responses.

To unlock live AI capabilities (OpenAI GPT):

devmind config --set-key sk-your-openai-key-here

Get your API key at platform.openai.com/api-keys.

# Change model (default: gpt-4o-mini)
devmind config --set-model gpt-4o

# Show current configuration
devmind config --show

πŸ” Security Scanner Rules

| Rule | Severity | What it Detects | |------|----------|-----------------| | S001 | 🚨 CRITICAL | Hardcoded API keys | | S002 | 🚨 CRITICAL | Hardcoded passwords | | S003 | ⚠️ HIGH | Hardcoded secrets/tokens | | S004 | ⚠️ HIGH | Dangerous eval() usage | | S005 | πŸ’› MEDIUM | console.log in production | | S006 | ⚠️ HIGH | SQL injection via template literals | | S007 | πŸ’› MEDIUM | HTTP instead of HTTPS | | S008 | ⚠️ HIGH | Weak Math.random() for security | | S009 | πŸ’› MEDIUM | TLS verification disabled | | S010 | ℹ️ LOW | Unresolved TODO/FIXME |


πŸ“ Project Structure

devmind-ai/
β”œβ”€β”€ bin/
β”‚   └── devmind.js           # CLI entry point
β”œβ”€β”€ commands/
β”‚   β”œβ”€β”€ idea.js              # Project idea generator
β”‚   β”œβ”€β”€ scaffold.js          # Project scaffolder
β”‚   β”œβ”€β”€ readme.js            # README generator
β”‚   β”œβ”€β”€ stack.js             # Tech stack advisor
β”‚   β”œβ”€β”€ fix.js               # Error explainer
β”‚   β”œβ”€β”€ roadmap.js           # Project roadmap
β”‚   β”œβ”€β”€ build.js             # Full project builder
β”‚   β”œβ”€β”€ scan.js              # Security scanner
β”‚   β”œβ”€β”€ chat.js              # Interactive chat
β”‚   └── config.js            # Configuration manager
β”œβ”€β”€ utils/
β”‚   β”œβ”€β”€ ai.js                # OpenAI API + mock responses
β”‚   β”œβ”€β”€ config.js            # Config persistence
β”‚   └── ui.js                # Shared terminal UI helpers
└── package.json

πŸ† Why DevMind AI?

  • Works offline β€” demo mode with intelligent responses, no API key required
  • 10 commands covering the full developer workflow
  • Security-focused β€” built-in vulnerability scanner (great for cybersecurity students!)
  • Resume-worthy β€” mentionable as a published npm package
  • Extensible β€” clean command architecture makes it easy to add new commands

🀝 Contributing

  1. Fork the repo
  2. Create your branch: git checkout -b feature/new-command
  3. Commit: git commit -m 'feat: add new command'
  4. Push & open a PR

πŸ“„ License

MIT Β© Your Name


Built with ❀️ by a cybersecurity student. Published to npm.