codekanban 0.5.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -8
- package/README.zh-CN.md +5 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[中文](README.zh-CN.md) | [English](README.md)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
One panel, 10× faster coding.
|
|
8
8
|
|
|
9
9
|
[Core Features](#core-features) • [Quick Start](#quick-start) • [Development Guide](#development-guide) • [About](#about)
|
|
10
10
|
|
|
@@ -30,13 +30,11 @@ npm install -g codekanban
|
|
|
30
30
|
## Core Features
|
|
31
31
|
|
|
32
32
|
- **Ready to Use**: Single file, local database, double-click to use
|
|
33
|
-
- **
|
|
34
|
-
- **
|
|
35
|
-
- **Task Kanban**: Visualize development task management
|
|
36
|
-
- **
|
|
37
|
-
- **Notes
|
|
38
|
-
- **Editor Integration**: Quick open VSCode, Cursor, Zed and other editors
|
|
39
|
-
- **Use Your Favorite Tools**: Claude Code, Codex, Gemini, Qwen Code, Droid, ... anything works
|
|
33
|
+
- **Terminal Hub**: All your projects, terminals and coding agents in one place (Hotkey: `)
|
|
34
|
+
- **Coding Agent Monitor**: Auto-detect Claude Code/Codex running status in terminals, notify when tasks complete
|
|
35
|
+
- **Task Kanban**: Visualize development task management
|
|
36
|
+
- **Worktree Management**: Create worktree branches, support rebase and merge back to main branch
|
|
37
|
+
- **Notes**: Simple multi-tab notes for quick problem tracking (Hotkey: 1)
|
|
40
38
|
|
|
41
39
|
## Development Guide
|
|
42
40
|
|
package/README.zh-CN.md
CHANGED
|
@@ -30,15 +30,11 @@ npm install -g codekanban
|
|
|
30
30
|
## 核心特性
|
|
31
31
|
|
|
32
32
|
- **开箱即用**: 单文件,本地数据库,双击即可使用
|
|
33
|
-
-
|
|
34
|
-
- **
|
|
35
|
-
-
|
|
36
|
-
- **
|
|
37
|
-
-
|
|
38
|
-
- **编辑器集成**:快捷打开 VSCode、Cursor、Zed 等编辑器
|
|
39
|
-
- **使用你喜欢的工具**: Claude Code, Codex, Gemini, Qwen Code, Droid, ... 啥都行
|
|
40
|
-
|
|
41
|
-
Tips: 中文用户注意,搜狗输入法在 ClaudeCode 中兼容性不佳,在VSCode中表现也是大差不差的。不过alt+v仍然可以粘贴图片。
|
|
33
|
+
- **多项目多终端管理**:一张页面管理你的所有项目和所有终端 (快捷键`)
|
|
34
|
+
- **AI编程工具状态检测**:自动检测 Claude Code/Codex 运行状态,任务完成时提醒
|
|
35
|
+
- **任务看板**:可视化管理开发任务
|
|
36
|
+
- **Worktree 管理**:创建worktree分支,支持rebase和merge回主分支
|
|
37
|
+
- **笔记功能**:支持简易多标签笔记,随手记录问题 (快捷键1)
|
|
42
38
|
|
|
43
39
|
## 开发指南
|
|
44
40
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codekanban",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "An auxiliary programming tool for the AI era, helping you speed up 10x.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codekanban": "npm-bin/codekanban.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@codekanban/win32-x64": "0.
|
|
10
|
-
"@codekanban/darwin-x64": "0.
|
|
11
|
-
"@codekanban/darwin-arm64": "0.
|
|
12
|
-
"@codekanban/linux-x64": "0.
|
|
13
|
-
"@codekanban/linux-arm64": "0.
|
|
9
|
+
"@codekanban/win32-x64": "0.7.1",
|
|
10
|
+
"@codekanban/darwin-x64": "0.7.1",
|
|
11
|
+
"@codekanban/darwin-arm64": "0.7.1",
|
|
12
|
+
"@codekanban/linux-x64": "0.7.1",
|
|
13
|
+
"@codekanban/linux-arm64": "0.7.1"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"ai",
|