loki-mode 6.75.0 → 6.75.2

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 CHANGED
@@ -7,7 +7,7 @@
7
7
  **Describe what you want. Get production-ready code.**
8
8
 
9
9
  [![npm version](https://img.shields.io/npm/v/loki-mode?style=for-the-badge&logo=npm&logoColor=white&color=553DE9)](https://www.npmjs.com/package/loki-mode)
10
- [![npm downloads](https://img.shields.io/npm/dw/loki-mode?style=for-the-badge&logo=npm&logoColor=white&color=1FC5A8)](https://www.npmjs.com/package/loki-mode)
10
+ [![npm downloads](https://img.shields.io/npm/dt/loki-mode?style=for-the-badge&logo=npm&logoColor=white&color=1FC5A8&label=downloads)](https://www.npmjs.com/package/loki-mode)
11
11
  [![GitHub stars](https://img.shields.io/github/stars/asklokesh/loki-mode?style=for-the-badge&logo=github&color=553DE9)](https://github.com/asklokesh/loki-mode)
12
12
  [![Docker Pulls](https://img.shields.io/docker/pulls/asklokesh/loki-mode?style=for-the-badge&logo=docker&logoColor=white&color=2F71E3)](https://hub.docker.com/r/asklokesh/loki-mode)
13
13
  [![License](https://img.shields.io/badge/License-BUSL--1.1-36342E?style=for-the-badge)](LICENSE)
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.75.0
6
+ # Loki Mode v6.75.2
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.75.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
275
+ **v6.75.2 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.75.0
1
+ 6.75.2
package/autonomy/loki CHANGED
@@ -18480,21 +18480,27 @@ _docs_invoke_provider() {
18480
18480
 
18481
18481
  local result=""
18482
18482
  local exit_code=0
18483
+ local timeout_cmd="timeout"
18484
+ command -v gtimeout &>/dev/null && timeout_cmd="gtimeout"
18485
+ command -v $timeout_cmd &>/dev/null || timeout_cmd=""
18486
+ local t_prefix=""
18487
+ [ -n "$timeout_cmd" ] && t_prefix="$timeout_cmd 120"
18488
+
18483
18489
  case "$provider" in
18484
18490
  claude)
18485
- result=$(claude -p "$prompt" 2>/dev/null) || exit_code=$?
18491
+ result=$($t_prefix claude -p "$prompt" 2>/dev/null) || exit_code=$?
18486
18492
  ;;
18487
18493
  codex)
18488
- result=$(codex exec --full-auto "$prompt" 2>/dev/null) || exit_code=$?
18494
+ result=$($t_prefix codex exec --full-auto "$prompt" 2>/dev/null) || exit_code=$?
18489
18495
  ;;
18490
18496
  gemini)
18491
- result=$(gemini --approval-mode=yolo "$prompt" 2>/dev/null) || exit_code=$?
18497
+ result=$($t_prefix gemini --approval-mode=yolo "$prompt" 2>/dev/null) || exit_code=$?
18492
18498
  ;;
18493
18499
  cline)
18494
- result=$(cline -y "$prompt" 2>/dev/null) || exit_code=$?
18500
+ result=$($t_prefix cline -y "$prompt" 2>/dev/null) || exit_code=$?
18495
18501
  ;;
18496
18502
  aider)
18497
- result=$(aider --message "$prompt" --yes-always --no-auto-commits < /dev/null 2>/dev/null) || exit_code=$?
18503
+ result=$($t_prefix aider --message "$prompt" --yes-always --no-auto-commits < /dev/null 2>/dev/null) || exit_code=$?
18498
18504
  ;;
18499
18505
  *)
18500
18506
  log_error "Unknown provider: $provider"
package/autonomy/run.sh CHANGED
@@ -5733,6 +5733,7 @@ run_doc_staleness_check() {
5733
5733
  # ============================================================================
5734
5734
 
5735
5735
  run_doc_quality_gate() {
5736
+ # shellcheck disable=SC2120
5736
5737
  local project_dir="${1:-${TARGET_DIR:-.}}"
5737
5738
  local score=100
5738
5739
  local issues=()
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "6.75.0"
10
+ __version__ = "6.75.2"
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.75.0
5
+ **Version:** v6.75.2
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.75.0'
60
+ __version__ = '6.75.2'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loki-mode",
3
- "version": "6.75.0",
3
+ "version": "6.75.2",
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",