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

@pedroaugusto04/kote-cli

v1.4.4

Published

CLI client for the Kote AI system

Readme

kote-cli

CLI client for the Kote AI system - interact with your Kote directly from the terminal.

About Kote

Kote is a developer memory layer that automatically captures and organizes AI sessions, Git history, and development context into searchable knowledge.

For more details, visit the GitHub Repository or the original link.

About kote-cli

kote-cli is the official command-line interface for Kote. It allows you to sync local files and directories, capture AI session histories, and interact with your Kote without leaving your terminal.

Perfect for automating knowledge capture in CI/CD pipelines, local development scripts, or any workflow where the terminal is your primary interface.

Installation

npm install -g @pedroaugusto04/kote-cli

Quick Start

Get Help

kote
help

or 

kote --help

Initialize Configuration

kote init

This will prompt you for your Kote instance URL and credentials, creating a configuration file in your home directory.

Sync AI Session History (Primary Feature)

# Interactive session selection
kote sync-ai

This will scan for AI sessions and prompt you to select which ones to import.

Sync Files to Kote (Optional)

# Sync an entire directory
kote sync --dir ./docs --project my-project

# Sync a single file
kote sync --file ./README.md --project my-project

# Sync with real-time monitoring
kote sync --dir ./src --project my-project --watch

Key Commands

kote init

Initialize CLI configuration. Prompts for:

  • Kote API URL
  • API credentials (email/password or token)
  • Default project (optional)

kote sync

Sync local files or directories to your Kote.

Options:

  • --dir <path>: Sync a directory
  • --file <path>: Sync a single file
  • --project <name>: Target project name
  • --watch, -w: Monitor for changes and sync in real-time
  • --dry-run: Simulate sync without making changes

Examples:

# Sync documentation folder
kote sync --dir ./docs --project documentation

# Sync specific configuration file
kote sync --file ./package.json --project infrastructure

# Watch and sync changes automatically
kote sync --dir ./src --project backend --watch

# Test what would be synced
kote sync --dir ./docs --project docs --dry-run

kote sync-ai

Sync AI-assisted development session histories to preserve valuable insights.

Options:

  • --session-path <path>: Path to AI session directory
  • --project <name>: Target project name
  • --watch, -w: Monitor for new sessions

Supported AI Tools:

  • Claude Code (~/.claude/sessions)
  • Codex CLI (~/.codex/sessions)
  • Custom session directories

Examples:

# Sync Claude Code sessions
kote sync-ai --session-path ~/.claude/sessions --project ai-experiments

# Monitor for new sessions automatically
kote sync-ai --session-path ~/.claude/sessions --project ai-work --watch

Screenshots

Use Cases

CI/CD Integration

Automatically capture build artifacts, deployment notes, and configuration changes:

# In your CI pipeline
kote sync --dir ./build-artifacts --project deployments
kote sync --file ./CHANGELOG.md --project releases

Documentation Workflow

Keep documentation in sync with your Kote:

# Watch docs folder for changes
kote sync --dir ./docs --project documentation --watch

AI Session Archiving

Preserve valuable AI-assisted development sessions:

# Archive Claude Code sessions as searchable knowledge
kote sync-ai --session-path ~/.claude/sessions --project development-history

Links

License

See LICENSE for terms of use.