@link-assistant/hive-mind 1.7.1 → 1.7.2

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
+ ## 1.7.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e6a656f: Use `screen -R` instead of `screen -S` and `screen -r` in all docs and code for better session management. The `-R` flag ensures we open existing screen if created, and new if not yet created, making it the most safe and universal option.
8
+
3
9
  ## 1.7.1
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -209,7 +209,7 @@ See [docs/HELM.md](./docs/HELM.md) for detailed Helm configuration options.
209
209
  **Using Links Notation (recommended):**
210
210
 
211
211
  ```
212
- screen -S bot # Enter new screen for bot
212
+ screen -R bot # Enter new screen for bot
213
213
 
214
214
  hive-telegram-bot --configuration "
215
215
  TELEGRAM_BOT_TOKEN: '849...355:AAG...rgk_YZk...aPU'
@@ -238,7 +238,7 @@ See [docs/HELM.md](./docs/HELM.md) for detailed Helm configuration options.
238
238
  **Using individual command-line options:**
239
239
 
240
240
  ```
241
- screen -S bot # Enter new screen for bot
241
+ screen -R bot # Enter new screen for bot
242
242
 
243
243
  hive-telegram-bot --token 849...355:AAG...rgk_YZk...aPU --allowed-chats "(
244
244
  -1002975819706
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@link-assistant/hive-mind",
3
- "version": "1.7.1",
3
+ "version": "1.7.2",
4
4
  "description": "AI-powered issue solver and hive mind for collaborative problem solving",
5
5
  "main": "src/hive.mjs",
6
6
  "type": "module",
@@ -163,7 +163,7 @@ async function createOrEnterScreen(sessionName, command, args, autoTerminate = f
163
163
  // The \n at the end simulates pressing Enter
164
164
  await execAsync(`screen -S ${sessionName} -X stuff '${escapedCommand}\n'`);
165
165
  console.log(`Command sent to session '${sessionName}' successfully.`);
166
- console.log(`To attach and view the session, run: screen -r ${sessionName}`);
166
+ console.log(`To attach and view the session, run: screen -R ${sessionName}`);
167
167
  } catch (error) {
168
168
  console.error('Failed to send command to existing screen session:', error.message);
169
169
  console.error('You may need to terminate the old session and try again.');
@@ -208,7 +208,7 @@ async function createOrEnterScreen(sessionName, command, args, autoTerminate = f
208
208
  } else {
209
209
  console.log('Session will remain active after command completes');
210
210
  }
211
- console.log(`To attach to this session, run: screen -r ${sessionName}`);
211
+ console.log(`To attach to this session, run: screen -R ${sessionName}`);
212
212
  } catch (error) {
213
213
  console.error('Failed to create screen session:', error.message);
214
214
  process.exit(1);
@@ -654,7 +654,7 @@ async function executeAndUpdateMessage(ctx, startingMessage, commandName, args,
654
654
  if (result.warning) return safeEdit(`⚠️ ${result.warning}`);
655
655
 
656
656
  if (result.success) {
657
- const match = result.output.match(/session:\s*(\S+)/i) || result.output.match(/screen -r\s+(\S+)/);
657
+ const match = result.output.match(/session:\s*(\S+)/i) || result.output.match(/screen -R\s+(\S+)/);
658
658
  const session = match ? match[1] : 'unknown';
659
659
  await safeEdit(`✅ ${commandName.charAt(0).toUpperCase() + commandName.slice(1)} command started successfully!\n\n📊 Session: \`${session}\`\n\n${infoBlock}`);
660
660
  } else {
@@ -34,22 +34,22 @@ import { getCachedClaudeLimits, getCachedGitHubLimits, getCachedMemoryInfo, getC
34
34
  export const QUEUE_CONFIG = {
35
35
  // Resource thresholds (usage ratios: 0.0 - 1.0)
36
36
  // All thresholds use >= comparison (inclusive)
37
- RAM_THRESHOLD: 0.5, // Stop if RAM usage >= 50%
37
+ RAM_THRESHOLD: 0.65, // Stop if RAM usage >= 65%
38
38
  // CPU threshold uses 5-minute load average, not instantaneous CPU usage
39
- CPU_THRESHOLD: 0.5, // Stop if 5-minute load average >= 50% of CPU count
39
+ CPU_THRESHOLD: 0.75, // Stop if 5-minute load average >= 75% of CPU count
40
40
  DISK_THRESHOLD: 0.95, // One-at-a-time if disk usage >= 95%
41
41
 
42
42
  // API limit thresholds (usage ratios: 0.0 - 1.0)
43
43
  // All thresholds use >= comparison (inclusive)
44
- CLAUDE_5_HOUR_SESSION_THRESHOLD: 0.9, // Stop if 5-hour limit >= 90%
45
- CLAUDE_WEEKLY_THRESHOLD: 0.99, // One-at-a-time if weekly limit >= 99%
44
+ CLAUDE_5_HOUR_SESSION_THRESHOLD: 0.85, // Stop if 5-hour limit >= 85%
45
+ CLAUDE_WEEKLY_THRESHOLD: 0.98, // One-at-a-time if weekly limit >= 98%
46
46
  GITHUB_API_THRESHOLD: 0.8, // Stop if GitHub >= 80% with parallel claude
47
47
 
48
48
  // Timing
49
49
  // MIN_START_INTERVAL_MS: Time to allow solve command to start actual claude process
50
50
  // This ensures that when API limits are checked, the running process is counted
51
- MIN_START_INTERVAL_MS: 120000, // 2 minutes between starts (was 1 minute)
52
- CONSUMER_POLL_INTERVAL_MS: 60000, // 1 minute between queue checks (was 5 seconds)
51
+ MIN_START_INTERVAL_MS: 60000, // 1 minutes between starts
52
+ CONSUMER_POLL_INTERVAL_MS: 60000, // 1 minute between queue checks
53
53
  MESSAGE_UPDATE_INTERVAL_MS: 60000, // 1 minute between status message updates
54
54
 
55
55
  // Process detection
@@ -758,7 +758,7 @@ export class SolveQueue {
758
758
  // Extract session name from result
759
759
  let sessionName = 'unknown';
760
760
  if (result && result.output) {
761
- const sessionMatch = result.output.match(/session:\s*(\S+)/i) || result.output.match(/screen -r\s+(\S+)/);
761
+ const sessionMatch = result.output.match(/session:\s*(\S+)/i) || result.output.match(/screen -R\s+(\S+)/);
762
762
  if (sessionMatch) sessionName = sessionMatch[1];
763
763
  }
764
764