@kendoo.agentdesk/agentdesk 0.9.21 → 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/cli/login.mjs +1 -1
- package/package.json +18 -1
package/cli/login.mjs
CHANGED
|
@@ -108,7 +108,7 @@ export async function runLogin() {
|
|
|
108
108
|
writeFileSync(CREDENTIALS_PATH, JSON.stringify({ apiKey, name, savedAt: Date.now() }, null, 2), { mode: 0o600 });
|
|
109
109
|
|
|
110
110
|
res.writeHead(200, { "Content-Type": "text/html" });
|
|
111
|
-
res.end(`<html><body style="background:#
|
|
111
|
+
res.end(`<html><body style="background:#251e44;color:#fff8f0;font-family:system-ui;display:flex;align-items:center;justify-content:center;height:100vh;margin:0"><div style="text-align:center"><h2 style="color:#ff8811">Logged in to AgentDesk</h2><p>You can close this tab and return to your terminal.</p></div></body></html>`);
|
|
112
112
|
|
|
113
113
|
console.log(` Logged in as ${name || "user"}`);
|
|
114
114
|
console.log(` API key saved to ~/.agentdesk/credentials.json`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kendoo.agentdesk/agentdesk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,10 +24,26 @@
|
|
|
24
24
|
"test": "node --test tests/server.test.mjs tests/agents.test.mjs tests/homepage.test.mjs"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
28
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
29
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
30
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
31
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
32
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
33
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
34
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
35
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
36
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
37
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
27
38
|
"bcryptjs": "^3.0.3",
|
|
39
|
+
"class-variance-authority": "^0.7.1",
|
|
40
|
+
"clsx": "^2.1.1",
|
|
28
41
|
"express": "^5.1.0",
|
|
29
42
|
"jsonwebtoken": "^9.0.3",
|
|
43
|
+
"next-themes": "^0.4.6",
|
|
44
|
+
"sonner": "^2.0.7",
|
|
30
45
|
"sql.js": "^1.14.1",
|
|
46
|
+
"tailwind-merge": "^3.5.0",
|
|
31
47
|
"ws": "^8.18.0"
|
|
32
48
|
},
|
|
33
49
|
"devDependencies": {
|
|
@@ -39,6 +55,7 @@
|
|
|
39
55
|
"react": "^19.1.0",
|
|
40
56
|
"react-dom": "^19.1.0",
|
|
41
57
|
"tailwindcss": "^3.4.17",
|
|
58
|
+
"typescript": "^6.0.2",
|
|
42
59
|
"vite": "^6.3.5"
|
|
43
60
|
},
|
|
44
61
|
"keywords": [
|