Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# CodeDash
# Codbash

## What is this

CodeDash (`codedash-app` on npm) is a zero-dependency Node.js browser dashboard for managing AI coding agent sessions. Supports 7 agents: Claude Code, Codex, Cursor, OpenCode, Kiro CLI, Kilo CLI, Copilot Chat. Single `npm i -g codedash-app && codedash run` opens a local web UI.
Codbash (`codbash-app` on npm) is a zero-dependency Node.js browser dashboard for managing AI coding agent sessions. Supports 7 agents: Claude Code, Codex, Cursor, OpenCode, Kiro CLI, Kilo CLI, Copilot Chat. Single `npm i -g codbash-app && codbash run` opens a local web UI.

## Project structure

Expand Down Expand Up @@ -142,4 +142,4 @@ git checkout main && git pull
npm publish --access public
```

Package name: `codedash-app`, binary name: `codedash`
Package name: `codbash-app`, binary name: `codbash` (legacy alias `codedash` also works)
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ Control room for AI coding sessions. Search, replay, and resume Claude Code, Cod

https://github.com/user-attachments/assets/15c45659-365b-49f8-86a3-9005fa155ca6

![npm](https://img.shields.io/npm/v/codedash-app?style=flat-square) ![Node](https://img.shields.io/badge/node-%3E%3D18-green?style=flat-square) ![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square) ![Zero deps](https://img.shields.io/badge/dependencies-0-blue?style=flat-square)
![npm](https://img.shields.io/npm/v/codbash-app?style=flat-square) ![Node](https://img.shields.io/badge/node-%3E%3D18-green?style=flat-square) ![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square) ![Zero deps](https://img.shields.io/badge/dependencies-0-blue?style=flat-square)

## Quick Start

```bash
npm i -g codedash-app
codedash run
npm i -g codbash-app
codbash run
```

## Supported Agents
Expand Down Expand Up @@ -59,18 +59,18 @@ Also detects Claude Code running inside Cursor (via `claude-vscode` entrypoint).

**CLI**
```bash
codedash run [--port=N] [--no-browser]
codedash search <query>
codedash show <session-id>
codedash handoff <id> [target] [--verbosity=full] [--out=file.md]
codedash convert <id> claude|codex
codedash list [limit]
codedash stats
codedash export [file.tar.gz]
codedash import <file.tar.gz>
codedash update
codedash restart
codedash stop
codbash run [--port=N] [--no-browser]
codbash search <query>
codbash show <session-id>
codbash handoff <id> [target] [--verbosity=full] [--out=file.md]
codbash convert <id> claude|codex
codbash list [limit]
codbash stats
codbash export [file.tar.gz]
codbash import <file.tar.gz>
codbash update
codbash restart
codbash stop
```

**Keyboard Shortcuts**: `/` search, `j/k` navigate, `Enter` open, `x` star, `d` delete, `s` select, `g` group, `r` refresh, `Esc` close
Expand Down
6 changes: 3 additions & 3 deletions docs/README_RU.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CodeDash
# Codbash

Дашборд + CLI для сессий AI-агентов. 7 агентов: Claude Code, Codex, Cursor, OpenCode, Kiro, Kilo, Copilot Chat.

Expand All @@ -7,7 +7,7 @@
## Быстрый старт

```bash
npm i -g codedash-app && codedash run
npm i -g codbash-app && codbash run
```

## Поддерживаемые агенты
Expand Down Expand Up @@ -35,7 +35,7 @@ npm i -g codedash-app && codedash run
## CLI

```bash
codedash run | search | show | handoff | convert | list | stats | export | import | update | restart | stop
codbash run | search | show | handoff | convert | list | stats | export | import | update | restart | stop
```

## Требования
Expand Down
6 changes: 3 additions & 3 deletions docs/README_ZH.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CodeDash
# Codbash

AI 编程代理会话仪表板 + CLI。支持 7 个代理:Claude Code、Codex、Cursor、OpenCode、Kiro、Kilo、Copilot Chat。

Expand All @@ -7,7 +7,7 @@ AI 编程代理会话仪表板 + CLI。支持 7 个代理:Claude Code、Codex
## 快速开始

```bash
npm i -g codedash-app && codedash run
npm i -g codbash-app && codbash run
```

## 支持的代理
Expand All @@ -32,7 +32,7 @@ npm i -g codedash-app && codedash run
## CLI

```bash
codedash run | search | show | handoff | convert | list | stats | export | import | update | restart | stop
codbash run | search | show | handoff | convert | list | stats | export | import | update | restart | stop
```

## 要求
Expand Down
Loading