agent-takkub 1.0.2 β 1.0.4
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
CHANGED
|
@@ -1,83 +1,108 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
|
|
3
1
|
# π©οΈ agent-takkub
|
|
4
2
|
|
|
5
|
-
**A desktop cockpit for
|
|
3
|
+
**A local-first desktop cockpit for orchestrating a team of Claude Code agents in one unified window.**
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/agent-takkub)
|
|
6
|
+
[](https://github.com/takkub/agent-takkub/blob/main/LICENSE)
|
|
7
|
+
[](https://github.com/takkub/agent-takkub)
|
|
8
|
+
[](https://www.python.org/)
|
|
9
|
+
[](https://nodejs.org/)
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
(frontend Β· backend Β· qa Β· reviewer Β· devops Β· β¦) as live panes.
|
|
11
|
+
---
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
[](https://github.com/takkub/agent-takkub/blob/main/LICENSE)
|
|
12
|
-

|
|
13
|
+
## π₯οΈ The Desktop Cockpit
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+

|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
*One window: you talk to the **Lead**, it spawns and drives specialist teammates (frontend Β· backend Β· qa Β· β¦) as live Claude Code panes.*
|
|
17
18
|
|
|
18
19
|
---
|
|
19
20
|
|
|
20
|
-
##
|
|
21
|
+
## β¨ Why agent-takkub?
|
|
21
22
|
|
|
22
|
-
|
|
23
|
-
npm install -g agent-takkub # isolated Python runtime + a Desktop icon
|
|
24
|
-
claude login # one-time auth β your Claude account
|
|
25
|
-
takkub provision # recommended plugins + browser tooling
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Then **double-click βTakkub Cockpitβ on your Desktop** β or run `agent-takkub`.
|
|
23
|
+
A single AI agent struggles with big features: context fills up, sub-tasks conflict, and everything runs serially. `agent-takkub` uses the **LeadβSpecialist pattern**: you prompt one **Lead** agent, and it delegates isolated, specialized sub-tasks to real `claude` processes running concurrently.
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
* **π§ Orchestrated teammates** β converse with the Lead; it spawns, tasks, and manages specialist panes (`frontend`, `backend`, `qa`, `reviewer`, `devops`, β¦) on demand.
|
|
26
|
+
* **π True parallelism** β `frontend` and `backend` build features concurrently; QA always verifies last, against the real stack.
|
|
27
|
+
* **πΏ Branch & worktree isolation** β parallel teammates each work on their own git branch in an isolated worktree. No commit races, no dirty-state collisions; you merge when ready.
|
|
28
|
+
* **π₯ Fleet mode** β one toggle scales a role into a fleet (`frontend#1β¦#K`) sized to your machine, for independent features or sharded test suites.
|
|
29
|
+
* **π₯οΈ Steerable processes** β every pane is a live `claude` shell. Watch output in real time, interrupt, or type directly into any teammate.
|
|
30
|
+
* **ποΈ Multi-project tabs** β one isolated Lead per project; no cross-talk.
|
|
31
|
+
* **π 100% local** β no SaaS middleware. Runs on your machine, on your logged-in Claude Code CLI.
|
|
33
32
|
|
|
34
33
|
---
|
|
35
34
|
|
|
36
|
-
##
|
|
37
|
-
|
|
38
|
-
- **π§ One Lead, many specialists** β talk to the Lead; it spawns the right roles on demand.
|
|
39
|
-
- **π Real parallelism** β independent features fan out across panes; QA always runs last.
|
|
40
|
-
- **πΏ Worktree isolation** β parallel agents each work on their own git branch + worktree; you merge when ready, never a commit race.
|
|
41
|
-
- **π₯ Multi mode** β one toggle turns β1 agent per roleβ into a fleet (`frontend#1β¦#K`) sized to your machine.
|
|
42
|
-
- **π₯οΈ Live, steerable panes** β every teammate is a real `claude` process you can watch and interrupt.
|
|
43
|
-
- **ποΈ Multi-project tabs** β one isolated Lead per project, no cross-talk.
|
|
44
|
-
- **π§© Batteries included** β Playwright browser automation, curated skill plugins, session memory, decision logs, a self-diagnosing Doctor.
|
|
45
|
-
- **π Local-first** β no SaaS, nothing leaves your machine; runs on your logged-in `claude`.
|
|
35
|
+
## β‘ Quick Start
|
|
46
36
|
|
|
47
|
-
|
|
37
|
+
```bash
|
|
38
|
+
# 1. Install the cockpit globally (isolated Python runtime + Desktop icon)
|
|
39
|
+
npm install -g agent-takkub
|
|
48
40
|
|
|
49
|
-
|
|
41
|
+
# 2. Authenticate with your Claude account (if not already done)
|
|
42
|
+
claude login
|
|
50
43
|
|
|
44
|
+
# 3. Provision recommended plugins + browser automation tools
|
|
45
|
+
takkub provision
|
|
51
46
|
```
|
|
52
|
-
|
|
53
|
-
|
|
47
|
+
|
|
48
|
+
Then double-click **Takkub Cockpit** on your Desktop β or run:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agent-takkub
|
|
54
52
|
```
|
|
55
53
|
|
|
56
|
-
|
|
57
|
-
|
|
54
|
+
> **Requirements:** Node.js β₯ 18 and Python β₯ 3.11 on your system β *detected, never reinstalled.*
|
|
55
|
+
> Everything else lives in an isolated `~/.agent-takkub`; your existing `claude` CLI, plugins, and config are left untouched.
|
|
58
56
|
|
|
59
57
|
---
|
|
60
58
|
|
|
61
|
-
##
|
|
59
|
+
## π Orchestration Flow
|
|
60
|
+
|
|
61
|
+
```mermaid
|
|
62
|
+
sequenceDiagram
|
|
63
|
+
actor User
|
|
64
|
+
participant Lead as Lead Agent
|
|
65
|
+
participant Cockpit as Cockpit Engine
|
|
66
|
+
participant Spec as Specialist Pane(s)
|
|
67
|
+
participant Git as Git Repository
|
|
68
|
+
|
|
69
|
+
User->>Lead: "Build the login feature"
|
|
70
|
+
Lead->>Cockpit: takkub assign --role frontend / backend (parallel)
|
|
71
|
+
Cockpit->>Git: create isolated branch + worktree (optional)
|
|
72
|
+
Cockpit->>Spec: spawn claude pane + inject task
|
|
73
|
+
Note over Spec: teammates code & test independently
|
|
74
|
+
Spec->>Cockpit: takkub done "report"
|
|
75
|
+
Cockpit->>Lead: done notice β verify sequence (devops β QA last)
|
|
76
|
+
Lead->>Git: review + merge branches, propose ship
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
---
|
|
62
80
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
|
66
|
-
|
|
|
67
|
-
| `takkub assign --role
|
|
68
|
-
| `takkub
|
|
69
|
-
| `takkub
|
|
70
|
-
| `takkub
|
|
71
|
-
| `takkub
|
|
72
|
-
| `takkub
|
|
81
|
+
## π οΈ Everyday Commands
|
|
82
|
+
|
|
83
|
+
| Command | Purpose |
|
|
84
|
+
| :--- | :--- |
|
|
85
|
+
| `takkub assign --role backend "β¦"` | Spawn a specialist and assign a task |
|
|
86
|
+
| `takkub assign --role frontend --isolation worktree "β¦"` | Task on an isolated git branch + worktree |
|
|
87
|
+
| `takkub assign --role qa --plan --shards 4 "β¦"` | Plan-first parallel browser QA (auto fan-out) |
|
|
88
|
+
| `takkub worktree list / merge / clean` | Review + merge isolated branches |
|
|
89
|
+
| `takkub send --to qa "β¦"` | Message a teammate (Lead CCβd) |
|
|
90
|
+
| `takkub goal "β¦"` | Set a session goal injected into every task |
|
|
91
|
+
| `takkub restart` | Restart the whole cockpit from the terminal |
|
|
92
|
+
| `takkub doctor --fix` | Diagnose the environment + auto-repair |
|
|
93
|
+
| `takkub provision` | Install / repair plugins + browser tools |
|
|
73
94
|
|
|
74
95
|
---
|
|
75
96
|
|
|
76
|
-
##
|
|
97
|
+
## π Deep Dives & Resources
|
|
98
|
+
|
|
99
|
+
- ποΈ **Architecture & design** β [Architecture Guide](https://github.com/takkub/agent-takkub/blob/main/docs/ARCHITECTURE.md)
|
|
100
|
+
- βοΈ **System overview & flow diagrams** β [docs/system-overview](https://github.com/takkub/agent-takkub/tree/main/docs/system-overview)
|
|
101
|
+
- π§ **From source / one-shot installer** (Chrome, gh, codex, rtk, β¦) β [INSTALL.md](https://github.com/takkub/agent-takkub/blob/main/docs/INSTALL.md)
|
|
102
|
+
- π **GitHub** β [takkub/agent-takkub](https://github.com/takkub/agent-takkub)
|
|
77
103
|
|
|
78
|
-
|
|
79
|
-
- **Architecture & flow diagrams** β [docs/system-overview](https://github.com/takkub/agent-takkub/tree/main/docs/system-overview)
|
|
80
|
-
- **How itβs built** β [docs/ARCHITECTURE.md](https://github.com/takkub/agent-takkub/blob/main/docs/ARCHITECTURE.md)
|
|
81
|
-
- **From source / one-shot installer** (Chrome, gh, codex, rtk, β¦) β [docs/INSTALL.md](https://github.com/takkub/agent-takkub/blob/main/docs/INSTALL.md)
|
|
104
|
+
---
|
|
82
105
|
|
|
83
|
-
<div align="center"
|
|
106
|
+
<div align="center">
|
|
107
|
+
<sub>Windows & macOS β’ built on PyQt6 β’ powered by the Claude Code CLI β’ MIT</sub>
|
|
108
|
+
</div>
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-takkub",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"npm/",
|
|
33
33
|
"dist/*.whl",
|
|
34
34
|
"assets/icon.ico",
|
|
35
|
-
"assets/icon.png"
|
|
35
|
+
"assets/icon.png",
|
|
36
|
+
"assets/cockpit-main.png"
|
|
36
37
|
],
|
|
37
38
|
"os": [
|
|
38
39
|
"win32",
|