loki-mode 6.33.0 → 6.34.0
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 +26 -5
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
- package/web-app/dist/assets/index-0BmKP0xj.js +66 -0
- package/web-app/dist/assets/index-JhqgscwR.css +1 -0
- package/web-app/dist/index.html +2 -2
- package/web-app/server.py +37 -0
- package/web-app/dist/assets/index-Bxk-CzWn.js +0 -65
- package/web-app/dist/assets/index-CxHyjUh7.css +0 -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.33.
|
|
6
|
+
# Loki Mode v6.33.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.33.
|
|
270
|
+
**v6.33.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.34.0
|
package/autonomy/loki
CHANGED
|
@@ -2969,6 +2969,7 @@ cmd_web_help() {
|
|
|
2969
2969
|
cmd_web_start() {
|
|
2970
2970
|
local open_browser=true
|
|
2971
2971
|
local port="${PURPLE_LAB_DEFAULT_PORT}"
|
|
2972
|
+
local prd_file=""
|
|
2972
2973
|
|
|
2973
2974
|
# Parse arguments
|
|
2974
2975
|
while [[ $# -gt 0 ]]; do
|
|
@@ -2981,6 +2982,10 @@ cmd_web_start() {
|
|
|
2981
2982
|
port="$2"
|
|
2982
2983
|
shift 2
|
|
2983
2984
|
;;
|
|
2985
|
+
--prd)
|
|
2986
|
+
prd_file="$2"
|
|
2987
|
+
shift 2
|
|
2988
|
+
;;
|
|
2984
2989
|
--help|-h)
|
|
2985
2990
|
cmd_web_help
|
|
2986
2991
|
exit 0
|
|
@@ -2993,6 +2998,16 @@ cmd_web_start() {
|
|
|
2993
2998
|
esac
|
|
2994
2999
|
done
|
|
2995
3000
|
|
|
3001
|
+
# Validate --prd file if provided
|
|
3002
|
+
if [ -n "$prd_file" ]; then
|
|
3003
|
+
if [ ! -f "$prd_file" ]; then
|
|
3004
|
+
echo -e "${RED}Error: PRD file not found: $prd_file${NC}"
|
|
3005
|
+
exit 1
|
|
3006
|
+
fi
|
|
3007
|
+
export PURPLE_LAB_PRD
|
|
3008
|
+
PURPLE_LAB_PRD=$(cat "$prd_file")
|
|
3009
|
+
fi
|
|
3010
|
+
|
|
2996
3011
|
# Check that web-app dist exists
|
|
2997
3012
|
local web_dist="${SKILL_DIR}/web-app/dist"
|
|
2998
3013
|
if [ ! -d "$web_dist" ] || [ ! -f "$web_dist/index.html" ]; then
|
|
@@ -14028,6 +14043,7 @@ cmd_metrics() {
|
|
|
14028
14043
|
|
|
14029
14044
|
local metrics_output
|
|
14030
14045
|
metrics_output=$(LOKI_DIR="$loki_dir" \
|
|
14046
|
+
LOKI_SKILL_DIR="$SKILL_DIR" \
|
|
14031
14047
|
METRICS_JSON="$show_json" \
|
|
14032
14048
|
METRICS_LAST_N="$last_n" \
|
|
14033
14049
|
METRICS_SAVE="$save_file" \
|
|
@@ -14244,12 +14260,17 @@ if os.path.isdir(semantic_dir):
|
|
|
14244
14260
|
semantic_count += len([f for f in files if f.endswith(".json")])
|
|
14245
14261
|
|
|
14246
14262
|
# --- Build output ---
|
|
14247
|
-
version = "6.
|
|
14263
|
+
version = "6.33.0"
|
|
14248
14264
|
try:
|
|
14249
|
-
|
|
14250
|
-
|
|
14251
|
-
|
|
14252
|
-
|
|
14265
|
+
skill_dir = os.environ.get("LOKI_SKILL_DIR", "")
|
|
14266
|
+
version_candidates = [
|
|
14267
|
+
os.path.join(skill_dir, "VERSION") if skill_dir else "",
|
|
14268
|
+
"VERSION",
|
|
14269
|
+
"../VERSION",
|
|
14270
|
+
os.path.join(loki_dir, "..", "VERSION"),
|
|
14271
|
+
]
|
|
14272
|
+
for vf in version_candidates:
|
|
14273
|
+
if vf and os.path.isfile(vf):
|
|
14253
14274
|
with open(vf) as f:
|
|
14254
14275
|
version = f.read().strip()
|
|
14255
14276
|
break
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED