@kendoo.agentdesk/agentdesk 0.10.4 → 0.10.5

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.
@@ -94,7 +94,19 @@ export async function runOrchestrator({
94
94
  onToolUse({ agent, tool, description }) { totalSteps++; emit({ type: "tool:use", agent, tool, description }); },
95
95
  onToolResult({ success, summary }) { emit({ type: "tool:result", success, summary }); },
96
96
  onSessionUpdate({ taskId: newTaskId, title }) {
97
- if (newTaskId) emit({ type: "session:update", taskId: newTaskId });
97
+ if (newTaskId) {
98
+ const update = { type: "session:update", taskId: newTaskId };
99
+ // Build a clickable task link from tracker config
100
+ if (tracker === "linear" && config.linear?.workspace) {
101
+ update.taskLink = `https://linear.app/${config.linear.workspace}/issue/${newTaskId}`;
102
+ } else if (tracker === "jira" && config.jira?.baseUrl) {
103
+ update.taskLink = `${config.jira.baseUrl.replace(/\/+$/, "")}/browse/${newTaskId}`;
104
+ } else if (tracker === "github") {
105
+ const repo = config.github?.repo || "";
106
+ if (repo) update.taskLink = `https://github.com/${repo}/issues/${newTaskId}`;
107
+ }
108
+ emit(update);
109
+ }
98
110
  if (title) emit({ type: "session:update", title });
99
111
  },
100
112
  onSessionEnd({ duration, steps, inputTokens, outputTokens }) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kendoo.agentdesk/agentdesk",
3
- "version": "0.10.4",
3
+ "version": "0.10.5",
4
4
  "description": "AI team orchestrator for Claude Code — run collaborative agent sessions from your terminal",
5
5
  "type": "module",
6
6
  "bin": {