loki-mode 6.64.2 → 6.64.3
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 +3 -2
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- 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 minimal human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v6.64.
|
|
6
|
+
# Loki Mode v6.64.3
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -267,4 +267,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
267
267
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
268
268
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
269
269
|
|
|
270
|
-
**v6.64.
|
|
270
|
+
**v6.64.3 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.64.
|
|
1
|
+
6.64.3
|
package/autonomy/run.sh
CHANGED
|
@@ -7948,9 +7948,10 @@ load_state() {
|
|
|
7948
7948
|
# Reset retry count if previous session ended in a terminal state
|
|
7949
7949
|
# This allows new sessions to start fresh after failures
|
|
7950
7950
|
case "$prev_status" in
|
|
7951
|
-
failed|max_iterations_reached|max_retries_exceeded)
|
|
7952
|
-
log_info "Previous session ended with status: $prev_status. Resetting
|
|
7951
|
+
failed|max_iterations_reached|max_retries_exceeded|exited)
|
|
7952
|
+
log_info "Previous session ended with status: $prev_status. Resetting for new session."
|
|
7953
7953
|
RETRY_COUNT=0
|
|
7954
|
+
ITERATION_COUNT=0
|
|
7954
7955
|
;;
|
|
7955
7956
|
esac
|
|
7956
7957
|
else
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED