@link-assistant/hive-mind 2.0.18 → 2.0.19

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @link-assistant/hive-mind
2
2
 
3
+ ## 2.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 8061979: Preserve per-command isolation overrides for queued Telegram solve commands.
8
+
3
9
  ## 2.0.18
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "2.0.18",
3
+ "version": "2.0.19",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -58,6 +58,8 @@ class SolveQueueItem {
58
58
  this.requester = options.requester;
59
59
  this.infoBlock = options.infoBlock;
60
60
  this.tool = options.tool || 'claude';
61
+ // Issue #1983: preserve per-command isolation through queued execution.
62
+ this.perCommandIsolation = options.perCommandIsolation || null;
61
63
  // Issue #1688: keep parsed URL context (owner/repo/number/type) so completion
62
64
  // notifications can look up linked PRs for issue URLs.
63
65
  this.urlContext = options.urlContext || null;