loki-mode 6.75.2 → 6.75.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 +2 -2
- package/VERSION +1 -1
- package/autonomy/loki +13 -0
- package/autonomy/run.sh +1 -1
- 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.75.
|
|
6
|
+
# Loki Mode v6.75.3
|
|
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.
|
|
275
|
+
**v6.75.3 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.75.
|
|
1
|
+
6.75.3
|
package/autonomy/loki
CHANGED
|
@@ -540,6 +540,7 @@ cmd_start() {
|
|
|
540
540
|
echo " --complex Force complex complexity tier (8 phases)"
|
|
541
541
|
echo " --github Enable GitHub issue import"
|
|
542
542
|
echo " --no-dashboard Disable web dashboard"
|
|
543
|
+
echo " --api Start dashboard API server alongside the build"
|
|
543
544
|
echo " --sandbox Run in Docker sandbox"
|
|
544
545
|
echo " --skip-memory Skip loading memory context at startup"
|
|
545
546
|
echo " --compliance PRESET Enable compliance mode (default|healthcare|fintech|government)"
|
|
@@ -654,6 +655,10 @@ cmd_start() {
|
|
|
654
655
|
export LOKI_DASHBOARD=false
|
|
655
656
|
shift
|
|
656
657
|
;;
|
|
658
|
+
--api)
|
|
659
|
+
export LOKI_START_API=true
|
|
660
|
+
shift
|
|
661
|
+
;;
|
|
657
662
|
--sandbox)
|
|
658
663
|
export LOKI_SANDBOX_MODE=true
|
|
659
664
|
shift
|
|
@@ -1112,6 +1117,14 @@ cmd_start() {
|
|
|
1112
1117
|
exit 1
|
|
1113
1118
|
fi
|
|
1114
1119
|
|
|
1120
|
+
# --api flag: start the dashboard API server in background before the build
|
|
1121
|
+
if [ "${LOKI_START_API:-false}" = "true" ]; then
|
|
1122
|
+
local dash_port="${LOKI_DASHBOARD_PORT:-57374}"
|
|
1123
|
+
echo -e "${GREEN}Starting dashboard API on port $dash_port...${NC}"
|
|
1124
|
+
cmd_dashboard_start 2>/dev/null &
|
|
1125
|
+
sleep 2
|
|
1126
|
+
fi
|
|
1127
|
+
|
|
1115
1128
|
exec "$RUN_SH" "${args[@]}"
|
|
1116
1129
|
}
|
|
1117
1130
|
|
package/autonomy/run.sh
CHANGED
|
@@ -5732,8 +5732,8 @@ run_doc_staleness_check() {
|
|
|
5732
5732
|
# Checks README, documentation freshness, and package API docs
|
|
5733
5733
|
# ============================================================================
|
|
5734
5734
|
|
|
5735
|
+
# shellcheck disable=SC2120
|
|
5735
5736
|
run_doc_quality_gate() {
|
|
5736
|
-
# shellcheck disable=SC2120
|
|
5737
5737
|
local project_dir="${1:-${TARGET_DIR:-.}}"
|
|
5738
5738
|
local score=100
|
|
5739
5739
|
local issues=()
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED