agent-takkub 2.0.7 → 2.1.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.
|
Binary file
|
|
@@ -139,6 +139,14 @@ function main() {
|
|
|
139
139
|
/* best-effort — a missing shortcut never fails the install */
|
|
140
140
|
}
|
|
141
141
|
console.log(' Left untouched: ~/.claude plugins, ~/.takkub config (nothing overwritten).');
|
|
142
|
+
// #574: the migration itself never runs here (postinstall stays a plain
|
|
143
|
+
// Python/venv/npm bootstrap) — just set expectations before the first
|
|
144
|
+
// real boot does it, since that boot backs up first and can take a
|
|
145
|
+
// couple of minutes on an existing, populated data directory.
|
|
146
|
+
console.log(
|
|
147
|
+
'\n ℹ First boot after this install will move your data to the new storage layout —'
|
|
148
|
+
);
|
|
149
|
+
console.log(' it backs up everything first, so this is safe to let run.');
|
|
142
150
|
console.log('\n Next steps:');
|
|
143
151
|
if (!claudeOk) {
|
|
144
152
|
console.log(' • install the claude CLI: npm i -g @anthropic-ai/claude-code');
|
package/package.json
CHANGED
|
@@ -1,50 +1,50 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agent-takkub",
|
|
3
|
-
"version": "2.0
|
|
4
|
-
"description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS). Install globally: npm i -g agent-takkub",
|
|
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
|
-
"prepublishOnly": "node npm/scripts/preflight-publish.js",
|
|
31
|
-
"test": "node --test npm/scripts/*.test.js"
|
|
32
|
-
},
|
|
33
|
-
"files": [
|
|
34
|
-
"npm/",
|
|
35
|
-
"!npm/scripts/*.test.js",
|
|
36
|
-
"dist/*.whl",
|
|
37
|
-
"assets/icon.ico",
|
|
38
|
-
"assets/icon.png",
|
|
39
|
-
"assets/cockpit-main.png"
|
|
40
|
-
],
|
|
41
|
-
"os": [
|
|
42
|
-
"win32",
|
|
43
|
-
"darwin"
|
|
44
|
-
],
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": ">=18"
|
|
47
|
-
},
|
|
48
|
-
"engines-note": "This floor is for agent-takkub itself. The OPTIONAL graft code-intelligence feature (installed separately via `takkub doctor --fix`, not an npm dependency of this package) needs Node >=20 — see README's Requirements section. Not raised here because it would force the >=20 floor onto every user even though graft stays off until explicitly enabled.",
|
|
49
|
-
"license": "MIT"
|
|
50
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-takkub",
|
|
3
|
+
"version": "2.1.0",
|
|
4
|
+
"description": "Desktop cockpit for orchestrating a team of Claude Code agents (Windows + macOS). Install globally: npm i -g agent-takkub",
|
|
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
|
+
"prepublishOnly": "node npm/scripts/preflight-publish.js",
|
|
31
|
+
"test": "node --test npm/scripts/*.test.js"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"npm/",
|
|
35
|
+
"!npm/scripts/*.test.js",
|
|
36
|
+
"dist/*.whl",
|
|
37
|
+
"assets/icon.ico",
|
|
38
|
+
"assets/icon.png",
|
|
39
|
+
"assets/cockpit-main.png"
|
|
40
|
+
],
|
|
41
|
+
"os": [
|
|
42
|
+
"win32",
|
|
43
|
+
"darwin"
|
|
44
|
+
],
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"engines-note": "This floor is for agent-takkub itself. The OPTIONAL graft code-intelligence feature (installed separately via `takkub doctor --fix`, not an npm dependency of this package) needs Node >=20 — see README's Requirements section. Not raised here because it would force the >=20 floor onto every user even though graft stays off until explicitly enabled.",
|
|
49
|
+
"license": "MIT"
|
|
50
|
+
}
|