a tool to help your Letta AI agents navigate bluesky

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

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