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

open-kioku

v2.0.1

Published

Local-first code intelligence MCP for AI coding agents

Downloads

1,192

Readme

Open Kioku

Local-first code intelligence for AI coding agents.

If Open Kioku helps your AI coding workflow, please consider starring the repo: https://github.com/shivyadavus/open-kioku

Open Kioku indexes a repository on your machine and exposes fast code search, symbol navigation, impact analysis, context packs, and MCP tools through the ok CLI.

Install

npm install -g open-kioku

Then verify the installed binary:

ok --version

Quick Start

Index Your Repository

npm install -g open-kioku
ok init /absolute/path/to/repo
ok index /absolute/path/to/repo
ok doctor /absolute/path/to/repo

Verify that the local index has useful evidence:

ok --repo /absolute/path/to/repo search "auth flow" --limit 5
ok --repo /absolute/path/to/repo plan "change auth flow" --format markdown

Connect the same indexed repo to your LLM client:

ok mcp install claude --repo /absolute/path/to/repo
ok mcp install cursor --repo /absolute/path/to/repo

Paste the printed MCP config snippet into Claude Code, Cursor, or another MCP-compatible client. Open Kioku runs locally over stdio and is read-only by default.

Ask the agent to use the index before editing:

Use Open Kioku before editing. Check repo_status, search_code, get_definition,
get_references, impact_analysis, and find_tests_for_change. Build a plan first.

Keep the index fresh while you work:

ok watch /absolute/path/to/repo

Try The Demo

Create and index a sample repository:

ok demo --force

Search and inspect the demo:

ok --repo ./open-kioku-demo search token
ok --repo ./open-kioku-demo symbol find issue_token
ok --repo ./open-kioku-demo impact --file src/auth.rs
ok --repo ./open-kioku-demo plan token --format markdown
ok prove ./open-kioku-demo --task token

Package Layout

The open-kioku npm package is a small JavaScript wrapper. It installs one platform-specific optional dependency containing the native ok binary for your operating system and CPU architecture.

Supported packages:

  • @open-kioku/darwin-x64
  • @open-kioku/darwin-arm64
  • @open-kioku/linux-x64
  • @open-kioku/linux-arm64
  • @open-kioku/win32-x64

Links

  • Repository: https://github.com/shivyadavus/open-kioku
  • Releases: https://github.com/shivyadavus/open-kioku/releases
  • Demo: https://openkioku.com/
  • Security: https://github.com/shivyadavus/open-kioku/blob/main/SECURITY.md