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

kytip-pm

v1.0.3

Published

Kytip is a provider-agnostic PMing bundle for transcript-to-project-memory workflows.

Readme

Kytip

+-----------------------------------------------------------------------+
| [kytip] [bootstrap] [kanban] [notes] [streams] [portfolio]            |
|-----------------------------------------------------------------------|
|   | /    \ /    ---    ---    |~~\                                   |
|   |/      Y      |      |      |__/     K Y T I P                     |
|   |\      |      |      |      |                                      |
|   | \     |      |     ---     |                                      |
|                                                                       |
|   transcript batches -> packets -> ledgers -> streams -> terminal hub |
+-----------------------------------------------------------------------+

Kytip turns messy transcript drops into durable project memory inside the current workspace.

It gives you a repeatable local shape:

  • meeting packets you can actually revisit
  • ledgers for blockers, gates, decisions, actions, and next steps
  • project and stream pages that survive chat-window loss
  • a terminal hub over pm-state/, instead of forcing you to click through docs

Bootstrap Into A Workspace

Run this from inside the directory you want Kytip to materialize into:

mkdir my-workspace && cd my-workspace
npm exec --yes --package kytip-pm@latest -- kytip bootstrap
./kytip

Kytip writes into . and creates:

  • ./.kytip/
  • ./.agents/PMing/
  • ./.agents/PMing/instructions/
  • ./.agents/skills/...
  • ./pm-state/
  • ./kytip

Bootstrap is cautious:

  • existing files are skipped by default
  • pass --force only when you intentionally want to overwrite
npm exec --yes --package kytip-pm@latest -- kytip bootstrap --force

Install Modes

If you want it pinned in a project:

npm i kytip-pm
npx kytip bootstrap
./kytip

If you want the command available everywhere:

npm i -g kytip-pm
kytip bootstrap
./kytip

If you are working from source:

cd /path/to/workspace
/path/to/kytip-pm/assets/scripts/bootstrap-workspace.sh .
./kytip

What Kytip Actually Is

Kytip is agent-oriented, but not agent-locked.

  • it works with Codex, Claude, OpenAI workflows, local models, or manual operators
  • its runtime contract is just pm-state/
  • if you are running ACE, pair it with ace-swarm
  • it does not require ACE-specific runtime state to function

The default PMing passes are:

  1. meeting-packetizer
  2. pm-ledger-updater
  3. stream-reconciler
  4. portfolio-brief-writer

Those materialize:

  • pm-state/meetings/*.md
  • pm-state/ledgers/*.md
  • pm-state/projects/*.md
  • pm-state/STREAMS.md
  • pm-state/PORTFOLIO_BRIEF.md

The Terminal Hub

./kytip reads pm-state/ and brings the run together in one terminal surface:

  • overview and portfolio pressure
  • blockers and gates in one place
  • active actions and next steps
  • notes you can move through without leaving the TUI

Controls:

  • 1 2 3 switch views
  • h l move across kanban lanes
  • j k or arrows move selection
  • Enter jumps to the source note for the selected card
  • PageUp / PageDown scroll note content
  • r refresh from disk
  • q quit

Package Surface

Published package:

  • package name: kytip-pm
  • primary CLI: kytip
  • UI alias: kytip-ui
  • bootstrap alias: kytip-bootstrap

What ships:

  • files whitelisted in package.json#files
  • runtime under assets/runtime/
  • workspace bootstrap scripts and PMing assets
  • agent, skill, and instruction contracts under .agents/

What does not ship:

  • transcript-derived smoke outputs
  • repo-local caches and throwaway run state
  • internal sidecar/spec history that is not required at runtime
  • workspace-root instruction spillover

Build

npm test
npm run pack:dry-run

If dev dependencies are installed, you can also rebuild the JS runtime:

npm run build

License

Kytip ships under the custom LICENSE.

Allowed without separate permission:

  • personal use
  • academic use
  • research use
  • evaluation use
  • internal non-commercial use

Commercial use is not automatically granted. If you want to use Kytip in a paid product, service, internal commercial workflow, or partnership context, contact [email protected].

Collaboration

Reach out at [email protected] for collaborations, ideas, or integrations.