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

@diseec/kit

v3.0.95

Published

A collection of reusable DevOps tools, CLI scripts, Dockerfiles, CI/CD templates, and configuration files to streamline development and deployment workflows across DISEEC projects. Ideal for standardizing project setup and automating common DevOps tasks.

Readme

DISEEC DevOps Kit

Enterprise-grade DevOps automation toolkit for modern development workflows

Version License Internal Use

Overview

The DISEEC DevOps Kit is a comprehensive automation toolkit designed to standardize and streamline development workflows across projects. It provides a unified cli_main interface, container orchestration, secrets management, and project lifecycle automation for teams building modern applications.

Key Features

  • Unified cli_main Interface - Single command interface for all development operations
  • Container Orchestration - Docker and Docker Compose automation
  • Secure Secrets Management - AES-256 encrypted secrets with automatic key generation
  • Git Workflow Automation - AI-powered commit messages and PR management
  • Package & Service Management - Automated submodule and dependency management
  • Workspace Configuration - Personalized development environment setup
  • Testing Automation - Health checks, unit, integration, and E2E testing
  • Infrastructure as Code - Standardized project templates and configurations

Quick Start

Installation

# Install globally
npm install -g @diseec/kit

# Install in project
npm install @diseec/kit --save-dev

# Initialize project (copies templates including customizable cli)
D install

Required Project Files

Before using the kit, create these required Docker files:

  1. Dockerfile - Production-ready container configuration
  2. docker-compose.yaml - Production services configuration
  3. docker-compose.override.yaml - Development environment overrides

Project Structure

The D install command creates a project cli file that:

  • Makes the directory a recognized project (like .git for git)
  • Allows full customization of kit behavior
  • Can override, add, or remove functionalities
  • Use $CLI_CORE to call original commands
  • Use $CLI_MAIN to call the project cli itself
# Example project cli customization
install() {
    echo "Installing project dependencies..."
    npm install
    $CLI_CORE install  # Call original install command
}

Basic Usage

# Start development environment
D dev

# Get a shell in project main service
D shell

# Build and deploy
D build

# Get help for any command
D help
D git help
D secret help

Documentation

Core Guides

| Guide | Description | | ------------------------------------------- | ------------------------------------------------------ | | Installation Guide | Detailed setup instructions for different environments | | Development Workflow | Day-to-day development operations |

Feature Documentation

| Feature | Documentation | | ------------------------------------------ | --------------------------------------------- | ------------------------------------------- | --- | | Git Workflows | AI-powered git automation and PR management | | |

Project Structure

kit/
├── src/                    # Core cli_main implementation
│   ├── cli.sh             # Main cli_main entry point
│   ├── core/              # Core utilities (env, output, wrappers)
│   ├── cmds/              # Command implementations
│   ├── facades/           # High-level API facades
│   └── informs/           # Information and validation scripts
├── templates/             # Project templates and scaffolding
├── docs/                  # Comprehensive documentation
├── legacy/               # Legacy scripts (deprecated)
└── index.sh              # Kit initialization script

Command Categories

Project Management

  • ins|install - Install dependencies and setup tools
  • ude|update - Update cli_main and sync project
  • sta|status - Show comprehensive project status

Development Environment

  • dev|develop - Start development environment
  • bpa|build - Build project images
  • run - Execute commands in main container
  • exe|execute - Execute commands in specific container
  • she|shell - Open a shell in main service
  • tes|test - Run test suites
  • for|format - Format codebase

Source Control

  • git - Git workflow management
  • pul|pull - Pull and merge latest changes
  • pus|push - Auto-commit and create PR

Infrastructure

  • doc|docker - Docker operations
  • ser|service - Service management
  • pac|package - Package management
  • wor|workspace - Workspace configuration

Configuration & Security

  • con|config - Configuration management
  • sec|secret - Encrypted secrets management
  • env|envs - Environment variables (Usage: source D envs)

Examples

Development Workflow

# Setup new project
D install project
D workspace init

# Daily development
D dev                    # Start development environment
D test health           # Quick health check
D format                # Format code

# Git workflow with AI
D git status            # Check PR status
D git push              # Auto-commit with AI message and create PR

Secrets Management

# Initialize secrets (first time)
D secret init

# Add secrets interactively
D secret add
# Enter: OPENAI_API_KEY
# Value: sk-your-key-here

# Export to environment
source <(D secret get-all)

# Use in development
D git push              # Uses OPENAI_API_KEY for AI commits

Container Operations

# Container lifecycle
D docker compose up    # Start services
D shell                           # Interactive shell
D run npm test                    # Execute commands
D docker compose down            # Stop services

Requirements

  • Docker - Container orchestration
  • Git - Version control
  • Bash 4.0+ - Shell compatibility
  • Node.js 16+ - For npm global installation

Optional Dependencies

  • GitHub cli_main (gh) - Enhanced git workflow features
  • yq - Advanced YAML configuration management
  • OpenAI API Key - AI-powered git commit messages

Contributing

This is an internal DISEEC tool. For contributions:

  1. Follow the Style Guide
  2. Add tests for new features
  3. Update documentation
  4. Submit internal PR for review

Security

  • All secrets encrypted with AES-256-CBC
  • Auto-generated encryption keys
  • No plaintext credential storage
  • Internal use only - do not distribute

License

MIT License - Internal DISEEC use only. See LICENSE for details.

Support

  • Documentation: Check the docs/ directory
  • Issues: GitHub Issues
  • Team: Contact DISEEC DevOps team

DISEEC Engineering