loki-mode 6.32.1 → 6.33.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/README.md +1 -1
- package/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/loki +11 -5
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://www.autonomi.dev/)
|
|
11
11
|
[](https://hub.docker.com/r/asklokesh/loki-mode)
|
|
12
12
|
|
|
13
|
-
**Current Version: v6.
|
|
13
|
+
**Current Version: v6.33.0**
|
|
14
14
|
|
|
15
15
|
### Traction
|
|
16
16
|
|
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.
|
|
6
|
+
# Loki Mode v6.33.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.
|
|
270
|
+
**v6.33.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.33.1
|
package/autonomy/loki
CHANGED
|
@@ -14028,6 +14028,7 @@ cmd_metrics() {
|
|
|
14028
14028
|
|
|
14029
14029
|
local metrics_output
|
|
14030
14030
|
metrics_output=$(LOKI_DIR="$loki_dir" \
|
|
14031
|
+
LOKI_SKILL_DIR="$SKILL_DIR" \
|
|
14031
14032
|
METRICS_JSON="$show_json" \
|
|
14032
14033
|
METRICS_LAST_N="$last_n" \
|
|
14033
14034
|
METRICS_SAVE="$save_file" \
|
|
@@ -14244,12 +14245,17 @@ if os.path.isdir(semantic_dir):
|
|
|
14244
14245
|
semantic_count += len([f for f in files if f.endswith(".json")])
|
|
14245
14246
|
|
|
14246
14247
|
# --- Build output ---
|
|
14247
|
-
version = "6.
|
|
14248
|
+
version = "6.33.0"
|
|
14248
14249
|
try:
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14250
|
+
skill_dir = os.environ.get("LOKI_SKILL_DIR", "")
|
|
14251
|
+
version_candidates = [
|
|
14252
|
+
os.path.join(skill_dir, "VERSION") if skill_dir else "",
|
|
14253
|
+
"VERSION",
|
|
14254
|
+
"../VERSION",
|
|
14255
|
+
os.path.join(loki_dir, "..", "VERSION"),
|
|
14256
|
+
]
|
|
14257
|
+
for vf in version_candidates:
|
|
14258
|
+
if vf and os.path.isfile(vf):
|
|
14253
14259
|
with open(vf) as f:
|
|
14254
14260
|
version = f.read().strip()
|
|
14255
14261
|
break
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED