agent-takkub 1.0.1 → 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
|
@@ -8,7 +8,7 @@ You direct a **Lead**; the Lead orchestrates specialist teammates
|
|
|
8
8
|
(frontend · backend · qa · reviewer · devops · …) as live panes.
|
|
9
9
|
|
|
10
10
|
[](https://www.npmjs.com/package/agent-takkub)
|
|
11
|
-
[](LICENSE)
|
|
11
|
+
[](https://github.com/takkub/agent-takkub/blob/main/LICENSE)
|
|
12
12
|

|
|
13
13
|
|
|
14
14
|
`runs entirely on your machine`
|
|
@@ -75,8 +75,9 @@ their results, runs verification, and proposes the ship — you stay in control.
|
|
|
75
75
|
|
|
76
76
|
## More
|
|
77
77
|
|
|
78
|
-
- **
|
|
79
|
-
- **
|
|
80
|
-
- **
|
|
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)
|
|
81
82
|
|
|
82
83
|
<div align="center"><sub>Windows + macOS · built on PyQt6 · powered by the Claude Code CLI · MIT</sub></div>
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,37 +1,45 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agent-takkub",
|
|
3
|
-
"version": "1.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
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
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
|
+
}
|