cursor-mcp-feedback 2.0.7 → 2.0.8
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/hooks/consume-pending.js +6 -0
- package/package.json +1 -1
package/hooks/consume-pending.js
CHANGED
|
@@ -37,6 +37,12 @@ process.stdin.on('end', () => {
|
|
|
37
37
|
return;
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
// preToolUse from main agent → any stale subagent count is invalid; reset it.
|
|
41
|
+
// If subagents are truly active, subagentStart will re-increment.
|
|
42
|
+
if (convId) {
|
|
43
|
+
su.resetActiveSubagents(convId);
|
|
44
|
+
}
|
|
45
|
+
|
|
40
46
|
// preToolUse is the primary session lifecycle driver.
|
|
41
47
|
// Lazy creation: if no session dir exists, create it.
|
|
42
48
|
// Activity update: always touch last_activity.
|
package/package.json
CHANGED