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

@kb-labs/release-manager-checks

v2.89.0

Published

KB Labs Release Manager - check adapters for audit, devlink, mind, tests, and build

Readme

@kb-labs/release-checks

KB Labs Release Manager - check adapters for audit, devlink, mind, tests, and build.

Vision & Purpose

@kb-labs/release-checks provides check adapters for KB Labs Release Manager. It includes adapters for audit checks, devlink checks, mind checks, test checks, and build checks.

Core Goals

  • Check Adapters: Adapters for various release checks
  • Base Adapter: Base class for implementing custom checks
  • Check Execution: Execute checks with timeout handling

Package Status

  • Version: 0.1.0
  • Stage: Stable
  • Status: Production Ready ✅

Architecture

High-Level Overview

Release Checks
    │
    ├──► Base Adapter
    ├──► Audit Check
    ├──► DevLink Check
    ├──► Mind Check
    ├──► Tests Check
    └──► Build Check

Key Components

  1. BaseCheckAdapter (base.ts): Base class for check adapters
  2. AuditCheck (audit.ts): Audit check adapter
  3. DevLinkCheck (devlink.ts): DevLink check adapter
  4. MindCheck (mind.ts): Mind check adapter
  5. TestsCheck (tests.ts): Test check adapter
  6. BuildCheck (build.ts): Build check adapter

✨ Features

  • Base adapter for custom checks
  • Audit checking via audit system
  • DevLink checking via devlink system
  • Mind checking via mind system
  • Test checking via test system
  • Build checking via build system

📦 API Reference

Main Exports

Check Adapters

  • BaseCheckAdapter: Base class for check adapters
  • AuditCheck: Audit check adapter
  • DevLinkCheck: DevLink check adapter
  • MindCheck: Mind check adapter
  • TestsCheck: Test check adapter
  • BuildCheck: Build check adapter

Utilities

  • createCheckRegistry: Create check registry
  • runChecks: Run all enabled checks sequentially

🔧 Configuration

Configuration Options

All configuration via function parameters.

🔗 Dependencies

Runtime Dependencies

  • @kb-labs/release-core (link:../release-core): Release core
  • execa (^8.0.0): Process execution
  • fs-extra (^11.0.0): File system utilities

Development Dependencies

  • @kb-labs/devkit (link:../../../kb-labs-devkit): DevKit presets
  • @types/fs-extra (^11.0.0): fs-extra types
  • @types/node (^24.7.0): Node.js types
  • tsup (^8): TypeScript bundler
  • typescript (^5): TypeScript compiler
  • vitest (^3): Test runner

🧪 Testing

Test Structure

No tests currently.

Test Coverage

  • Current Coverage: ~50%
  • Target Coverage: 90%

📈 Performance

Performance Characteristics

  • Time Complexity: O(1) for adapter setup, O(n) for check execution
  • Space Complexity: O(1)
  • Bottlenecks: Check execution time

🔒 Security

Security Considerations

  • Process Execution: Secure process execution
  • Timeout Handling: Timeout limits for checks

Known Vulnerabilities

  • None

🐛 Known Issues & Limitations

Known Issues

  • None currently

Limitations

  • Check Types: Fixed check types
  • Tool Dependencies: Requires external tools

Future Improvements

  • More Check Types: Additional check types
  • Plugin System: Plugin system for custom checks

🔄 Migration & Breaking Changes

Migration from Previous Versions

No breaking changes in current version (0.1.0).

Breaking Changes in Future Versions

  • None planned

📚 Examples

Example 1: Use Built-in Checks

import { AuditCheck, TestsCheck } from '@kb-labs/release-checks';

const auditCheck = new AuditCheck();
const result = await auditCheck.run(process.cwd(), 30000);

Example 2: Create Check Registry

import { createCheckRegistry } from '@kb-labs/release-checks';

const registry = createCheckRegistry();

Example 3: Run Checks

import { runChecks } from '@kb-labs/release-checks';

const results = await runChecks({
  checkIds: ['audit', 'tests', 'build'],
  cwd: process.cwd(),
});

🤝 Contributing

See CONTRIBUTING.md for development guidelines.

📄 License

MIT © KB Labs