@kendoo.agentdesk/agentdesk 0.9.15 → 0.9.16

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 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: \x1b[38;2;45;212;191mhttps://agentdesk.live\x1b[0m
88
+ Dashboard: \x1b[36mhttps://agentdesk.live\x1b[0m
89
89
  `);
90
90
  process.exit(0);
91
91
  }
package/cli/team.mjs CHANGED
@@ -30,7 +30,7 @@ function loadDotEnv(dir) {
30
30
  }
31
31
 
32
32
  export async function runTeam(taskId, opts = {}) {
33
- const teal = "\x1b[38;2;45;212;191m";
33
+ const cyan = "\x1b[36m";
34
34
  const reset = "\x1b[0m";
35
35
 
36
36
  const cwd = opts.cwd || process.cwd();
@@ -82,9 +82,9 @@ export async function runTeam(taskId, opts = {}) {
82
82
  }
83
83
  if (tracker) console.log(`Tracker: ${tracker}`);
84
84
  if (taskLink) {
85
- console.log(`Task: ${teal}${taskLink}${reset}`);
85
+ console.log(`Task: ${cyan}${taskLink}${reset}`);
86
86
  } else if (tracker === "jira" && config.jira?.baseUrl) {
87
- console.log(`Jira: ${teal}${config.jira.baseUrl}${reset}`);
87
+ console.log(`Jira: ${cyan}${config.jira.baseUrl}${reset}`);
88
88
  }
89
89
 
90
90
  // Resolve team and generate dynamic prompt sections
@@ -161,7 +161,7 @@ export async function runTeam(taskId, opts = {}) {
161
161
  vizConnected = true;
162
162
  if (!sessionStartSent) {
163
163
  console.log("AgentDesk: connected");
164
- console.log(`Dashboard: ${teal}${agentdeskServer}${reset}`);
164
+ console.log(`Dashboard: ${cyan}${agentdeskServer}${reset}`);
165
165
  } else {
166
166
  console.log("AgentDesk: reconnected");
167
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.9.15",
3
+ "version": "0.9.16",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {