sessioner

(★ 14)

✨ An interactive CLI to search, fork, merge, prune, trim, and manage Claude Code sessions from the terminal.

File Explorer

  • .gitattributes
  • .gitignore
  • .prettierignore
  • .prettierrc
  • CHANGELOG.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • SECURITY.md
  • tsconfig.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

npm

View Details ▼

JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.

npm init {{[-y|--yes]}}

Create a `package.json` file with default values (omit `--yes` to do it interactively):

npm {{[i|install]}}

Download all the packages listed as dependencies in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

🔍

xdg-open

View Details ▼

Open a file or URL in the user's preferred application.

xdg-open .

Open the current directory in the default file explorer:

xdg-open {{https://example.com}}

Open a URL in the default browser:

xdg-open {{path/to/image}}

Open an image in the default image viewer:

// repository documentation