codekanban 0.6.0 → 0.8.0

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/Dockerfile ADDED
@@ -0,0 +1,79 @@
1
+ # Build stage for frontend
2
+ FROM node:22.12-alpine AS frontend-builder
3
+
4
+ WORKDIR /app/ui
5
+
6
+ # Install pnpm using npm
7
+ RUN npm install -g pnpm@latest
8
+
9
+ # Copy frontend package files
10
+ COPY ui/package.json ui/pnpm-lock.yaml ./
11
+
12
+ # Install dependencies
13
+ RUN pnpm install --frozen-lockfile
14
+
15
+ # Copy frontend source code
16
+ COPY ui/ ./
17
+
18
+ # Build frontend
19
+ RUN pnpm build
20
+
21
+ # Build stage for backend
22
+ FROM --platform=$BUILDPLATFORM golang:1.24-alpine AS backend-builder
23
+
24
+ WORKDIR /app
25
+
26
+ # Install build dependencies
27
+ RUN apk add --no-cache git gcc musl-dev sqlite-dev
28
+
29
+ # Copy go mod files
30
+ COPY go.mod go.sum ./
31
+
32
+ # Download dependencies
33
+ RUN go mod download
34
+
35
+ # Copy source code
36
+ COPY . .
37
+
38
+ # Copy built frontend assets
39
+ COPY --from=frontend-builder /app/ui/dist ./static
40
+
41
+ # Build backend with cross-compilation
42
+ # Use build platform (amd64) to compile for target platform (amd64/arm64)
43
+ ARG TARGETARCH
44
+ ARG TARGETOS
45
+ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build \
46
+ -ldflags="-s -w" \
47
+ -tags "sqlite_omit_load_extension" \
48
+ -trimpath \
49
+ -o CodeKanban
50
+
51
+ # Final stage
52
+ FROM alpine:latest
53
+
54
+ # Install runtime dependencies
55
+ RUN apk add --no-cache \
56
+ ca-certificates \
57
+ tzdata \
58
+ sqlite-libs
59
+
60
+ WORKDIR /app
61
+
62
+ # Copy binary from builder
63
+ COPY --from=backend-builder /app/CodeKanban .
64
+
65
+ # Create data directory
66
+ RUN mkdir -p /app/data
67
+
68
+ # Expose default port
69
+ EXPOSE 3007
70
+
71
+ # Set environment variables
72
+ ENV GIN_MODE=release
73
+
74
+ # Health check
75
+ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
76
+ CMD wget --no-verbose --tries=1 --spider http://localhost:3007/api/v1/health || exit 1
77
+
78
+ # Run the application
79
+ CMD ["./CodeKanban"]
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  [中文](README.zh-CN.md) | [English](README.md)
6
6
 
7
- An auxiliary programming tool for the AI era, helping you speed up 10x.
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
 
@@ -25,19 +25,17 @@ Try it instantly:
25
25
  npx codekanban
26
26
  # or
27
27
  npm install -g codekanban
28
+ codekanban
28
29
  ```
29
30
 
30
31
  ## Core Features
31
32
 
32
33
  - **Ready to Use**: Single file, local database, double-click to use
33
- - **Multi-Project Multi-Terminal Management**: Easily switch between 3-4 code repositories and dozens of terminals, each running different AI programming tasks
34
- - **Git Worktree Management**: Lightweight branch management, let AI develop multiple features simultaneously, rollback anytime if unsatisfied
35
- - **Task Kanban**: Visualize development task management with support for task status tracking and branch association
36
- - **Web Terminal Integration**: Web terminal using the same technology stack as VSC, supports tab management, drag sorting, collapse/expand, etc. (Hotkey: `)
37
- - **Notes Feature**: Supports multi-tab notes, auto-save, tabs can be renamed and sorted (Hotkey: 1)
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
40
- - **AI Assistant Status Detection**: Auto-detect Claude Code/Codex running status in terminals, with tab highlighting when tasks complete
34
+ - **Terminal Hub**: All your projects, terminals and coding agents in one place (Hotkey: `)
35
+ - **Coding Agent Monitor**: Auto-detect Claude Code/Codex running status in terminals, notify when tasks complete
36
+ - **Task Kanban**: Visualize development task management
37
+ - **Worktree Management**: Create worktree branches, support rebase and merge back to main branch
38
+ - **Notes**: Simple multi-tab notes for quick problem tracking (Hotkey: 1)
41
39
 
42
40
  ## Development Guide
43
41
 
package/README.zh-CN.md CHANGED
@@ -30,16 +30,11 @@ npm install -g codekanban
30
30
  ## 核心特性
31
31
 
32
32
  - **开箱即用**: 单文件,本地数据库,双击即可使用
33
- - **多项目多终端管理**:轻松在 3-4 个代码仓库、二十几个终端之间切换,每个终端运行不同的 AI 编程任务
34
- - **Git Worktree 管理**:轻量级分支管理,同时让 AI 开发多个功能,不满意随时回滚
35
- - **任务看板**:可视化管理开发任务,支持任务状态跟踪和分支关联
36
- - **Web 终端集成**:使用VSC同款技术栈的 Web 终端,支持标签管理、拖动排序、折叠展开等 (快捷键`)
37
- - **笔记功能**:支持多标签笔记,自动保存,标签可重命名和排序 (快捷键1)
38
- - **编辑器集成**:快捷打开 VSCode、Cursor、Zed 等编辑器
39
- - **使用你喜欢的工具**: Claude Code, Codex, Gemini, Qwen Code, Droid, ... 啥都行
40
- - **AI 助手状态检测**:终端内自动检测 Claude Code/Codex 运行状态,任务完成时标签高亮提醒
41
-
42
- Tips: 中文用户注意,搜狗输入法在 ClaudeCode 中兼容性不佳,在VSCode中表现也是大差不差的。不过alt+v仍然可以粘贴图片。
33
+ - **多项目多终端管理**:一张页面管理你的所有项目和所有终端 (快捷键`)
34
+ - **AI编程工具状态检测**:自动检测 Claude Code/Codex 运行状态,任务完成时提醒
35
+ - **任务看板**:可视化管理开发任务
36
+ - **Worktree 管理**:创建worktree分支,支持rebase和merge回主分支
37
+ - **笔记功能**:支持简易多标签笔记,随手记录问题 (快捷键1)
43
38
 
44
39
  ## 开发指南
45
40
 
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "codekanban",
3
- "version": "0.6.0",
3
+ "version": "0.8.0",
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.6.0",
10
- "@codekanban/darwin-x64": "0.6.0",
11
- "@codekanban/darwin-arm64": "0.6.0",
12
- "@codekanban/linux-x64": "0.6.0",
13
- "@codekanban/linux-arm64": "0.6.0"
9
+ "@codekanban/win32-x64": "0.8.0",
10
+ "@codekanban/darwin-x64": "0.8.0",
11
+ "@codekanban/darwin-arm64": "0.8.0",
12
+ "@codekanban/linux-x64": "0.8.0",
13
+ "@codekanban/linux-arm64": "0.8.0"
14
14
  },
15
15
  "keywords": [
16
16
  "ai",