Merge remote-tracking branch 'substream/feat/gmail-fixes' into feat/dmg-cyrus

This commit is contained in:
M3gA-Mind
2026-03-12 01:41:05 +05:30
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -22,7 +22,7 @@
"android:build": "tauri android build",
"test": "vitest run",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:watch": "vi13:17:20.609 ERROR [skill:gmail] start() failed: start() timed out after 30s\ntest",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:rust": "source $HOME/.cargo/env 2>/dev/null; cargo test --manifest-path src-tauri/Cargo.toml",
+1 -1
View File
@@ -338,7 +338,7 @@ async fn spawn_state_writer(
_ = interval.tick() => {
event_count += 1;
if event_count % 12 == 1 { // Log every minute (12 * 5s = 60s)
log::info!("[alphahuman] Health monitoring active (event #{})", event_count);
// log::info!("[alphahuman] Health monitoring active (event #{})", event_count);
}
},
_ = cancel.cancelled() => {
+1
View File
@@ -447,6 +447,7 @@ const Conversations = () => {
toolArgs
);
const result = await skillManager.callTool(skillId, toolName, toolArgs);
console.log(`[Conversations] tool "${toolName}" calling result:`, result);
toolResultContent = result.content.map(c => c.text).join('\n');
let toolReturnedError = result.isError;
if (!toolReturnedError && toolResultContent) {