devchain-cli 0.10.0 → 0.10.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 +61 -27
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -1,28 +1,60 @@
|
|
|
1
1
|
# Devchain
|
|
2
2
|
|
|
3
|
-
AI
|
|
3
|
+
> AI agent orchestration platform for software development teams
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[](https://www.npmjs.com/package/devchain-cli)
|
|
6
|
+
[](LICENSE)
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
**[Homepage](https://devchain.twitechlab.com/)** · **[What's New in v0.10.0](https://devchain.twitechlab.com/releases/0.10.0/)**
|
|
9
|
+
|
|
10
|
+
Devchain runs your AI coding agents as a coordinated team — each with their own terminal session, task queue, and chat. Assign epics, track progress on a visual board, and let agents collaborate through a structured workflow. Supports Claude Code, Codex, and Gemini CLI out of the box.
|
|
11
|
+
|
|
12
|
+
---
|
|
8
13
|
|
|
9
14
|
## Features
|
|
10
15
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
-
|
|
16
|
+
### Worktrees
|
|
17
|
+
Spin up isolated agent environments on dedicated git branches. Each worktree gets its own agent team, terminals, and chat — run multiple features in parallel and merge when ready. Worktrees run as Docker containers or local processes with full branch isolation.
|
|
18
|
+
|
|
19
|
+
### Container Isolation
|
|
20
|
+
Worktree containers are provisioned automatically from the official Devchain image on [GHCR](https://github.com/orgs/TwiTech-LAB/packages/container/package/devchain). Each container has Claude Code, Codex, and Gemini CLI pre-installed, runs as a non-root user, and shares your git identity for correct commit attribution.
|
|
21
|
+
|
|
22
|
+
### Skills
|
|
23
|
+
Browse and sync AI agent skills from community sources (Anthropic, OpenAI, Vercel, and more). Enable or disable skills per project and expose them to agents via MCP tools.
|
|
24
|
+
|
|
25
|
+
### Visual Workflow Board
|
|
26
|
+
Kanban-style epic management with drag-and-drop, list view, board context menu, and URL-based filtering. Agents pick up tasks from the board and update status in real time.
|
|
27
|
+
|
|
28
|
+
### Terminal Sessions
|
|
29
|
+
Real terminal streaming via tmux and WebSocket. Each agent gets its own session with scrollback, resize support, and inline access from the chat panel.
|
|
30
|
+
|
|
31
|
+
### Code Review
|
|
32
|
+
Live pre-commit diff viewer with agent integration, inline comments, `@mentions`, comment threading, and VS Code-style file navigation.
|
|
33
|
+
|
|
34
|
+
### Multi-Provider
|
|
35
|
+
Works with Claude Code, OpenAI Codex, Google Gemini CLI, and GLM models. Switch providers per agent or switch the whole team preset with a single click.
|
|
36
|
+
|
|
37
|
+
### MCP Integration
|
|
38
|
+
Full Model Context Protocol support. Agents get access to epics, chat, skills, reviews, and more through MCP tools — auto-configured before each session.
|
|
39
|
+
|
|
40
|
+
### Local-First
|
|
41
|
+
All data stored in a local SQLite database. No cloud account required, no data leaving your machine.
|
|
42
|
+
|
|
43
|
+
---
|
|
16
44
|
|
|
17
45
|
## Requirements
|
|
18
46
|
|
|
19
47
|
- **Node.js** >= 20
|
|
20
|
-
- **tmux** —
|
|
48
|
+
- **tmux** — required for terminal sessions
|
|
21
49
|
- macOS: `brew install tmux`
|
|
22
50
|
- Ubuntu/Debian: `sudo apt install tmux`
|
|
23
|
-
- **
|
|
24
|
-
|
|
25
|
-
- `
|
|
51
|
+
- **Docker** — optional, required for container-isolated worktrees
|
|
52
|
+
- **AI Provider** — at least one of:
|
|
53
|
+
- [`claude`](https://claude.ai/claude-code) CLI
|
|
54
|
+
- [`codex`](https://github.com/openai/codex) CLI
|
|
55
|
+
- [`gemini`](https://github.com/google-gemini/gemini-cli) CLI
|
|
56
|
+
|
|
57
|
+
---
|
|
26
58
|
|
|
27
59
|
## Installation
|
|
28
60
|
|
|
@@ -30,31 +62,37 @@ Devchain coordinates AI coding agents (Claude, Codex) through a visual workflow
|
|
|
30
62
|
npm install -g devchain-cli
|
|
31
63
|
```
|
|
32
64
|
|
|
33
|
-
Or with pnpm:
|
|
34
|
-
|
|
35
65
|
```bash
|
|
36
66
|
pnpm add -g devchain-cli
|
|
37
67
|
```
|
|
38
68
|
|
|
39
|
-
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Quick Start
|
|
40
72
|
|
|
41
73
|
```bash
|
|
42
|
-
# Start Devchain
|
|
74
|
+
# Start Devchain — opens browser automatically
|
|
43
75
|
devchain start
|
|
44
76
|
|
|
45
|
-
# Start in foreground with logs
|
|
46
|
-
devchain start --foreground
|
|
47
|
-
|
|
48
|
-
# Start on a specific port
|
|
49
|
-
devchain start --port 5000
|
|
50
|
-
|
|
51
77
|
# Start with a specific project
|
|
52
78
|
devchain start --project /path/to/your/project
|
|
53
79
|
|
|
80
|
+
# Run in foreground with logs
|
|
81
|
+
devchain start --foreground
|
|
82
|
+
|
|
54
83
|
# Stop the server
|
|
55
84
|
devchain stop
|
|
56
85
|
```
|
|
57
86
|
|
|
87
|
+
On first run, import a template from the project page to provision your agent team. Two templates are included:
|
|
88
|
+
|
|
89
|
+
| Template | Agents | Best for |
|
|
90
|
+
|----------|--------|----------|
|
|
91
|
+
| `5-agents-dev` | Brainstormer, Epic Manager, SubBSM, Coder, Code Reviewer | Complex projects with full planning |
|
|
92
|
+
| `3-agents-dev` | Brainstormer, SubBSM, Coder | Faster iteration with lower token overhead |
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
58
96
|
## CLI Options
|
|
59
97
|
|
|
60
98
|
| Option | Description |
|
|
@@ -65,11 +103,7 @@ devchain stop
|
|
|
65
103
|
| `--db <path>` | Custom database directory path |
|
|
66
104
|
| `--project <path>` | Open with a specific project path |
|
|
67
105
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
devchain --help
|
|
72
|
-
```
|
|
106
|
+
---
|
|
73
107
|
|
|
74
108
|
## License
|
|
75
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devchain-cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "AI driven development platform",
|
|
5
5
|
"homepage": "https://devchain.twitechlab.com/",
|
|
6
6
|
"repository": {
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
"url": "https://github.com/twitech-lab/devchain.git"
|
|
9
9
|
},
|
|
10
10
|
"changelog": {
|
|
11
|
+
"0.10.1": [
|
|
12
|
+
"Update README with worktrees, container isolation, and skills documentation"
|
|
13
|
+
],
|
|
11
14
|
"0.10.0": [
|
|
12
15
|
"Details: https://devchain.twitechlab.com/releases/0.10.0/",
|
|
13
16
|
"",
|