glab-agent 0.2.9 → 0.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glab-agent",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "type": "module",
5
5
  "description": "Multi-agent GitLab To-Do watcher with YAML-defined agents, skills, and GitLab registry.",
6
6
  "license": "MIT",
@@ -919,7 +919,7 @@ export async function runConcurrentWatcherCycle(
919
919
  }
920
920
 
921
921
  // Set up progress callback for webhook and/or feishu card updates
922
- if ((config.webhookUrl || dependencies.feishuClient) && spawnedRun.onProgress !== undefined) {
922
+ if (config.webhookUrl || dependencies.feishuClient) {
923
923
  const agentName = config.agentDefinition?.name ?? "agent";
924
924
  const issueRef = `#${issue.iid}`;
925
925
  const capturedIssueIid = issue.iid;