loki-mode 5.20.11 → 5.20.13
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/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/run.sh +4 -0
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: loki-mode
|
|
|
3
3
|
description: Multi-agent autonomous startup system. Triggers on "Loki Mode". Takes PRD to deployed product with zero human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v5.20.
|
|
6
|
+
# Loki Mode v5.20.13
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -253,4 +253,4 @@ Auto-detected or force with `LOKI_COMPLEXITY`:
|
|
|
253
253
|
|
|
254
254
|
---
|
|
255
255
|
|
|
256
|
-
**v5.20.
|
|
256
|
+
**v5.20.13 | Clean Stale Control Files on Start | ~250 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.20.
|
|
1
|
+
5.20.13
|
package/autonomy/run.sh
CHANGED
|
@@ -1989,6 +1989,10 @@ check_skill_installed() {
|
|
|
1989
1989
|
init_loki_dir() {
|
|
1990
1990
|
log_header "Initializing Loki Mode Directory"
|
|
1991
1991
|
|
|
1992
|
+
# Clean up stale control files from previous sessions
|
|
1993
|
+
# These can cause new sessions to pause/stop immediately
|
|
1994
|
+
rm -f .loki/PAUSE .loki/STOP .loki/HUMAN_INPUT.md 2>/dev/null
|
|
1995
|
+
|
|
1992
1996
|
mkdir -p .loki/{state,queue,messages,logs,config,prompts,artifacts,scripts}
|
|
1993
1997
|
mkdir -p .loki/queue
|
|
1994
1998
|
mkdir -p .loki/state/checkpoints
|