loki-mode 6.33.1 → 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/VERSION +1 -1
- package/autonomy/loki +15 -0
- package/dashboard/__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/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
|
package/dashboard/__init__.py
CHANGED