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

dflowcli

v1.0.4

Published

DevFlow Command Center CLI - Synchronized project execution control for AI-powered development

Downloads

18

Readme

dflowcli

DevFlow Command Center CLI - Synchronized project execution control for AI-powered development.

npm version License: MIT

Installation

npm install -g dflowcli

Quick Start

1. Initialize DevFlow in your project

cd your-project
devflow init

This will:

  • Connect to your DevFlow Command Center project
  • Generate a CLAUDE.md with MCP tool documentation
  • Set up the .devflow-context/ directory for context sync
  • Configure Claude Code MCP integration

2. Monitor execution in real-time

devflow status

Watch tasks as they're assigned, in-progress, and completed.

3. Sync project context

devflow sync

Exports all project context to local markdown files:

  • .devflow-context/ACTIVE.md - Current task details
  • .devflow-context/PROJECT.md - PRD, milestones, artifacts
  • .devflow-context/CLIENT.md - Client info, communications
  • .devflow-context/EXECUTION.md - All deliverables and tasks
  • .devflow-context/DECISIONS.md - Decision log
  • .devflow-context/ACTIVITY.md - Recent activity

Commands

| Command | Description | |---------|-------------| | devflow init | Initialize DevFlow in current project | | devflow status | Show current execution status | | devflow tasks | List all tasks and their status | | devflow sync | Sync project context to local files | | devflow watch | Watch for real-time execution updates | | devflow login | Authenticate with DevFlow | | devflow --help | Show all available commands |

Authentication

devflow login \
  --url https://devflow.now \
  --token YOUR_TOKEN \
  --actor-id YOUR_USER_ID \
  --actor-name "Your Name"

Task Management

# Start a task
devflow task start <taskId>

# Block a task
devflow task block <taskId> --reason "Waiting for API credentials"

# Complete a task
devflow task complete <taskId> --note "Feature implemented and tested"

# Add a note to a task
devflow task note <taskId> --type decision --content "Using PostgreSQL for JSON support"

# List task notes
devflow task notes <taskId>

Execution Monitoring

# View execution state
devflow exec status --project <PROJECT_ID>

# Watch real-time activity
devflow exec watch --project <PROJECT_ID>

Environment Variables

Set these in your project's .env file:

DEVFLOW_PROJECT_ID=your-project-uuid
DEVFLOW_API_URL=https://devflow.now/api

Claude Code Integration

After running devflow init, your CLAUDE.md will contain instructions for Claude Code to use the MCP server. Install the MCP server:

npm install -g dflowmcp

The init command auto-configures your Claude Code MCP settings.

MCP Tools Available

| Tool | Description | |------|-------------| | get_active_task | Get currently assigned task | | start_task | Start working on a task | | complete_task | Mark task as done | | block_task | Report a blocker | | log_progress | Log progress updates | | add_task_note | Add structured notes | | sync_project_context | Sync context to local files |

Configuration

The CLI stores configuration in ~/.devflow/config.json:

{
  "apiUrl": "https://devflow.now",
  "token": "eyJhbGciOi...",
  "actorId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "actorName": "Sarah"
}

Real-Time Synchronization

All changes are instantly visible across:

  • Web UI (devflow.now/command-center)
  • CLI (devflow watch)
  • AI Agents (via MCP server)

This enables seamless human-agent collaboration.

Links

License

MIT