loki-mode 6.67.0 → 6.67.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/tui.sh +2 -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.67.
|
|
6
|
+
# Loki Mode v6.67.1
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -268,4 +268,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
268
268
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
269
269
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
270
270
|
|
|
271
|
-
**v6.67.
|
|
271
|
+
**v6.67.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.67.
|
|
1
|
+
6.67.1
|
package/autonomy/tui.sh
CHANGED
|
@@ -393,8 +393,8 @@ display_token_cost() {
|
|
|
393
393
|
*opus*) input_rate=15.0; output_rate=75.0 ;;
|
|
394
394
|
*sonnet*) input_rate=3.0; output_rate=15.0 ;;
|
|
395
395
|
*haiku*) input_rate=0.25; output_rate=1.25 ;;
|
|
396
|
-
*gpt-4o*) input_rate=2.5; output_rate=10.0 ;;
|
|
397
396
|
*gpt-4o-mini*) input_rate=0.15; output_rate=0.6 ;;
|
|
397
|
+
*gpt-4o*) input_rate=2.5; output_rate=10.0 ;;
|
|
398
398
|
*) input_rate=3.0; output_rate=15.0 ;; # default sonnet-like
|
|
399
399
|
esac
|
|
400
400
|
|
|
@@ -430,7 +430,7 @@ tree_display() {
|
|
|
430
430
|
local items=()
|
|
431
431
|
while IFS= read -r item; do
|
|
432
432
|
[ -n "$item" ] && items+=("$item")
|
|
433
|
-
done < <(
|
|
433
|
+
done < <(find "$dir" -maxdepth 1 -not -name '.*' -not -name "$(basename "$dir")" -exec basename {} \; 2>/dev/null | sort | head -20)
|
|
434
434
|
|
|
435
435
|
local count=${#items[@]}
|
|
436
436
|
local i=0
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED