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

@aiworkforce/sdk

v1.0.1

Published

Public Professional Package contracts for AI Workforce

Readme

@aiworkforce/sdk

Public Professional Package contracts for AI Workforce.

Installation

npm install @aiworkforce/sdk

Import

This package is ESM-only. Prefer named imports:

import {
    IProfession,
    ProfessionalPackage,
    PROFESSIONAL_PACKAGE_SDK_VERSION,
} from "@aiworkforce/sdk";

Purpose

@aiworkforce/sdk is the public contract surface for Professional Package authors. It defines the shared types and domain classes hosts and packages use together.

Boundary

This package does not include:

  • the Professional Engine;
  • loaders or Direct Load machinery;
  • registries;
  • installers or installation catalogs;
  • Work persistence (Work store);
  • authorize / reject APIs;
  • Work execution;
  • a Host SDK, Host framework, or Host npm package.

Authors complete judgment and packaging against this SDK. Host composition, Work persistence, and human authorize/reject mediation remain outside this package.

Created != installed
Direct Load != installation
Proposed != Authorized
Authorized != executed

Public author journey

  1. Scaffold with @aiworkforce/create-profession.
  2. Implement IProfession judgment and export named professionalPackage.
  3. npm test, npm run build, npm run demo.
  4. npm pack (or publish your package when ready).
  5. A consumer may import your package module and read professionalPackage.

After step 5 you have not installed into a Host, registered in a platform registry, authorized Work, or executed Work.

Host boundary (honest next step)

There is no public Host npm package today (@aiworkforce/host, @aiworkforce/engine, and similar names do not exist on the public registry).

When an adopting application (a Host) exists, it typically:

  • resolves and loads your module;
  • constructs your profession;
  • coordinates thinking and optional proposals;
  • persists Proposed Work;
  • mediates an actual human authorize or reject decision.

Those responsibilities are not provided by @aiworkforce/sdk. Loading a module is not installation. Proposing Work is not authorization. Authorization is not execution.

If you are building a Host inside the AI Workforce repository, see the repository docs/HostInhabitationGuide.md when you have repository access. If you do not have repository access, treat Host composition as application-owned integration against the contracts in this SDK until a separately published Host surface exists.

More detail ships with this package: ADOPTION.md.

Documentation

Repository guides (Author Guide, Host Inhabitation Guide, Current Architecture) require access to the AI Workforce repository. Do not assume anonymous GitHub URLs resolve.

AI advises. The professional decides.