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

@gobing-ai/knowledge-kit

v0.0.23

Published

An ingest → create → publish content pipeline CLI (Bun).

Downloads

1,553

Readme

@gobing-ai/knowledge-kit

Ingest → Create → Publish — a content pipeline CLI. knowledge-kit turns documents (or just a topic brief) into finished, published content across multiple channels.

The name is historical. knowledge-kit is not only a knowledge-management tool: content creation and multi-channel publishing are first-class, co-equal capabilities, and ingestion is optional — a pipeline may start from a Brief (topic → article) with no ingested documents.

The binary installs as both kk and knowledge-kit. Pipelines are expressed as plugins (ingestion / generator / publish) wired together by spur workflows — kk owns each step, spur owns the orchestration.

Install

bun add -g @gobing-ai/knowledge-kit

Requires Bun ≥ 1.3.14.

Optional: install the kk agent plugin collection

The npm tarball ships the kk plugin collection (skills, commands, agents, hooks, rules) for coding agents. Install it globally via superskill:

bun add -g @gobing-ai/superskill
superskill install kk --marketplace gobing-ai/knowledge-kit

The repo is private, so superskill needs a GitHub token in the environment (GITHUB_TOKEN or GH_TOKEN). It caches under ~/.cache/superskill/marketplaces (a warm cache works offline).

Commands

| Command | What it does | | --------------------------------------------------- | ----------------------------------------------------------------------------------- | | kk executor run <plugin> --in <path> --out <path> | Invoke a plugin with input/output files and contract validation | | kk executor fan-in | Merge N Doc[] JSON inputs into one deduplicated Doc[] output | | kk executor fan-out | Publish one Content JSON to N targets, aggregating per-target results | | kk plugin status | List discovered plugins grouped by kind with per-plugin health (--kind, --json) | | kk -v, --verbose | Enable verbose diagnostics | | kk --help / kk <command> --help | Full flag reference |

Hidden one-release aliases (invoke, fanin, fanout, plugins list, plugins doctor) still work but are not listed in kk --help.

The plugin model

Plugins are directories with a plugin.json manifest, discovered by a registry scan across built-in, user, project, and KK_PLUGIN_PATH roots. Three kinds:

| Kind | Contract | Shipped examples | | ----------- | -------------------------- | ---------------------------------------------------------------- | | ingestion | source → Doc[] | karakeep-local, web-search, last30days-ingest | | generator | Doc[] \| Brief → Content | content-gen (owned STORM pipeline), voice-gen (Voicebox TTS) | | publish | Content → Result | surfdash-pub, zenn-pub, qiita-pub |

Core contracts (Doc, Brief, Content, Result) and per-kind validation live in @gobing-ai/kk-core. LLM-as-judge is not a plugin kind — quality gating is delivered as agent skills + agent.run in the kk plugin collection.

Documentation

Source repo: gobing-ai/knowledge-kit — architecture decisions (docs/00_ADR.md), command surface (docs/04_DESIGN.md), feature status (docs/05_FEATURES.md), and per-kind plugin authoring specs (docs/design/).

License

Apache-2.0