Skip to main content

jupyterlab_ai_code_assistants_extension

GitHub Actions npm version PyPI version Total PyPI downloads JupyterLab 4 Brought To You By KOLOMOLO Donate PayPal

A full launcher and manager for every AI code assistant in JupyterLab - Claude Code, Codex, Kimi, Gemini and DeepSeek. Start, resume, fork, switch, and clean up CLI sessions from a side panel per assistant - one click lands you in the right terminal with the assistant already running, no duplicate tabs, no UUID hunting. One install replaces the separate jupyterlab_claude_code_extension, jupyterlab_codex_extension and jupyterlab_kimi_code_extension packages and migrates their settings and favourites automatically.

Claude Code Sessions panel

Why this extension

One principle: the vendors know best how to build the agent harness; we know best how to make it work in JupyterLab.

Chat-panel extensions re-implement the agent loop and trail the real tool. This one runs the genuine, unmodified CLIs in JupyterLab terminals - skills, subagents, MCP, hooks, plan mode, every release the day it lands. The extension owns the JupyterLab side:

  • Launching - new, resumed, or forked sessions, with or without permission prompts, no wrapper shell, correctly sized before the assistant draws its first frame
  • Finding - every project in one panel per assistant: favourites, search, live activity
  • Reusing - clicking a session focuses its existing terminal, never a duplicate
  • Managing - parallel conversations: switch, fork with a name, delete - no --resume pickers, no raw UUIDs

