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 🙏

© 2025 – Pkg Stats / Ryan Hefner

drop-agent-basics

v1.0.4

Published

CLI tool to create Drop Agent projects with zero setup

Downloads

16

Readme

drop-agent-basics

CLI tool to create Drop Agent projects with zero setup. Install globally and create AI reasoning agents in seconds.

Installation

npm install -g drop-agent-basics

Usage

# Create a new Drop Agent app
create-drop-agent my-ai-app

# Or use the alternative command
drop-agent-create my-ai-app

# Or run without a name (will prompt)
create-drop-agent

What You Get

The CLI creates a complete Drop Agent project with:

  • Drop Agent server with calculator, weather, and time tools
  • React chat interface with extended thinking visualization
  • All dependencies installed automatically
  • Zero manual setup - ready to run immediately

Example

$ create-drop-agent my-bot
🚀 Creating Drop Agent app...
📂 Creating project: my-bot
📦 Initializing npm project...
⬇️  Installing dependencies...
📁 Creating project structure...
⚙️  Creating configuration files...

🔑 API Key Setup
Enter your Anthropic API key: sk-ant-...

✅ Drop Agent app created successfully!

🎯 Ready to run:
   1. cd my-bot
   2. npm run dev
   3. Open http://localhost:3000

🚀 Zero manual coding required - just run and use!

$ cd my-bot
$ npm run dev

Features Included

Backend

  • Express server with Drop Agent integration
  • Calculator tool for math operations
  • Weather tool (simulated data)
  • Time tool for current date/time
  • SSE streaming for real-time responses

Frontend

  • React app with ChatInterface component
  • Real-time thinking process visualization
  • Tool usage display with highlighting
  • Professional chat UI
  • Responsive design

Development

  • Vite for fast React development
  • Concurrently to run both server and client
  • Hot reloading for both frontend and backend
  • Complete TypeScript support ready

Commands Available

After creation, your project has these scripts:

npm run dev     # Start both server and client
npm run server  # Start only the server
npm run client  # Start only the React app
npm run build   # Build for production

Test Messages

Try these with your new Drop Agent:

  • "What's 25 × 17?"
  • "What's the weather in Tokyo?"
  • "What time is it?"
  • "Help me think through whether I should learn Python or JavaScript"

Requirements

  • Node.js 18+
  • npm 8+
  • Anthropic API key

What's Created

my-ai-app/
├── server.js           # Express + Drop Agent (ready to run)
├── src/
│   ├── App.jsx        # React + ChatInterface (ready to run)
│   └── main.jsx       # React entry point
├── package.json       # All dependencies included
├── vite.config.js     # React build configuration
├── index.html         # HTML template with styles
├── .env              # API key (if provided)
├── .gitignore        # Git ignore rules
└── README.md         # Usage instructions

Zero Configuration

Unlike other tools that require manual setup:

  • Other tools: Create boilerplate, then spend hours configuring
  • drop-agent-basics: Creates complete, working AI agent in seconds

From Zero to AI Agent

# 1. Install CLI globally
npm install -g drop-agent-basics

# 2. Create project
create-drop-agent my-agent

# 3. Run project
cd my-agent && npm run dev

# 4. Chat with AI at localhost:3000

Total time: Under 2 minutes to working AI reasoning agent!

Support

  • GitHub: https://github.com/rockymedure/drop-agent
  • Issues: https://github.com/rockymedure/drop-agent/issues
  • Core Package: https://www.npmjs.com/package/drop-agent

License

MIT