eagle-mem 1.5.0 → 1.5.1
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/hooks/session-start.sh +1 -1
- package/package.json +1 -1
package/hooks/session-start.sh
CHANGED
|
@@ -165,7 +165,7 @@ fi
|
|
|
165
165
|
|
|
166
166
|
synced_tasks=$(eagle_db "SELECT subject, status FROM claude_tasks
|
|
167
167
|
WHERE project = '$(eagle_sql_escape "$project")'
|
|
168
|
-
AND status IN ('in_progress', 'pending'
|
|
168
|
+
AND status IN ('in_progress', 'pending')
|
|
169
169
|
AND updated_at > datetime('now', '-7 days')
|
|
170
170
|
ORDER BY updated_at DESC LIMIT 5;")
|
|
171
171
|
if [ -n "$synced_tasks" ]; then
|