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 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.2
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.2 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
275
+ **v6.74.3 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.74.2
1
+ 6.74.3
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "6.74.2"
10
+ __version__ = "6.74.3"
11
11
 
12
12
  # Expose the control app for easy import
13
13
  try:
@@ -2,7 +2,7 @@
2
2
 
3
3
  The flagship product of [Autonomi](https://www.autonomi.dev/). Complete installation instructions for all platforms and use cases.
4
4
 
5
- **Version:** v6.74.2
5
+ **Version:** v6.74.3
6
6
 
7
7
  ---
8
8
 
package/mcp/__init__.py CHANGED
@@ -57,4 +57,4 @@ try:
57
57
  except ImportError:
58
58
  __all__ = ['mcp']
59
59
 
60
- __version__ = '6.74.2'
60
+ __version__ = '6.74.3'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loki-mode",
3
- "version": "6.74.2",
3
+ "version": "6.74.3",
4
4
  "description": "Loki Mode by Autonomi - Multi-agent autonomous startup system for Claude Code, Codex CLI, and Gemini CLI",
5
5
  "keywords": [
6
6
  "agent",
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
- pending_tasks = int(tasks.get("pending", 0) or 0)
2882
- in_progress = int(tasks.get("inProgress", 0) or 0)
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
- _pending_tasks = int(_tasks.get("pending", 0) or 0)
6092
- _in_progress = int(_tasks.get("inProgress", 0) or 0)
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