loki-mode 6.11.1 → 6.11.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.11.1
6
+ # Loki Mode v6.11.3
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.11.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
270
+ **v6.11.3 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.11.1
1
+ 6.11.3
package/autonomy/loki CHANGED
@@ -11584,23 +11584,34 @@ cmd_remote() {
11584
11584
  # Emit event
11585
11585
  emit_event session cli remote_start "prd=${prd_abs:-none}"
11586
11586
 
11587
- # Hand off to claude remote-control
11588
- # Note: not using exec so we can provide guidance if it fails
11587
+ # Try launching remote-control
11588
+ # If workspace isn't trusted, it exits immediately with an error.
11589
+ # We detect this and auto-launch interactive claude for trust acceptance,
11590
+ # then retry automatically.
11589
11591
  claude remote-control ${rc_flags[@]+"${rc_flags[@]}"}
11590
11592
  local rc_exit=$?
11591
11593
 
11592
- if [ $rc_exit -ne 0 ]; then
11593
- echo ""
11594
- echo -e "${YELLOW}Troubleshooting:${NC}"
11595
- echo ""
11596
- echo -e " ${CYAN}Workspace not trusted?${NC}"
11597
- echo " Run 'claude' in this directory first to accept the trust dialog,"
11598
- echo " then exit (/exit) and run 'loki remote' again."
11599
- echo ""
11600
- echo -e " ${CYAN}Not logged in?${NC}"
11601
- echo " Run 'claude' then '/login' -- requires a Pro or Max subscription."
11602
- exit $rc_exit
11594
+ # Exit 0 = normal session end, non-zero = error (likely trust issue)
11595
+ if [ $rc_exit -eq 0 ]; then
11596
+ exit 0
11603
11597
  fi
11598
+
11599
+ # Assume trust failure (most common cause) -- auto-recover
11600
+ echo ""
11601
+ echo -e "${YELLOW}Remote control failed (likely workspace trust).${NC}"
11602
+ echo -e "${CYAN}Opening Claude Code to accept the trust dialog...${NC}"
11603
+ echo -e "${DIM}Once trusted, type /exit and remote control will start automatically.${NC}"
11604
+ echo ""
11605
+
11606
+ # Launch interactive claude for trust acceptance
11607
+ claude
11608
+
11609
+ echo ""
11610
+ echo -e "${GREEN}Retrying remote control...${NC}"
11611
+ echo ""
11612
+
11613
+ # Retry with exec (replace shell)
11614
+ exec claude remote-control ${rc_flags[@]+"${rc_flags[@]}"}
11604
11615
  }
11605
11616
 
11606
11617
  # Syslog/SIEM integration management
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "6.11.1"
10
+ __version__ = "6.11.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.11.1
5
+ **Version:** v6.11.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.11.1'
60
+ __version__ = '6.11.3'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loki-mode",
3
- "version": "6.11.1",
3
+ "version": "6.11.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",