agent-takkub 1.0.0 → 1.0.2

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
@@ -7,7 +7,11 @@
7
7
  You direct a **Lead**; the Lead orchestrates specialist teammates
8
8
  (frontend · backend · qa · reviewer · devops · …) as live panes.
9
9
 
10
- `Windows` · `macOS` · runs entirely on your machine
10
+ [![npm](https://img.shields.io/npm/v/agent-takkub)](https://www.npmjs.com/package/agent-takkub)
11
+ [![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/takkub/agent-takkub/blob/main/LICENSE)
12
+ ![platforms](https://img.shields.io/badge/platform-Windows%20%7C%20macOS-blue)
13
+
14
+ `runs entirely on your machine`
11
15
 
12
16
  </div>
13
17
 
@@ -33,9 +37,11 @@ Then **double-click “Takkub Cockpit” on your Desktop** — or run `agent-tak
33
37
 
34
38
  - **🧠 One Lead, many specialists** — talk to the Lead; it spawns the right roles on demand.
35
39
  - **🔀 Real parallelism** — independent features fan out across panes; QA always runs last.
36
- - **🖥️ Live, steerable panes** — every teammate is a real `claude` process you can watch.
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.
37
43
  - **🗂️ Multi-project tabs** — one isolated Lead per project, no cross-talk.
38
- - **🧩 Batteries included** — Playwright browser automation, curated skill plugins, session memory, decision logs.
44
+ - **🧩 Batteries included** — Playwright browser automation, curated skill plugins, session memory, decision logs, a self-diagnosing Doctor.
39
45
  - **🔒 Local-first** — no SaaS, nothing leaves your machine; runs on your logged-in `claude`.
40
46
 
41
47
  ---
@@ -57,15 +63,21 @@ their results, runs verification, and proposes the ship — you stay in control.
57
63
  | Command | |
58
64
  |---|---|
59
65
  | `takkub assign --role backend "…"` | spawn + task a teammate |
66
+ | `takkub assign --role frontend --isolation worktree "…"` | task on an isolated git branch |
67
+ | `takkub assign --role qa --plan --shards 4 "…"` | plan-first parallel browser QA |
68
+ | `takkub worktree list / merge / clean` | review + merge isolated branches |
60
69
  | `takkub send --to qa "…"` | message a peer (Lead CC’d) |
70
+ | `takkub restart` | restart the whole cockpit from the terminal |
71
+ | `takkub doctor` | diagnose the environment (`--fix` auto-repairs) |
61
72
  | `takkub provision` | install / repair plugins + browser tools |
62
- | `takkub doctor` | diagnose the environment |
63
73
 
64
74
  ---
65
75
 
66
76
  ## More
67
77
 
68
- - **Architecture & flow diagrams** — [`docs/system-overview/`](docs/system-overview/)
69
- - **From source / one-shot installer** (Chrome, gh, codex, rtk, …) — [`docs/INSTALL.md`](docs/INSTALL.md)
78
+ - **GitHub** — [takkub/agent-takkub](https://github.com/takkub/agent-takkub)
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)
70
82
 
71
- <div align="center"><sub>Windows + macOS · built on PyQt6 · powered by the Claude Code CLI</sub></div>
83
+ <div align="center"><sub>Windows + macOS · built on PyQt6 · powered by the Claude Code CLI · MIT</sub></div>
package/package.json CHANGED
@@ -1,37 +1,45 @@
1
- {
2
- "name": "agent-takkub",
3
- "version": "1.0.0",
4
- "description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS)",
5
- "keywords": [
6
- "claude",
7
- "claude-code",
8
- "ai-agents",
9
- "agent-orchestration",
10
- "cockpit",
11
- "desktop",
12
- "cli",
13
- "developer-tools"
14
- ],
15
- "author": "takkub",
16
- "bin": {
17
- "agent-takkub": "npm/bin/agent-takkub.js",
18
- "takkub": "npm/bin/takkub.js"
19
- },
20
- "scripts": {
21
- "postinstall": "node npm/scripts/postinstall.js"
22
- },
23
- "files": [
24
- "npm/",
25
- "dist/*.whl",
26
- "assets/icon.ico",
27
- "assets/icon.png"
28
- ],
29
- "os": [
30
- "win32",
31
- "darwin"
32
- ],
33
- "engines": {
34
- "node": ">=18"
35
- },
36
- "license": "MIT"
37
- }
1
+ {
2
+ "name": "agent-takkub",
3
+ "version": "1.0.2",
4
+ "description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS)",
5
+ "keywords": [
6
+ "claude",
7
+ "claude-code",
8
+ "ai-agents",
9
+ "agent-orchestration",
10
+ "cockpit",
11
+ "desktop",
12
+ "cli",
13
+ "developer-tools"
14
+ ],
15
+ "author": "takkub",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/takkub/agent-takkub.git"
19
+ },
20
+ "homepage": "https://github.com/takkub/agent-takkub#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/takkub/agent-takkub/issues"
23
+ },
24
+ "bin": {
25
+ "agent-takkub": "npm/bin/agent-takkub.js",
26
+ "takkub": "npm/bin/takkub.js"
27
+ },
28
+ "scripts": {
29
+ "postinstall": "node npm/scripts/postinstall.js"
30
+ },
31
+ "files": [
32
+ "npm/",
33
+ "dist/*.whl",
34
+ "assets/icon.ico",
35
+ "assets/icon.png"
36
+ ],
37
+ "os": [
38
+ "win32",
39
+ "darwin"
40
+ ],
41
+ "engines": {
42
+ "node": ">=18"
43
+ },
44
+ "license": "MIT"
45
+ }