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

@tekimax/tekimax-sdk

v0.1.4

Published

Proof of human vs. AI authorship with the Human-Adaptive Engine. AI that augments judgment while preserving agency and provenance.

Readme

@tekimax/tekimax-sdk

npm version Build Status License

Proof of human vs. AI authorship. Our Human-Adaptive Engine ensures AI augments your judgment while preserving agency, creativity, and verifiable provenance.

With cryptographic provenance, Human Agency Scores, and Human-in-the-Loop (HITL) workflows, you can prove who made decisions. Built for NIST AI RMF compliance from the ground up.


📦 Installation

Install the package via npm, pnpm, or yarn:

npm install @tekimax/tekimax-sdk
pnpm add @tekimax/tekimax-sdk
yarn add @tekimax/tekimax-sdk

🚀 Quick Start

Initialize the client with your API key and base URL.

import { client, getMetricsDashboard } from '@tekimax/tekimax-sdk';

// 1. Configure the Client
client.setConfig({
  baseUrl: 'https://api.tekimax.com', 
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY'
  }
});

// 2. Use SDK Methods
async function fetchDashboard() {
  try {
    const { data, error } = await getMetricsDashboard();
    
    if (error) {
      console.error('Error fetching dashboard:', error);
      return;
    }

    console.log('Dashboard Data:', data);
  } catch (err) {
    console.error('Unexpected error:', err);
  }
}

fetchDashboard();

✨ Features

  • Fully Typed: Built with TypeScript for best-in-class developer experience.
  • Adaptive: Automatically generated from the latest TEKIMAX OpenAPI specification.
  • Lightweight: Minimal dependencies, optimized for browser and server environments.
  • Secure: Internal and sensitive endpoints are stripped from the public SDK.

🗺️ SDK Roadmap

We are continuously improving the TEKIMAX SDK. Here are the top 5 upcoming features:

  1. Isomorphic Support: Enhanced compatibility for Edge Runtimes (Cloudflare Workers, Vercel Edge).
  2. Automatic Retries: Built-in exponential backoff for transient network errors.
  3. Middleware Hooks: Support for request/response interceptors for logging and monitoring.
  4. Streaming Support: Native handling of Server-Sent Events (SSE) for real-time telemetry.
  5. Zod Schema Exports: Optional export of Zod schemas for runtime validation of SDK types.

📄 License

This project is licensed under the MIT License.