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

codeteleport

v0.2.3

Published

Teleport AI coding sessions between machines

Readme

CodeTeleport

Teleport your AI coding sessions across devices.

Push a conversation from one machine, pull it on another, resume right where you left off.

npm version License: MIT Platform Docs


The Problem

You're deep in an AI coding session on your work laptop — hundreds of messages, dozens of file edits, a full mental model of your codebase built up over hours. Time to head home. You close the lid, open your desktop, and that entire conversation is stuck on the other machine. The context, the file history, the tool calls, the subagent work — all of it, inaccessible.

The Solution

npm install -g codeteleport

Teleport the session. Resume on the other machine. Full context intact.


Quick Start

1. Install & Log in

npm install -g codeteleport
codeteleport auth login

2. Add the MCP server to Claude Code

claude mcp add codeteleport -- codeteleport-mcp

3. Teleport

Just talk to Claude Code:

"Push this session to the cloud"

Switch machines, open the same project directory, and:

"Pull my latest session"

Then:

"Resume the session"

That's it. Your full conversation — every message, every file edit, every tool call — is back.


How It Works

Push

You're working in ~/projects/my-app on Machine A. When you push:

  1. CodeTeleport detects the AI coding session tied to your current directory
  2. It bundles everything — conversation log (JSONL), file history, subagent logs, paste cache, shell snapshots — into a compressed .tar.gz
  3. The bundle is uploaded to secure cloud storage, tagged with the original machine and directory path

Pull

You sit down at Machine B, cd into your project directory, and pull:

  1. CodeTeleport downloads the bundle
  2. It sees the session was rooted at /home/nawaaz/projects/my-app on the original machine
  3. It rewrites every path in the session to match your current directory — /home/alice/work/my-app
  4. The session is installed into ~/.claude/ linked to your current working directory

Claude Code sees it as a local session. claude --resume <session-id> picks up exactly where you left off.

The key detail: pull works from your current directory. Whatever directory you're in when you pull becomes the new root for the session. Paths are rewritten automatically — different username, different OS, different directory structure — it all just works.


Session Versioning

Every push saves a new version of the session. Go down the wrong path with Claude? Realize the approach from 50 messages ago was better? Pull an earlier version and pick up from there.

> "Show me the versions of this session"

Session c3a05473 — 4 versions:

  v4   2 min ago      5.3 MB   (latest)
  v3   3 hours ago    4.8 MB
  v2   yesterday      3.1 MB
  v1   2 days ago     1.2 MB

> "Pull version 2"

Free accounts keep 2 versions per session. Pro keeps 10. Older versions rotate out automatically.


MCP Tools

Seven tools available inside Claude Code:

| Tool | Description | | --- | --- | | teleport_push | Push the current session to the cloud (creates a new version) | | teleport_pull | Pull a session from the cloud (optionally a specific version) | | teleport_list | List cloud sessions with metadata | | teleport_local_list | List all local AI coding sessions on this machine | | teleport_versions | Show version history for a session | | teleport_status | Account info, plan, usage | | teleport_delete | Delete a session and all its versions from the cloud |


CLI

The same operations are available from the terminal:

codeteleport push              # Interactive session picker → push to cloud
codeteleport pull              # Interactive session picker → pull from cloud
codeteleport pull --version N  # Pull a specific version
codeteleport list              # List local or cloud sessions
codeteleport versions <id>     # Show version history for a session
codeteleport status            # Account info, plan, usage
codeteleport delete            # Delete a cloud session
codeteleport auth login        # Log in (GitHub OAuth or email)

Example: Push

$ codeteleport push

Sessions for my-app (2 found):

  1)  c3a05473    3490 msgs     2 min ago   5.3 MB
  2)  16b4c4d7     847 msgs     3 hours ago 1.2 MB

Select session [1]: 1

Bundling...
Uploading...
Confirming...

Session teleported to CodeTeleport
  id      : c3a05473-9f12-4a2b-ae27-9478ab66d216
  version : 3
  size    : 5428 KB
  machine : work-laptop

Example: Pull

$ codeteleport pull

Cloud sessions:

  1)  c3a05473  my-app  work-laptop   3490 msgs   5.3 MB

Select session [1]: 1
Downloading...
Installing...

Session pulled
  id      : c3a05473-9f12-4a2b-ae27-9478ab66d216
  version : 3
  from    : work-laptop
  to      : /home/alice/.claude/projects/-home-alice-projects-my-app

Resume with: claude --resume c3a05473-9f12-4a2b-ae27-9478ab66d216

What Gets Teleported

| Component | Description | | --- | --- | | Conversation log | Every message, tool call, and response (JSONL) | | Subagent conversations | Background agent logs | | File history | Snapshots of files read or edited | | Paste cache | Content pasted into the conversation | | Shell snapshots | Terminal state during the session |


Platform Support

| Platform | Status | | --- | --- | | macOS | Fully supported | | Linux | Fully supported | | Windows | Not yet (planned) |


Links

| | | | --- | --- | | Documentation | docs.codeteleport.com | | Dashboard | app.codeteleport.com | | Website | codeteleport.com | | npm | codeteleport | | GitHub | korvol/codeteleport | | Support | support.codeteleport.com · GitHub Issues | | Discord | discord.gg/c69JYPWS |


License

MIT