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/mind-core

v2.15.0

Published

Core contracts, errors, and utilities for KB Labs Mind

Readme

@kb-labs/mind-core

Core contracts, errors, and utilities for KB Labs Mind.

Vision & Purpose

@kb-labs/mind-core provides core contracts, errors, and utilities for KB Labs Mind. It includes error handling, token utilities, hash utilities, path utilities, and default configurations.

Core Goals

  • Error Handling: Unified error handling for Mind
  • Token Utilities: Token estimation and truncation utilities
  • Hash Utilities: Hashing utilities
  • Path Utilities: Path manipulation utilities
  • Defaults: Default configurations

Package Status

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

Architecture

High-Level Overview

Mind Core
    │
    ├──► Error Handling
    ├──► Token Utilities
    ├──► Hash Utilities
    ├──► Path Utilities
    └──► Defaults

Key Components

  1. Error (error/): Error handling
  2. Utils (utils/): Utilities (token, hash, paths)
  3. Defaults (defaults.ts): Default configurations

✨ Features

  • Error Handling: Unified error handling for Mind
  • Token Utilities: Token estimation and truncation utilities
  • Hash Utilities: Hashing utilities
  • Path Utilities: Path manipulation utilities
  • Defaults: Default configurations

📦 API Reference

Main Exports

Error Handling

  • MindError: Mind error class
  • createMindError: Create Mind error

Token Utilities

  • estimateTokens: Estimate tokens in text
  • truncateTokens: Truncate text by tokens

Hash Utilities

  • hashString: Hash string
  • hashFile: Hash file

Path Utilities

  • normalizePath: Normalize path
  • resolvePath: Resolve path

Defaults

  • DEFAULT_CONFIG: Default configuration

🔧 Configuration

Configuration Options

All configuration via function parameters.

🔗 Dependencies

Runtime Dependencies

  • @kb-labs/mind-types (link:../mind-types): Mind types

Development Dependencies

  • @kb-labs/devkit (link:../../../kb-labs-devkit): DevKit presets
  • @types/node (^24.7.0): Node.js types
  • tsup (^8.5.0): TypeScript bundler
  • typescript (^5.6.3): TypeScript compiler
  • vitest (^3.2.4): Test runner

🧪 Testing

Test Structure

No tests currently.

Test Coverage

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

📈 Performance

Performance Characteristics

  • Time Complexity: O(1) for utilities, O(n) for token estimation
  • Space Complexity: O(1)
  • Bottlenecks: Token estimation for large texts

🔒 Security

Security Considerations

  • Hash Utilities: Secure hashing utilities
  • Path Validation: Path validation for file operations

Known Vulnerabilities

  • None

🐛 Known Issues & Limitations

Known Issues

  • None currently

Limitations

  • Token Estimation: Basic token estimation

Future Improvements

  • Better Token Estimation: More accurate token estimation

🔄 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 Error Handling

import { createMindError } from '@kb-labs/mind-core';

const error = createMindError('MIND_PARSE_ERROR', 'Failed to parse file');

Example 2: Use Token Utilities

import { estimateTokens, truncateTokens } from '@kb-labs/mind-core';

const tokens = estimateTokens('Hello world');
const truncated = truncateTokens('Long text...', 100);

Example 3: Use Hash Utilities

import { hashString } from '@kb-labs/mind-core';

const hash = hashString('Hello world');

🤝 Contributing

See CONTRIBUTING.md for development guidelines.

📄 License

MIT © KB Labs