Features

  • One install, every assistant - Claude Code, Codex, Kimi, Gemini and DeepSeek from a single package, each with its own right-side panel wearing its official mark
  • Provider registry - assistant-specific behaviour lives in one module per assistant behind capability flags; no core file names an assistant, and adding one touches no core file
  • Joint settings page - one settings section covering all assistants, with a per-assistant toggle (all on by default); toggling takes effect live, no JupyterLab reload
  • Three-section side panel - Favorites, Recent, and All projects, each scrolling independently
  • One-click resume - click a row to jump back into that session in a terminal; an open terminal for the project is reused instead of duplicated. Exception: a Codex or Kimi conversation started with +, and a Codex fork, run without an id until the CLI writes one, so a click on that row meanwhile opens a second terminal
  • Launcher tiles - every enabled assistant has a tile in an "AI Assistants" section of the JupyterLab Launcher (after Other, under the extension's own robot-head icon); a click opens the assistant in the file browser's current folder, resuming the folder's conversation when one exists and starting a new one otherwise, through the companion jupyterlab_basic_terminal_extension (installed automatically). Disable an assistant and its tile goes; disable them all and the section goes with them
  • Your terminal's claude -c follows the panel (Claude) - switching to a conversation makes plain claude -c in that project resume that same conversation, including one that has been compacted, which Claude Code otherwise refuses to continue. Launching repairs a compacted conversation the same way, but only switching moves what claude -c picks
  • Conversation switcher - a right-click "Switch and Manage Sessions" submenu lists a project's other conversations by name and short id with last-activity time; "Manage Sessions..." opens a searchable popup over the full list with multi-select delete and per-row open and copy-id buttons
  • Branch session - fork the current conversation into a new named session via the right-click menu; each assistant forks its own way (Claude's native --fork-session, Codex's codex fork, server-side copies for Kimi, Gemini and DeepSeek) behind the same menu item
  • Rename session - name a conversation from the right-click menu, and the name is written where the assistant itself reads it back: Claude gets the record its own /rename writes, Kimi a custom title, Gemini the chat's summary, DeepSeek its title event. The panel shows the name the assistant actually kept. Codex keeps its names in a database this extension only reads, and its CLI has no rename verb, so the item is absent there rather than failing
  • Launch modes under each assistant's own name - Claude's skip-permissions, Codex's approval bypass, Kimi's --yolo, Gemini's YOLO; unsafe variants carry a shield glyph in the launch menus
  • Coloured terminal tabs - each session's colour tints its terminal tab via the companion jupyterlab_colourful_tab_extension (installed automatically). Claude's own /color supplies its default, Kimi derives a stable colour from the conversation id; Codex, Gemini and DeepSeek have no colour of their own until you set one, and a branched session inherits its parent's colour, which it keeps even if the parent's colour later changes or is reset. Tinting needs the companion release that reports the colours you pick and lets another extension own a tab - against an older one this extension tints no tabs at all and says so once, and the companion's own right-click colours keep working as they always did
  • Your own tab colour wins - set a colour on a terminal tab and the extension remembers it for that conversation, overriding whatever the assistant chose. Reset Tab Colour (n) in the session's right-click menu hands back every colour you set by hand on that project's conversations, and appears once there is one to hand back. Clearing the colour on the tab itself releases it too, for the conversation that terminal is running; Reset Tab Colour is the way back for a conversation with no tab open. A Codex or Kimi conversation that has never been resumed cannot be tracked yet, so a colour set on its tab is not kept
  • Favorites - star projects you keep coming back to via the right-click menu; favourites from the standalone extensions are migrated on first run
  • Remove and clean up - drop a project's history or a project's extra parallel sessions from the right-click menu, confirmation dialog first; removed files honour JupyterLab's "move files to trash" setting
  • Activity at a glance - each row shows its last activity in an aligned column; rows active within the last minute light up, rows idle for over a week dim, and rows with parallel conversations show a branch icon with the count
  • Remote control indicator and background agents (Claude) - a green dot marks sessions actively under remote control, and a conversation held by a running background agent shows a bg chip; clicking attaches to the agent instead of copying it
  • Search - fuzzy filter per panel, toggled by the funnel button
  • Presentation modes - label rows by session name or by path relative to the JupyterLab root
  • Conflict-safe upgrade - if a retired standalone extension is still installed, its panel wins and this extension stands down for that assistant instead of showing a duplicate
  • DeepSeek in the browser - the DeepSeek Harness has no terminal chat; its panel lists the projects under ~/.dsh/sessions (or $DSH_HOME) and Open Web UI starts dsh --profile web --no-open --port 0 in the project's terminal, which prints the URL to open. The conversation is then chosen in the harness's own browser UI; branching and deleting work from the panel as for every other assistant. The URL is on the machine running JupyterLab, so a remote server needs a port forward to reach it
  • Auto-disabled when absent - an assistant whose CLI is not on PATH does not show a panel

Requirements

  • JupyterLab >= 4.6.0
  • Python >= 3.10
  • At least one assistant CLI on PATH: claude, codex, kimi, gemini, or dsh (the DeepSeek Harness)

Install

Developers must install via the project Makefile (which orchestrates clean, build, and pip install of the resulting wheel):

make install

The companion packages are version floors, so make install here pulls their published releases and replaces a locally built jupyterlab_colourful_tab_extension or jupyterlab_basic_terminal_extension. When verifying a change that spans this extension and a companion, install the companion last.

End-users can install the published package from PyPI:

pip install jupyterlab_ai_code_assistants_extension

Migrating from the standalone extensions

This package supersedes jupyterlab_claude_code_extension, jupyterlab_codex_extension and jupyterlab_kimi_code_extension. On first run it carries their settings and favourites over automatically; uninstall the standalones once you are ready:

pip uninstall jupyterlab_claude_code_extension jupyterlab_codex_extension jupyterlab_kimi_code_extension

Tab colours stored by versions of THIS extension before 1.0.0 are carried over and keep tinting their tabs, but Reset Tab Colour will not offer them: the store from that version cannot tell a colour you set from one a branch inherited, and offering the wrong one would strip a branch of the colour it was forked with. Set the colour on that tab once more and it becomes yours to reset.

While a standalone extension is still installed, its panel is shown and this extension's panel for that assistant stays out of the way.

Uninstall

pip uninstall jupyterlab_ai_code_assistants_extension

Release files for jupyterlab-ai-code-assistants-extension 1.2.31

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for jupyterlab-ai-code-assistants-extension 1.2.31
File Size Uploaded
jupyterlab_ai_code_assistants_extension-1.2.31.tar.gz 689.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for jupyterlab-ai-code-assistants-extension 1.2.31
File Interpreter ABI Platform
jupyterlab_ai_code_assistants_extension-1.2.31-py3-none-any.whl Python 3 none any Details

Total release size: 974.7 kB

Release files / jupyterlab_ai_code_assistants_extension-1.2.31.tar.gz

Download URL jupyterlab_ai_code_assistants_extension-1.2.31.tar.gz
Size 689.0 kB
Tags Source
SHA-256 checksum
How to use checksums
585f3d72df4c8ba66c27d16abb4589324864884b88dd4b2b485295f30ae3f0d4
BLAKE2b-256 checksum
How to use checksums
c31bdb2530995febc46dd11b24f4a4b4b2648870c2fb5d0ed10056f8a9547796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release files / jupyterlab_ai_code_assistants_extension-1.2.31-py3-none-any.whl

Download URL jupyterlab_ai_code_assistants_extension-1.2.31-py3-none-any.whl
Size 285.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
faf12fa4a21418dc0e1636300c7963c9fe60bbec98f5e03a8ddad00eff6aaa57
BLAKE2b-256 checksum
How to use checksums
8152d934e27be979523a28863b0b728d7f7592dcee2f1ea2779f1552c40457d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release history Release notifications | RSS feed

1.2.35

2 release files

This release

1.2.31 This release

2 release files

1.2.30

2 release files

1.2.27

2 release files

1.2.25

2 release files

1.2.7

2 release files

1.2.5

2 release files

1.2.4

2 release files

1.2.1

2 release files

1.1.13

2 release files

1.0.41

2 release files

1.0.39

2 release files

1.0.32

2 release files

1.0.31

2 release files

1.0.30

2 release files

1.0.29

2 release files

1.0.28

2 release files

1.0.27

2 release files

1.0.25

2 release files

1.0.23

2 release files

1.0.21

2 release files

1.0.19

2 release files

1.0.17

2 release files

1.0.10

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page