@kendoo.agentdesk/agentdesk 0.10.1 → 0.10.3

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 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:#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>`);
111
+ res.end(`<html><body style="background:#011627;color:#fdfffc;font-family:system-ui;display:flex;align-items:center;justify-content:center;height:100vh;margin:0"><div style="text-align:center"><h2 style="color:#2ec4b6">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`);
@@ -87,7 +87,7 @@ export async function runOrchestrator({
87
87
  child.stdin.end();
88
88
 
89
89
  const { parseLine } = createStreamParser({
90
- teamNames: teamSections.names,
90
+ teamNames: soloAgent ? [soloAgent] : teamSections.names,
91
91
  callbacks: {
92
92
  onPhaseChange({ phase }) { emit({ type: "phase:change", phase }); },
93
93
  onAgentMessage({ agent, tag, message }) { emit({ type: "agent:message", agent, tag, message }); },
package/cli/prompt.mjs CHANGED
@@ -156,6 +156,8 @@ export function buildSoloPrompt({ agentName, taskId, description, tracker, confi
156
156
  if (config.jira?.baseUrl) {
157
157
  trackerSection = trackerSection.replace(/\{\{JIRA_BASE_URL\}\}/g, config.jira.baseUrl.replace(/\/+$/, ""));
158
158
  }
159
+ // Replace hardcoded "Jane" references from team prompt with the solo agent name
160
+ trackerSection = trackerSection.replace(/\bJane\b/g, agentName);
159
161
  lines.push(trackerSection);
160
162
  }
161
163
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.10.1",
3
+ "version": "0.10.3",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {