loki-mode 6.12.3 → 6.12.4
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 +28 -3
- 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.12.
|
|
6
|
+
# Loki Mode v6.12.4
|
|
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.12.
|
|
270
|
+
**v6.12.4 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.12.
|
|
1
|
+
6.12.4
|
package/autonomy/loki
CHANGED
|
@@ -11595,11 +11595,36 @@ cmd_remote() {
|
|
|
11595
11595
|
exit 0
|
|
11596
11596
|
fi
|
|
11597
11597
|
|
|
11598
|
-
# Failed -- most likely workspace trust. Auto-recover
|
|
11599
|
-
#
|
|
11598
|
+
# Failed -- most likely workspace trust. Auto-recover by writing trust flag
|
|
11599
|
+
# directly into ~/.claude.json (projects.<cwd>.hasTrustDialogAccepted = true).
|
|
11600
11600
|
echo ""
|
|
11601
11601
|
echo -e "${DIM}Auto-trusting workspace...${NC}"
|
|
11602
|
-
|
|
11602
|
+
|
|
11603
|
+
local cwd
|
|
11604
|
+
cwd="$(python3 -c 'import os; print(os.path.realpath("."))')"
|
|
11605
|
+
python3 -c "
|
|
11606
|
+
import json, os, sys
|
|
11607
|
+
|
|
11608
|
+
config_path = os.path.expanduser('~/.claude.json')
|
|
11609
|
+
try:
|
|
11610
|
+
with open(config_path) as f:
|
|
11611
|
+
data = json.load(f)
|
|
11612
|
+
except (FileNotFoundError, json.JSONDecodeError):
|
|
11613
|
+
data = {}
|
|
11614
|
+
|
|
11615
|
+
projects = data.setdefault('projects', {})
|
|
11616
|
+
project = projects.setdefault(sys.argv[1], {})
|
|
11617
|
+
project['hasTrustDialogAccepted'] = True
|
|
11618
|
+
project.setdefault('allowedTools', [])
|
|
11619
|
+
|
|
11620
|
+
with open(config_path, 'w') as f:
|
|
11621
|
+
json.dump(data, f, indent=2)
|
|
11622
|
+
print('ok')
|
|
11623
|
+
" "$cwd" 2>/dev/null || {
|
|
11624
|
+
echo -e "${YELLOW}Auto-trust failed. Please run 'claude' in this directory first to accept the trust dialog.${NC}"
|
|
11625
|
+
exit 1
|
|
11626
|
+
}
|
|
11627
|
+
|
|
11603
11628
|
echo ""
|
|
11604
11629
|
echo -e "${GREEN}Launching remote control...${NC}"
|
|
11605
11630
|
echo ""
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED