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 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.0
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.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
270
+ **v6.33.1 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 6.33.0
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.32.0"
14263
+ version = "6.33.0"
14248
14264
  try:
14249
- version_file = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "VERSION")
14250
- # In heredoc context, __file__ is not reliable; try relative
14251
- for vf in ["VERSION", "../VERSION", os.path.join(loki_dir, "..", "VERSION")]:
14252
- if os.path.isfile(vf):
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
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "6.33.0"
10
+ __version__ = "6.34.0"
11
11
 
12
12
  # Expose the control app for easy import
13
13
  try:
@@ -2,7 +2,7 @@
2
2
 
3
3
  The flagship product of [Autonomi](https://www.autonomi.dev/). Complete installation instructions for all platforms and use cases.
4
4
 
5
- **Version:** v6.33.0
5
+ **Version:** v6.33.1
6
6
 
7
7
  ---
8
8
 
package/mcp/__init__.py CHANGED
@@ -57,4 +57,4 @@ try:
57
57
  except ImportError:
58
58
  __all__ = ['mcp']
59
59
 
60
- __version__ = '6.33.0'
60
+ __version__ = '6.33.1'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loki-mode",
3
- "version": "6.33.0",
3
+ "version": "6.34.0",
4
4
  "description": "Loki Mode by Autonomi - Multi-agent autonomous startup system for Claude Code, Codex CLI, and Gemini CLI",
5
5
  "keywords": [
6
6
  "agent",