loki-mode 6.11.3 → 6.12.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 +2 -2
- package/VERSION +1 -1
- package/autonomy/loki +7 -15
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
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.
|
|
6
|
+
# Loki Mode v6.12.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.
|
|
270
|
+
**v6.12.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.12.1
|
package/autonomy/loki
CHANGED
|
@@ -11584,33 +11584,25 @@ cmd_remote() {
|
|
|
11584
11584
|
# Emit event
|
|
11585
11585
|
emit_event session cli remote_start "prd=${prd_abs:-none}"
|
|
11586
11586
|
|
|
11587
|
-
#
|
|
11588
|
-
# If workspace isn't trusted, it exits immediately
|
|
11589
|
-
# We
|
|
11590
|
-
# then retry automatically.
|
|
11587
|
+
# Launch remote-control
|
|
11588
|
+
# If workspace isn't trusted, it exits immediately (non-interactive error).
|
|
11589
|
+
# We catch this and auto-launch claude for trust, then retry seamlessly.
|
|
11591
11590
|
claude remote-control ${rc_flags[@]+"${rc_flags[@]}"}
|
|
11592
11591
|
local rc_exit=$?
|
|
11593
11592
|
|
|
11594
|
-
# Exit 0 = normal session end
|
|
11593
|
+
# Exit 0 = normal session end
|
|
11595
11594
|
if [ $rc_exit -eq 0 ]; then
|
|
11596
11595
|
exit 0
|
|
11597
11596
|
fi
|
|
11598
11597
|
|
|
11599
|
-
#
|
|
11598
|
+
# Failed -- most likely workspace trust. Auto-recover.
|
|
11600
11599
|
echo ""
|
|
11601
|
-
echo -e "${
|
|
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}"
|
|
11600
|
+
echo -e "${CYAN}Trusting workspace -- accept the prompt below, then type /exit${NC}"
|
|
11604
11601
|
echo ""
|
|
11605
|
-
|
|
11606
|
-
# Launch interactive claude for trust acceptance
|
|
11607
11602
|
claude
|
|
11608
|
-
|
|
11609
11603
|
echo ""
|
|
11610
|
-
echo -e "${GREEN}
|
|
11604
|
+
echo -e "${GREEN}Launching remote control...${NC}"
|
|
11611
11605
|
echo ""
|
|
11612
|
-
|
|
11613
|
-
# Retry with exec (replace shell)
|
|
11614
11606
|
exec claude remote-control ${rc_flags[@]+"${rc_flags[@]}"}
|
|
11615
11607
|
}
|
|
11616
11608
|
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED