a tool to help your Letta AI agents navigate bluesky

Fix typo: "current" to "currently" in sleep messages

+1 -1
tasks/checkBluesky.ts
··· 43 if (delay !== 0) { 44 setTimeout(checkBluesky, delay); 45 console.log( 46 - `🔹 ${agentContext.agentBskyName} is current asleep. scheduling next bluesky session for ${ 47 (delay / 1000 / 60 / 60).toFixed(2) 48 } hours from now…`, 49 );
··· 43 if (delay !== 0) { 44 setTimeout(checkBluesky, delay); 45 console.log( 46 + `🔹 ${agentContext.agentBskyName} is currently asleep. scheduling next bluesky session for ${ 47 (delay / 1000 / 60 / 60).toFixed(2) 48 } hours from now…`, 49 );
+1 -1
tasks/checkNotifications.ts
··· 32 if (delay !== 0) { 33 setTimeout(checkNotifications, delay); 34 console.log( 35 - `🔹 ${agentContext.agentBskyName} is current asleep. scheduling next notification check for ${ 36 (delay / 1000 / 60 / 60).toFixed(2) 37 } hours from now…`, 38 );
··· 32 if (delay !== 0) { 33 setTimeout(checkNotifications, delay); 34 console.log( 35 + `🔹 ${agentContext.agentBskyName} is currently asleep. scheduling next notification check for ${ 36 (delay / 1000 / 60 / 60).toFixed(2) 37 } hours from now…`, 38 );
+1 -1
tasks/logStats.ts
··· 30 if (delay !== 0) { 31 setTimeout(logStats, delay); 32 console.log( 33 - `${agentContext.agentBskyName} is current asleep. scheduling next stat log for ${ 34 (delay / 1000 / 60 / 60).toFixed(2) 35 } hours from now…`, 36 );
··· 30 if (delay !== 0) { 31 setTimeout(logStats, delay); 32 console.log( 33 + `🔹 ${agentContext.agentBskyName} is currently asleep. scheduling next stat log for ${ 34 (delay / 1000 / 60 / 60).toFixed(2) 35 } hours from now…`, 36 );
+1 -1
tasks/logTasks.ts
··· 33 if (delay !== 0) { 34 setTimeout(logTasks, delay); 35 console.log( 36 - `🔹 ${agentContext.agentBskyName} is current asleep. scheduling next task log for ${ 37 (delay / 1000 / 60 / 60).toFixed(2) 38 } hours from now…`, 39 );
··· 33 if (delay !== 0) { 34 setTimeout(logTasks, delay); 35 console.log( 36 + `🔹 ${agentContext.agentBskyName} is currently asleep. scheduling next task log for ${ 37 (delay / 1000 / 60 / 60).toFixed(2) 38 } hours from now…`, 39 );
+1 -1
tasks/runReflection.ts
··· 44 if (delay !== 0) { 45 setTimeout(runReflection, delay); 46 console.log( 47 - `🔹 ${agentContext.agentBskyName} is current asleep. scheduling next reflection for ${ 48 (delay / 1000 / 60 / 60).toFixed(2) 49 } hours from now…`, 50 );
··· 44 if (delay !== 0) { 45 setTimeout(runReflection, delay); 46 console.log( 47 + `🔹 ${agentContext.agentBskyName} is currently asleep. scheduling next reflection for ${ 48 (delay / 1000 / 60 / 60).toFixed(2) 49 } hours from now…`, 50 );