mirror of
https://github.com/dtzp555-max/memory-continuity.git
synced 2026-07-19 09:42:42 +00:00
fix: increase agent selection timeout from 10s to 20s, bump v2.4.2
This commit is contained in:
+14
-5
@@ -2,7 +2,7 @@
|
|||||||
"id": "memory-continuity",
|
"id": "memory-continuity",
|
||||||
"name": "Memory Continuity",
|
"name": "Memory Continuity",
|
||||||
"description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.",
|
"description": "Preserves working state across /new, reset, compaction, and gateway restarts via a simple markdown checkpoint file.",
|
||||||
"version": "2.4.1",
|
"version": "2.4.2",
|
||||||
"source": "https://github.com/dtzp555-max/memory-continuity",
|
"source": "https://github.com/dtzp555-max/memory-continuity",
|
||||||
"configSchema": {
|
"configSchema": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@@ -26,8 +26,17 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"uiHints": {
|
"uiHints": {
|
||||||
"maxStateLines": { "label": "Max state file lines", "help": "Keep checkpoint small for fast recovery" },
|
"maxStateLines": {
|
||||||
"archiveOnNew": { "label": "Archive on /new", "help": "Save a snapshot before session reset" },
|
"label": "Max state file lines",
|
||||||
"autoExtract": { "label": "Auto-extract state", "help": "Automatically save working state when conversation ends" }
|
"help": "Keep checkpoint small for fast recovery"
|
||||||
|
},
|
||||||
|
"archiveOnNew": {
|
||||||
|
"label": "Archive on /new",
|
||||||
|
"help": "Save a snapshot before session reset"
|
||||||
|
},
|
||||||
|
"autoExtract": {
|
||||||
|
"label": "Auto-extract state",
|
||||||
|
"help": "Automatically save working state when conversation ends"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -224,13 +224,13 @@ else
|
|||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo " Install to: [A]ll alive agents (default) / [1,2,...] specific / [Q]uit"
|
echo " Install to: [A]ll alive agents (default) / [1,2,...] specific / [Q]uit"
|
||||||
printf " > (10s timeout, Enter or no input = All) "
|
printf " > (20s timeout, Enter or no input = All) "
|
||||||
|
|
||||||
# Auto-select All if stdin is not a tty (pipe/CI) or on timeout
|
# Auto-select All if stdin is not a tty (pipe/CI) or on timeout
|
||||||
if [[ ! -t 0 ]]; then
|
if [[ ! -t 0 ]]; then
|
||||||
SELECTION="A"
|
SELECTION="A"
|
||||||
echo "(non-interactive: auto-selecting All)"
|
echo "(non-interactive: auto-selecting All)"
|
||||||
elif read -t 10 -r SELECTION; then
|
elif read -t 20 -r SELECTION; then
|
||||||
# User provided input (possibly empty = Enter)
|
# User provided input (possibly empty = Enter)
|
||||||
: # SELECTION is set
|
: # SELECTION is set
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user