loki-mode 6.17.0 → 6.17.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/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/run.sh +10 -1
- 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.17.
|
|
6
|
+
# Loki Mode v6.17.1
|
|
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.17.
|
|
270
|
+
**v6.17.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.17.
|
|
1
|
+
6.17.1
|
package/autonomy/run.sh
CHANGED
|
@@ -8617,6 +8617,8 @@ if __name__ == "__main__":
|
|
|
8617
8617
|
fi
|
|
8618
8618
|
fi
|
|
8619
8619
|
|
|
8620
|
+
log_step "Post-iteration: running inter-iteration checks..."
|
|
8621
|
+
|
|
8620
8622
|
# App Runner: restart on code changes (v5.45.0)
|
|
8621
8623
|
if [ "${APP_RUNNER_INITIALIZED:-}" = "true" ] && type app_runner_should_restart &>/dev/null; then
|
|
8622
8624
|
if app_runner_should_restart; then
|
|
@@ -8661,10 +8663,12 @@ if __name__ == "__main__":
|
|
|
8661
8663
|
create_checkpoint "iteration-${ITERATION_COUNT} complete" "iteration-${ITERATION_COUNT}"
|
|
8662
8664
|
|
|
8663
8665
|
# Quality gates (v6.10.0 - escalation ladder)
|
|
8666
|
+
log_step "Post-iteration: running quality gates..."
|
|
8664
8667
|
local gate_failures=""
|
|
8665
8668
|
if [ "${LOKI_HARD_GATES:-true}" = "true" ]; then
|
|
8666
8669
|
# Static analysis gate
|
|
8667
8670
|
if [ "${PHASE_STATIC_ANALYSIS:-true}" = "true" ]; then
|
|
8671
|
+
log_info "Quality gate: static analysis..."
|
|
8668
8672
|
if enforce_static_analysis; then
|
|
8669
8673
|
clear_gate_failure "static_analysis"
|
|
8670
8674
|
else
|
|
@@ -8676,6 +8680,7 @@ if __name__ == "__main__":
|
|
|
8676
8680
|
fi
|
|
8677
8681
|
# Test coverage gate
|
|
8678
8682
|
if [ "${PHASE_UNIT_TESTS:-true}" = "true" ]; then
|
|
8683
|
+
log_info "Quality gate: test coverage..."
|
|
8679
8684
|
if enforce_test_coverage; then
|
|
8680
8685
|
clear_gate_failure "test_coverage"
|
|
8681
8686
|
else
|
|
@@ -8687,6 +8692,7 @@ if __name__ == "__main__":
|
|
|
8687
8692
|
fi
|
|
8688
8693
|
# Code review gate (upgraded from advisory, with escalation)
|
|
8689
8694
|
if [ "$PHASE_CODE_REVIEW" = "true" ] && [ "$ITERATION_COUNT" -gt 0 ]; then
|
|
8695
|
+
log_info "Quality gate: code review..."
|
|
8690
8696
|
if run_code_review; then
|
|
8691
8697
|
clear_gate_failure "code_review"
|
|
8692
8698
|
else
|
|
@@ -8717,9 +8723,11 @@ if __name__ == "__main__":
|
|
|
8717
8723
|
fi
|
|
8718
8724
|
else
|
|
8719
8725
|
if [ "$PHASE_CODE_REVIEW" = "true" ] && [ "$ITERATION_COUNT" -gt 0 ]; then
|
|
8726
|
+
log_info "Quality gate: code review (advisory)..."
|
|
8720
8727
|
run_code_review || log_warn "Code review found issues - check .loki/quality/reviews/"
|
|
8721
8728
|
fi
|
|
8722
8729
|
fi
|
|
8730
|
+
log_info "Quality gates complete."
|
|
8723
8731
|
|
|
8724
8732
|
# Automatic episode capture after every RARV iteration (v6.15.0)
|
|
8725
8733
|
# Captures RARV phase, git changes, and iteration context automatically
|
|
@@ -8745,6 +8753,7 @@ if __name__ == "__main__":
|
|
|
8745
8753
|
|
|
8746
8754
|
# Completion Council check (v5.25.0) - multi-agent voting on completion
|
|
8747
8755
|
# Runs before completion promise check since council is more comprehensive
|
|
8756
|
+
log_step "Post-iteration: checking completion council..."
|
|
8748
8757
|
if type council_should_stop &>/dev/null && council_should_stop; then
|
|
8749
8758
|
echo ""
|
|
8750
8759
|
log_header "COMPLETION COUNCIL: PROJECT COMPLETE"
|
|
@@ -8776,7 +8785,7 @@ if __name__ == "__main__":
|
|
|
8776
8785
|
fi
|
|
8777
8786
|
|
|
8778
8787
|
# SUCCESS exit - continue IMMEDIATELY to next iteration (no wait!)
|
|
8779
|
-
|
|
8788
|
+
log_step "Starting next iteration..."
|
|
8780
8789
|
((retry++))
|
|
8781
8790
|
continue # Immediately start next iteration, no exponential backoff
|
|
8782
8791
|
fi
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED