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

aibou

v0.1.0

Published

MBTI-based terminal pet companion for Claude Code — MCP Server

Readme

Typet — MBTI Pet Companion

A personality-based terminal pet companion. Each pet has a unique MBTI personality, speaks in character, and lives in your terminal status line.

Features

  • 16 MBTI Animals — Each with distinct personality, voice, and behavior
  • ASCII Art — Animated pets with blinking, head movement, paw gestures
  • Speech Bubbles — Pets react to your code with in-character comments
  • MBTI Matching — Mirror (like you) and Complement (balances you) recommendations
  • MCP Server — Works with any MCP-compatible client

Quick Start

# Clone and install
git clone https://github.com/nanami-he/typet.git
cd typet
bun install

# Register with your MCP client
bun run install-typet

Restart your MCP client, then type /pet to adopt your companion.

Commands

| Command | Action | |---------|--------| | /pet | Show your pet or start adoption | | /pet pet | Interact with your pet | | /pet setup | Start adoption flow | | /pet browse | Browse all 16 pets | | /pet off | Mute reactions | | /pet on | Unmute reactions | | /pet rename <name> | Rename your pet |

The 16 Animals

| Group | Animals | |-------|---------| | NT Analysts | Raven (INTJ), Owl (INTP), Bear (ENTJ), Fox (ENTP) | | NF Diplomats | Wolf (INFJ), Deer (INFP), Labrador (ENFJ), Dolphin (ENFP) | | SJ Sentinels | Beaver (ISTJ), Elephant (ISFJ), Lion (ESTJ), Golden Retriever (ESFJ) | | SP Explorers | Cat (ISTP), Panda (ISFP), Cheetah (ESTP), Parrot (ESFP) |

How It Works

  1. MCP Server — Runs as stdio transport, spawned automatically by the client
  2. Status Line — Animated pet with speech bubble in your terminal
  3. Stop Hook — Extracts <!-- pet: ... --> comments from responses
  4. PostToolUse Hook — Detects errors/test failures, pet reacts in character

Requirements

  • Bun runtime
  • jq for JSON processing
  • Any MCP-compatible client

Architecture

~/.mbti-pet/
├── pet.json          — Pet state (adopted, mood, interactions)
├── status.json       — Compact state for status line
├── reaction.*.json   — Session-specific speech bubbles
└── config.json       — User preferences

typet/
├── server/           — MCP server (TypeScript)
│   ├── index.ts      — Tools: setup, adopt, show, pet, react
│   ├── engine.ts     — MBTI mappings, types, colors
│   ├── art.ts        — ASCII art (16 animals x 3 frames)
│   ├── pets.ts       — Full personality profiles
│   ├── voice.ts      — Speech constraints + validation
│   ├── reactions.ts  — Event-based reaction templates
│   ├── state.ts      — Persistence layer
│   └── utils.ts      — CJK display width helpers
├── statusline/       — Terminal status line (bash)
├── hooks/            — Stop + PostToolUse hooks
├── skills/           — Skill routing
└── cli/              — Install, doctor, show, backup

License

MIT