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

@lgdd/d-scribe

v1.3.0

Published

AI-first CLI toolkit for assembling Datadog demo projects

Readme

Scaffolds pre-instrumented microservice architectures that AI coding agents then bring to life with domain-specific business logic, guided by instrumentation patterns and portable skills.

Quick Start

# Install skills for your AI coding agent
npx @lgdd/d-scribe install skills

Ask your AI coding agent to build a demo

"Build me a Datadog demo for an online shop selling dog food & toys"

Your agent scaffolds the project, generates domain-specific business logic, and walks you through running it — all guided by bundled patterns and skills.

What Gets Generated

A scaffolded project includes:

  • N minimal microservices (configurable via --services, default 4) — each compiles, starts, exposes /health, logs JSON, and is instrumented for APM, but has no business logic. AI generates domain-specific code guided by instrumentation patterns.
  • Instrumentation patterns in references/patterns/ — compact reference files (~30 lines each) for DBM (PostgreSQL, MySQL, MongoDB), Code Security, Profiling, SIEM, Data Streams (Kafka), LLM Observability (RAG), and inter-service calls
  • Design system (when a frontend is included) — src/theme.css with the Datadog palette (DaisyUI v5 + Tailwind v4) + patterns/design-system.md with component class reference and rebrand instructions for AI coding agents
  • Datadog Agent pre-configured for APM, Logs, and Infrastructure Monitoring
  • Traffic generator (Locust) with golden paths and failure scenarios
  • docker-compose.yml with all services wired together
  • AGENTS.md with project context, architecture, and pattern references for AI coding agents
  • Skills for domain customization, preflight checks, traffic generation, telemetry verification, and runbook generation

Available Backends

| Key | Framework | |-----|-----------| | java:spring | Java Spring Boot 3.4.x | | java:quarkus | Java Quarkus 3.17.x | | python:flask | Python Flask 3.x | | python:django | Python Django 5.1.x | | node:express | Node.js Express 5.x | | ruby:rails | Ruby on Rails 8.0.x | | php:laravel | PHP Laravel 12.x | | dotnet:aspnetcore | .NET ASP.NET Core 9.0 | | go:gin | Go Gin 1.10.x |

Available Frontends

| Key | Framework | |-----|-----------| | react:vite | React 18 (Vite) + DaisyUI v5 (Tailwind v4) | | angular:esbuild | Angular 19 (esbuild) + DaisyUI v5 (Tailwind v4) | | vue:vite | Vue 3 (Vite) + DaisyUI v5 (Tailwind v4) |

Available Features

| Key | Description | Requires | |-----|-------------|----------| | dbm:postgresql | Database Monitoring (PostgreSQL) | PostgreSQL | | dbm:mysql | Database Monitoring (MySQL) | MySQL | | dbm:mongodb | Database Monitoring (MongoDB) | MongoDB | | security:code | Code Security (IAST) | — | | security:sast | Static Analysis (SAST) | — | | security:app | App & API Protection | — | | security:workload | Workload Protection | — | | security:siem | Cloud SIEM | Keycloak | | apm:profiling | Continuous Profiling | — | | ai:llmobs | LLM Observability | PostgreSQL or MongoDB | | djm:spark | Data Jobs Monitoring (Spark) | Apache Spark | | djm:airflow | Data Jobs Monitoring (Airflow) | Apache Airflow | | dsm:kafka | Data Streams Monitoring (Kafka) | Apache Kafka |

Instrumentation Modes

| Mode | Description | Deploy targets | |------|-------------|----------------| | datadog (default) | Datadog SDK + Datadog Agent. All Datadog features supported. | Compose, K8s | | ddot | Datadog SDK + DDOT Collector. All Datadog features supported. | K8s only | | otel | OpenTelemetry SDK + OTel Collector (datadog exporter on Compose; DDOT on K8s). Feature compatibility is limited — run d-scribe list features --instrumentation otel to see what's available. | Compose, K8s |

Select a mode with --instrumentation:

npx @lgdd/d-scribe init demo \
  --backend node:express \
  --features ai:llmobs \
  --deploy compose \
  --instrumentation otel

Architecture

d-scribe is a monorepo with three components:

  • cli/ — TypeScript CLI that reads a manifest, resolves dependencies, copies service templates N times, and renders Handlebars templates. Deterministic — no LLM code generation.
  • catalog/ — Minimal service templates (service-template/), instrumentation patterns (patterns/), infrastructure configs, and a traffic generator.
  • skills/ — Portable AI agent workflows (agentskills.io format) for scaffolding, domain customization, validation, and runbook generation.

Commands

| Command | Description | |---------|-------------| | d-scribe init demo | Create a complete demo project | | d-scribe install skills | Install skills globally for Cursor and/or Claude Code | | d-scribe list backends | List available backend frameworks | | d-scribe list frontends | List available frontend frameworks | | d-scribe list features | List available Datadog features | | d-scribe list modes | List available instrumentation modes | | d-scribe list deps | List available infrastructure dependencies | | d-scribe add feature | Add a feature to existing project (coming soon) | | d-scribe add dep | Add a dependency to existing project (coming soon) |