@kendoo.agentdesk/agentdesk 0.9.13 → 0.9.14
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/bin/agentdesk.mjs +1 -1
- package/cli/team.mjs +9 -2
- package/package.json +1 -1
package/bin/agentdesk.mjs
CHANGED
|
@@ -85,7 +85,7 @@ if (!command || command === "help" || command === "--help") {
|
|
|
85
85
|
agentdesk team -d "Fix the checkout total calculation"
|
|
86
86
|
agentdesk team -d "Add Google OAuth to the login page"
|
|
87
87
|
|
|
88
|
-
Dashboard:
|
|
88
|
+
Dashboard: \x1b[38;2;45;212;191mhttps://agentdesk.live\x1b[0m
|
|
89
89
|
`);
|
|
90
90
|
process.exit(0);
|
|
91
91
|
}
|
package/cli/team.mjs
CHANGED
|
@@ -30,6 +30,9 @@ function loadDotEnv(dir) {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export async function runTeam(taskId, opts = {}) {
|
|
33
|
+
const teal = "\x1b[38;2;45;212;191m";
|
|
34
|
+
const reset = "\x1b[0m";
|
|
35
|
+
|
|
33
36
|
const cwd = opts.cwd || process.cwd();
|
|
34
37
|
const description = opts.description || "";
|
|
35
38
|
|
|
@@ -78,7 +81,11 @@ export async function runTeam(taskId, opts = {}) {
|
|
|
78
81
|
}
|
|
79
82
|
}
|
|
80
83
|
if (tracker) console.log(`Tracker: ${tracker}`);
|
|
81
|
-
if (taskLink)
|
|
84
|
+
if (taskLink) {
|
|
85
|
+
console.log(`Task: ${teal}${taskLink}${reset}`);
|
|
86
|
+
} else if (tracker === "jira" && config.jira?.baseUrl) {
|
|
87
|
+
console.log(`Jira: ${teal}${config.jira.baseUrl}${reset}`);
|
|
88
|
+
}
|
|
82
89
|
|
|
83
90
|
// Resolve team and generate dynamic prompt sections
|
|
84
91
|
const team = resolveTeam(config);
|
|
@@ -154,7 +161,7 @@ export async function runTeam(taskId, opts = {}) {
|
|
|
154
161
|
vizConnected = true;
|
|
155
162
|
if (!sessionStartSent) {
|
|
156
163
|
console.log("AgentDesk: connected");
|
|
157
|
-
console.log(`Dashboard: ${agentdeskServer}`);
|
|
164
|
+
console.log(`Dashboard: ${teal}${agentdeskServer}${reset}`);
|
|
158
165
|
} else {
|
|
159
166
|
console.log("AgentDesk: reconnected");
|
|
160
167
|
}
|