loki-mode 6.15.1 → 6.16.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 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.15.1
6
+ # Loki Mode v6.16.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.15.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
270
+ **v6.16.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.15.1
1
+ 6.16.1
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "6.15.1"
10
+ __version__ = "6.16.1"
11
11
 
12
12
  # Expose the control app for easy import
13
13
  try:
@@ -5,6 +5,8 @@ Appends structured JSONL entries to ~/.loki/activity.jsonl with automatic
5
5
  rotation at 10MB. Provides query and session-diff capabilities.
6
6
  """
7
7
 
8
+ from __future__ import annotations
9
+
8
10
  import json
9
11
  import logging
10
12
  import os
@@ -7,6 +7,8 @@ and usage tracking. Builds on dashboard.auth for core token operations.
7
7
  Storage: Extends ~/.loki/dashboard/tokens.json with additional fields.
8
8
  """
9
9
 
10
+ from __future__ import annotations
11
+
10
12
  from datetime import datetime, timedelta, timezone
11
13
  from typing import Optional
12
14
 
@@ -7,6 +7,8 @@ Mount this router in server.py with:
7
7
  app.include_router(api_v2_router)
8
8
  """
9
9
 
10
+ from __future__ import annotations
11
+
10
12
  import csv
11
13
  import io
12
14
  import json
@@ -12,6 +12,8 @@ Syslog forwarding (optional):
12
12
  LOKI_AUDIT_SYSLOG_PROTO defaults to "udp" (also supports "tcp").
13
13
  """
14
14
 
15
+ from __future__ import annotations
16
+
15
17
  import hashlib
16
18
  import json
17
19
  import logging
package/dashboard/auth.py CHANGED
@@ -10,6 +10,8 @@ Supports enterprise SSO providers (Okta, Azure AD, Google Workspace).
10
10
  Token storage: ~/.loki/dashboard/tokens.json
11
11
  """
12
12
 
13
+ from __future__ import annotations
14
+
13
15
  import base64
14
16
  import hashlib
15
17
  import json
@@ -6,6 +6,8 @@ repeated task failures, excessive RARV cycles, verification failures,
6
6
  agent timeouts, and user corrections.
7
7
  """
8
8
 
9
+ from __future__ import annotations
10
+
9
11
  import hashlib
10
12
  import json
11
13
  import logging
@@ -6,6 +6,8 @@ Implements data models, MigrationPipeline, and phase gates for safe,
6
6
  incremental codebase migrations with checkpoint/rollback support.
7
7
  """
8
8
 
9
+ from __future__ import annotations
10
+
9
11
  import dataclasses
10
12
  import json
11
13
  import logging
@@ -4,6 +4,8 @@ SQLAlchemy models for Loki Mode Dashboard.
4
4
  Uses SQLAlchemy 2.0 style with async support.
5
5
  """
6
6
 
7
+ from __future__ import annotations
8
+
7
9
  from datetime import datetime
8
10
  from enum import Enum as PyEnum
9
11
  from typing import Optional
@@ -5,6 +5,8 @@ Uses failure patterns from FailureExtractor to generate improved prompt
5
5
  sections for agents. Stores versioned prompts with change tracking.
6
6
  """
7
7
 
8
+ from __future__ import annotations
9
+
8
10
  import hashlib
9
11
  import json
10
12
  import logging
@@ -5,6 +5,8 @@ Manages cross-project registration, discovery, and tracking.
5
5
  Projects are stored in ~/.loki/dashboard/projects.json
6
6
  """
7
7
 
8
+ from __future__ import annotations
9
+
8
10
  import json
9
11
  import os
10
12
  from datetime import datetime, timezone
@@ -5,6 +5,8 @@ Shells out to `npx @rigour-labs/cli` to run quality scans, parses JSON output,
5
5
  and maps findings to the Loki Mode quality gate format.
6
6
  """
7
7
 
8
+ from __future__ import annotations
9
+
8
10
  import json
9
11
  import logging
10
12
  import os
package/dashboard/runs.py CHANGED
@@ -6,6 +6,8 @@ of RARV execution runs. A "run" wraps a Session with run-specific
6
6
  operations and timeline event tracking.
7
7
  """
8
8
 
9
+ from __future__ import annotations
10
+
9
11
  import json
10
12
  from datetime import datetime, timezone
11
13
  from typing import Optional
@@ -4,6 +4,8 @@ FastAPI server for Loki Mode Dashboard.
4
4
  Provides REST API and WebSocket endpoints for dashboard functionality.
5
5
  """
6
6
 
7
+ from __future__ import annotations
8
+
7
9
  import asyncio
8
10
  import json
9
11
  import logging