loki-mode 6.74.2 → 6.74.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/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
- package/web-app/server.py +8 -4
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.74.
|
|
6
|
+
# Loki Mode v6.74.3
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -272,4 +272,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
272
272
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
273
273
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
274
274
|
|
|
275
|
-
**v6.74.
|
|
275
|
+
**v6.74.3 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.74.
|
|
1
|
+
6.74.3
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED
package/package.json
CHANGED
package/web-app/server.py
CHANGED
|
@@ -2878,8 +2878,10 @@ async def get_status() -> JSONResponse:
|
|
|
2878
2878
|
# Tasks are nested in dashboard-state.json
|
|
2879
2879
|
tasks = state.get("tasks")
|
|
2880
2880
|
if isinstance(tasks, dict):
|
|
2881
|
-
|
|
2882
|
-
|
|
2881
|
+
_p = tasks.get("pending", 0)
|
|
2882
|
+
_ip = tasks.get("inProgress", 0)
|
|
2883
|
+
pending_tasks = len(_p) if isinstance(_p, list) else int(_p or 0)
|
|
2884
|
+
in_progress = len(_ip) if isinstance(_ip, list) else int(_ip or 0)
|
|
2883
2885
|
if in_progress > 0:
|
|
2884
2886
|
current_task = f"{in_progress} task(s) in progress"
|
|
2885
2887
|
# Extract cost from tokens object if present
|
|
@@ -6088,8 +6090,10 @@ async def _push_state_to_client(ws: WebSocket) -> None:
|
|
|
6088
6090
|
_complexity = state_data.get("complexity", _complexity)
|
|
6089
6091
|
_tasks = state_data.get("tasks")
|
|
6090
6092
|
if isinstance(_tasks, dict):
|
|
6091
|
-
|
|
6092
|
-
|
|
6093
|
+
_tp = _tasks.get("pending", 0)
|
|
6094
|
+
_tip = _tasks.get("inProgress", 0)
|
|
6095
|
+
_pending_tasks = len(_tp) if isinstance(_tp, list) else int(_tp or 0)
|
|
6096
|
+
_in_progress = len(_tip) if isinstance(_tip, list) else int(_tip or 0)
|
|
6093
6097
|
if _in_progress > 0:
|
|
6094
6098
|
_current_task = f"{_in_progress} task(s) in progress"
|
|
6095
6099
|
# Extract cost from tokens object if present
|