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

turtle-terminal

v0.1.1

Published

An AI terminal for Claude Code, Codex, and Gemini CLI with splits, comments, and select-to-send workflows

Readme

Turtle

The AI terminal for Claude Code, Codex, and Gemini CLI.

Turtle is a macOS terminal built for agent-heavy coding sessions: select output and send it back to your agent, comment on scrollback like a code review, and tile up to six shells in one tab without losing the thread.

npm version npm downloads license platform PRs welcome

npm install -g turtle-terminal && turtle

Why Turtle?

Claude Code, Codex, and Gemini CLI already live in your terminal. The hard part is everything around them: scanning long output, feeding the right error back into the model, tracking side notes, and keeping multiple runs visible at once. Turtle makes those workflows first-class.

  • Select -> send to agent. Highlight any error, diff, stack trace, or test failure and send it to the active agent as one clean prompt block.
  • Comment on terminal output. Pin notes to scrollback, jump back to them later, and review a long agent run without losing context.
  • Run a real split workspace. Use up to six panes per tab, drag dividers, zoom a pane, restore layouts, and keep separate agent/tool runs visible together.
  • See failures faster. Errors, warnings, and passing tests get subtle overlays while output streams, without changing the underlying terminal bytes.
  • Launch agents quickly. Start Claude Code, Codex, or Gemini CLI from the toolbar or command palette, then use quick actions for each tool's own commands.
  • Stay local. No telemetry, no accounts, no hosted backend. Turtle talks to your shell through a system PTY and stores settings locally.

Agent Workflow

Turtle is designed around the loop most AI coding sessions fall into:

  1. Launch claude, codex, or gemini from the toolbar, or open a normal shell.
  2. Split the tab for tests, logs, a dev server, or another agent.
  3. Select the exact output that matters and choose add to chat.
  4. Add comments to important scrollback so you can return to decisions, errors, and follow-ups.
  5. Use the status bar to jump back to running agents and see when background work finishes.

This makes Turtle useful as an AI terminal, an agent terminal, and a general macOS terminal emulator for developers who spend a lot of time in CLI coding tools.

Install

Requires macOS and Node.js 18+.

npm install -g turtle-terminal
turtle

Turtle is distributed as an npm CLI package, so there is no DMG, signing prompt, or app-store step. The turtle command launches the Electron app detached from the shell you started it from.

Update anytime:

npm update -g turtle-terminal

Run from source:

git clone https://github.com/nikhil-kapu/turtle-terminal.git
cd turtle-terminal
npm install
npm start

Features

| Feature | What it does | | --- | --- | | Select -> send | Send selected terminal output into Claude Code, Codex, or Gemini CLI as a clean prompt block. | | Terminal comments | Anchor notes to buffer lines and jump back to the relevant output later. | | Smart highlights | Highlight errors, warnings, and passing tests with a terminal-safe overlay. | | Split grid | Use up to 6 panes per tab, resize dividers, zoom panes, and restore layouts on relaunch. | | Agent awareness | See running-agent status, background completion notifications, and live status-bar timers. | | Agent quick actions | Send tool-native commands like model/status/MCP/compact from a status-bar menu. | | Click to place cursor | Click on the input line to move the cursor, with TUI mouse-mode handling. | | Themes and typography | Use built-in themes, auto-detected mono fonts, adjustable size, and line height. | | Background images | Add a local background image with adjustable dim and blur. | | Flexible tabs | Keep tabs on top, in a sidebar, or both. Reorder, rename, and restore them. | | Command palette | Search actions for splits, themes, tabs, launchers, settings, and panes. | | Drop files | Drop files into a pane to insert their shell-quoted paths. | | Terminal essentials | Find in buffer, clickable URLs, copy-on-select, 10k-line scrollback, and GPU rendering. |

Keyboard Shortcuts

| Keys | Action | Keys | Action | | --- | --- | --- | --- | | Cmd+T / Cmd+W | New tab / close | Cmd+D / Shift+Cmd+D | Split right / down | | Cmd+P | Command palette | Shift+Cmd+Enter | Zoom pane | | Cmd+1-9 | Switch tab | Cmd+[ / Cmd+] | Cycle panes | | Cmd+F | Find in buffer | Cmd+K | Clear buffer | | Cmd++ / Cmd+- / Cmd+0 | Text size | Cmd+, | Settings | | Cmd+C / Cmd+V | Copy / paste | Drag tab | Reorder |

How It Works

Turtle uses Electron, xterm.js, and prebuilt node-pty binaries. It opens your normal login shell with your existing aliases, PATH, git config, agent CLIs, and dotfiles.

The app does not send telemetry or terminal content to a server. Settings and restored layout state live in browser localStorage inside the local Electron app.

Contributing

Turtle is early and intentionally small. Useful contributions include bug reports, install edge cases, accessibility improvements, theme polish, agent-workflow ideas, and focused PRs.

  • Read CONTRIBUTING.md before opening a PR.
  • Open a bug report with your macOS version, Node version, install method, and the command you ran.
  • Open a feature request with the agent workflow you want to improve, not just the UI control you want added.

Roadmap: scrollback restore across relaunches, font ligatures, per-agent profiles, broadcast input to all panes, richer shell integration, and Linux/Windows exploration.

If Turtle helps your AI coding workflow, star the repo so other Claude Code, Codex, and Gemini CLI users can find it.

License

MIT © Nikhil Kapu