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

@schnick371/devsteps-cli

v0.8.5

Published

Never Code Alone. CLI for AI-assisted developer task tracking.

Downloads

2,680

Readme

@schnick371/devsteps-cli

Never Code Alone. Command-line interface for AI-assisted developer task tracking.

Overview

DevSteps CLI provides terminal commands for managing work items, tracking traceability, and organizing agile/waterfall projects.

Installation

npm install -g @schnick371/devsteps-cli

Quick Start

# Initialize a new project
devsteps init my-project --methodology scrum

# Add work items
devsteps add epic --title "User Authentication"
devsteps add story --title "Login Form" --parent EPIC-001
devsteps add task --title "API Integration" --parent STORY-001

# List items
devsteps list --type task --status in-progress
devsteps list --priority critical

# Update status
devsteps update TASK-001 --status done

# Search
devsteps search "authentication"

# Show project status
devsteps status

# Export project
devsteps export --format markdown --output project.md

Commands

Project Management

  • devsteps init <name> - Initialize new DevSteps project
  • devsteps status - Show project statistics
  • devsteps context - Generate AI context (quick/standard/deep)

Work Items

  • devsteps add <type> - Create new work item (epic/story/task/bug/etc.)
  • devsteps get <id> - Show work item details
  • devsteps update <id> - Update work item properties
  • devsteps list - List work items with filters

Search & Filter

  • devsteps search <query> - Full-text search
  • devsteps list --status <status> - Filter by status
  • devsteps list --priority <priority> - Filter by priority
  • devsteps list --type <type> - Filter by type

Traceability

  • devsteps link <source> <target> - Create relationship
  • devsteps trace <id> - Show traceability tree

Maintenance

  • devsteps archive <id> - Archive single item
  • devsteps purge - Bulk archive done/cancelled items
  • devsteps doctor - Check project health
  • devsteps export - Export to Markdown/JSON/HTML

Methodologies

DevSteps supports three development methodologies:

Scrum

  • Epic → Story → Task
  • Bugs/Tests implement Epic or relate to Story
  • Sprint-based iteration

Waterfall

  • Requirement → Feature → Task
  • Bugs/Tests implement Requirement or relate to Feature
  • Phase-based progression

Hybrid

  • Both Scrum and Waterfall hierarchies
  • Flexible team workflows

Examples

Scrum Workflow

devsteps init my-app --methodology scrum
devsteps add epic --title "User Management"
devsteps add story --title "User Registration" --parent EPIC-001
devsteps add task --title "Create API Endpoint" --parent STORY-001
devsteps link STORY-001 tested-by TEST-001

Waterfall Workflow

devsteps init enterprise-sys --methodology waterfall
devsteps add requirement --title "Authentication System"
devsteps add feature --title "SSO Integration" --parent REQ-001
devsteps add task --title "Configure SAML" --parent FEAT-001

Integration

VS Code Extension

Install DevSteps VS Code Extension for visual project management.

AI Integration

Use with MCP-compatible AI assistants (Claude, GitHub Copilot) for AI-assisted development.

Documentation

License

Apache-2.0 © Thomas Hertel