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

@vltrn/cut-lab

v1.0.0

Published

The Cut Lab — 10-specialist AI content editing department (CUTMASTER-V led)

Readme

@vltrn/cut-lab

The Cut Lab — 10-specialist AI content editing department, packaged as a standalone npm module.

Specialists

| Agent | Role | |-------|------| | CUTMASTER-V (Lead) | Editorial strategy, pacing, oversight | | HOOK-V | First 3 seconds, scrollback optimization | | BLADE-V | Clip assembly, B-roll, cut timing | | PIXEL-V | Thumbnail design, visual optimization | | MOTION-V | Kinetic typography, motion graphics | | SONIC-V | Sound design, SFX, audio engineering | | DEPLOY-V | Distribution, platform optimization | | FLUX-V | Transitions, speed ramps, effect chains | | TEMPO-V | Pacing, text sync, caption timing | | CHROMA-V | Color grading, LUTs, color psychology |

Install

npm install @vltrn/cut-lab
# or
bun add @vltrn/cut-lab

Requires Bun runtime (auto-installed via postinstall).

CLI Usage

# Pipeline management (standalone SQLite at ~/.cut-lab/cut-lab.db)
cut-lab pipeline list
cut-lab pipeline create "My TikTok Edit" --type tiktok
cut-lab pipeline advance <id>
cut-lab pipeline note <id> --stage draft --note "Hook needs more energy"

# Knowledge corpus (15 modules, 95 drills)
cut-lab lexicon list
cut-lab lexicon search "hook trinity"
cut-lab lexicon topic hooks
cut-lab drills

# Team info
cut-lab team
cut-lab roles

NEO Plugin Mode

import { CUT_LAB_TOOLS, initCutLabTools } from '@vltrn/cut-lab';

// Initialize with NEO vault backend
await initCutLabTools({ neo_vault: true });

// Register tools into NEO's registry
for (const tool of CUT_LAB_TOOLS) {
  toolRegistry.register(tool);
}
registerExtensionTools(CUT_LAB_TOOLS);

Programmatic API

import {
  detectsCutLab,        // Auto-routing detection (42 patterns)
  CUT_LAB_TEAM,         // Team metadata
  ROLES_DIR,            // Path to specialist YAMLs
  LEXICON_DIR,          // Path to knowledge corpus
  PipelineStore,        // Direct SQLite CRUD
  contentPipelineTool,  // Tool definition
  contentLexiconTool,   // Tool definition
} from '@vltrn/cut-lab';

// Detection
detectsCutLab("edit this video with speed ramps"); // true

// Direct store access
const item = PipelineStore.createContent("Hook Test", { content_type: 'tiktok' });
PipelineStore.advanceStage(item.id);

Knowledge Corpus

15 modules in lexicon/:

  • Editing Theory, Hook Mastery, Visual Storytelling
  • Sound Design, Thumbnail Optimization, Platform Specs
  • Tool Stack, Brand Consistency, Analytics & Iteration
  • Playbooks, Transitions & Effects, Unicorn Architecture
  • AI Force Multiplier, Kinetic Typography, Color Grading, Render QA

Plus: Training Curriculum, 4-tier Certification, 95 Drills (general + Flux/Tempo/Chroma/Render QA).

License

MIT