loki-mode 7.4.12 → 7.4.14

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/README.md CHANGED
@@ -35,12 +35,18 @@
35
35
 
36
36
  ## Get Started in 30 Seconds
37
37
 
38
+ **Recommended (Bun, fastest):**
39
+
38
40
  ```bash
39
- npm install -g loki-mode
40
- loki doctor # verify environment
41
+ # Install Bun once (skip if you already have it)
42
+ curl -fsSL https://bun.sh/install | bash # macOS / Linux
43
+ # or: brew install oven-sh/bun/bun
44
+
45
+ bun install -g loki-mode
46
+ loki doctor # verify environment
41
47
  loki init my-app --template simple-todo-app
42
48
  cd my-app
43
- loki start prd.md # autonomous build starts
49
+ loki start prd.md # autonomous build starts
44
50
  ```
45
51
 
46
52
  Or skip scaffolding and go straight to a quick task:
@@ -49,6 +55,27 @@ Or skip scaffolding and go straight to a quick task:
49
55
  loki quick "build a landing page with a signup form"
50
56
  ```
51
57
 
58
+ **Other install methods (all work, all keep working):**
59
+
60
+ | Method | Command | Notes |
61
+ |--------|---------|-------|
62
+ | **Bun (recommended)** | `bun install -g loki-mode` | Fastest. v8 will be Bun-only. |
63
+ | **Homebrew** | `brew tap asklokesh/tap && brew install loki-mode` | Auto-installs Bun as a dep |
64
+ | **Docker** | `docker pull asklokesh/loki-mode && docker run --rm asklokesh/loki-mode start prd.md` | Bun pre-installed in image |
65
+ | **npm (compat)** | `npm install -g loki-mode` | Works without Bun (bash fallback). Migrate any time with `loki self-update --to bun`. |
66
+
67
+ **Upgrading:**
68
+
69
+ ```bash
70
+ loki self-update # upgrade in place via current manager
71
+ loki self-update --to bun # switch from npm/brew to Bun
72
+ loki self-update --check # show current install path + manager
73
+ ```
74
+
75
+ `loki self-update` auto-detects which package manager installed loki and runs the right upgrade. If you installed via npm and want to switch to Bun (recommended for v8.0.0 forward-compat), `loki self-update --to bun` does the migration in one command (installs via Bun first, then uninstalls the npm copy).
76
+
77
+ See the [Installation Guide](docs/INSTALLATION.md) for the long form.
78
+
52
79
  ---
53
80
 
54
81
  ## Runtime Architecture
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 v7.4.12
6
+ # Loki Mode v7.4.14
7
7
 
8
8
  **You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
9
9
 
@@ -322,4 +322,4 @@ The following features are documented in skill modules but not yet fully automat
322
322
  | Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
323
323
  | Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
324
324
 
325
- **v7.4.12 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
325
+ **v7.4.14 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
package/VERSION CHANGED
@@ -1 +1 @@
1
- 7.4.12
1
+ 7.4.14
package/autonomy/loki CHANGED
@@ -457,6 +457,7 @@ show_help() {
457
457
  echo " reset [target] Reset session state (all|retries|failed)"
458
458
  echo " doctor [--json] Check system prerequisites and skill symlinks"
459
459
  echo " setup-skill Create skill symlinks for all providers"
460
+ echo " self-update Upgrade loki via current manager (use --to bun|npm|brew to switch)"
460
461
  echo " watchdog [cmd] Process health monitoring (status|help)"
461
462
  echo " telemetry [cmd] OpenTelemetry management (status|enable|disable)"
462
463
  echo " worktree [cmd] Parallel worktree management (list|merge|clean|status)"
@@ -6230,6 +6231,198 @@ cmd_setup_skill() {
6230
6231
  return 0
6231
6232
  }
6232
6233
 
6234
+ # v7.4.14: cmd_self_update -- one upgrade command for everyone.
6235
+ #
6236
+ # Auto-detects which package manager installed `loki` (npm, bun, brew) by
6237
+ # resolving the binary path, and runs the right upgrade command.
6238
+ #
6239
+ # `--to <mgr>` switches managers (installs via the new one, then uninstalls
6240
+ # the old). Useful for npm users wanting to migrate to Bun (the v8.0.0
6241
+ # direction).
6242
+ #
6243
+ # Usage:
6244
+ # loki self-update Upgrade in-place via current manager
6245
+ # loki self-update --to bun Switch from current to Bun
6246
+ # loki self-update --to npm Switch from current to npm
6247
+ # loki self-update --to brew Switch from current to Homebrew
6248
+ # loki self-update --check Print detection result + exit 0
6249
+ #
6250
+ cmd_self_update() {
6251
+ local target_manager=""
6252
+ local check_only=false
6253
+
6254
+ while [ $# -gt 0 ]; do
6255
+ case "$1" in
6256
+ --to)
6257
+ if [ -z "${2:-}" ]; then
6258
+ echo -e "${RED}--to requires an argument: bun|npm|brew${NC}" >&2
6259
+ return 1
6260
+ fi
6261
+ target_manager="$2"
6262
+ shift 2
6263
+ ;;
6264
+ --check)
6265
+ check_only=true
6266
+ shift
6267
+ ;;
6268
+ --help|-h)
6269
+ cat <<'EOF'
6270
+ loki self-update -- detect manager and upgrade in place, or switch managers
6271
+
6272
+ Usage:
6273
+ loki self-update Upgrade via current manager
6274
+ loki self-update --to bun Switch to Bun (recommended for v8)
6275
+ loki self-update --to npm Switch to npm
6276
+ loki self-update --to brew Switch to Homebrew
6277
+ loki self-update --check Print detected manager and exit
6278
+ loki self-update --help Show this help
6279
+
6280
+ Auto-detection looks at the resolved path of the `loki` binary:
6281
+ ~/.bun/bin/loki -> bun
6282
+ /opt/homebrew/Cellar/loki-mode -> brew (also /usr/local/Cellar)
6283
+ npm prefix + /bin/loki -> npm
6284
+ anywhere else -> unknown
6285
+
6286
+ Switching managers installs via the new one first (so a failed install
6287
+ does not leave you with no loki), then uninstalls the old one.
6288
+ EOF
6289
+ return 0
6290
+ ;;
6291
+ *)
6292
+ echo -e "${RED}Unknown argument: $1${NC}" >&2
6293
+ echo "Run 'loki self-update --help' for usage." >&2
6294
+ return 1
6295
+ ;;
6296
+ esac
6297
+ done
6298
+
6299
+ # Detect current install path
6300
+ local resolved current_mgr=""
6301
+ if ! resolved=$(command -v loki 2>/dev/null); then
6302
+ echo -e "${RED}loki is not on PATH. Cannot self-update.${NC}" >&2
6303
+ return 1
6304
+ fi
6305
+
6306
+ # Follow symlinks to find the real binary location
6307
+ local resolved_real
6308
+ if command -v realpath >/dev/null 2>&1; then
6309
+ resolved_real=$(realpath "$resolved" 2>/dev/null || echo "$resolved")
6310
+ else
6311
+ resolved_real="$resolved"
6312
+ fi
6313
+
6314
+ case "$resolved_real" in
6315
+ */.bun/bin/*|*/.bun/install/global/*)
6316
+ current_mgr="bun"
6317
+ ;;
6318
+ */Cellar/*|*/homebrew/Cellar/*|*/linuxbrew/Cellar/*)
6319
+ current_mgr="brew"
6320
+ ;;
6321
+ *)
6322
+ # Try matching against npm global prefix
6323
+ if command -v npm >/dev/null 2>&1; then
6324
+ local npm_prefix
6325
+ npm_prefix=$(npm prefix -g 2>/dev/null || true)
6326
+ if [ -n "$npm_prefix" ] && [[ "$resolved_real" == "$npm_prefix"/* ]]; then
6327
+ current_mgr="npm"
6328
+ fi
6329
+ fi
6330
+ ;;
6331
+ esac
6332
+
6333
+ [ -z "$current_mgr" ] && current_mgr="unknown"
6334
+
6335
+ if [ "$check_only" = "true" ]; then
6336
+ echo "loki binary: $resolved"
6337
+ echo "resolved path: $resolved_real"
6338
+ echo "current mgr: $current_mgr"
6339
+ return 0
6340
+ fi
6341
+
6342
+ # Default target: same as current (in-place upgrade)
6343
+ [ -z "$target_manager" ] && target_manager="$current_mgr"
6344
+
6345
+ echo -e "${BOLD}loki self-update${NC}"
6346
+ echo " current: $current_mgr ($resolved_real)"
6347
+ echo " target: $target_manager"
6348
+ echo
6349
+
6350
+ # Same-manager upgrade
6351
+ if [ "$target_manager" = "$current_mgr" ]; then
6352
+ case "$current_mgr" in
6353
+ npm)
6354
+ echo "Running: npm install -g loki-mode@latest"
6355
+ npm install -g loki-mode@latest
6356
+ ;;
6357
+ bun)
6358
+ echo "Running: bun update -g loki-mode (falling back to install if not present)"
6359
+ bun update -g loki-mode 2>/dev/null || bun install -g loki-mode@latest
6360
+ ;;
6361
+ brew)
6362
+ echo "Running: brew upgrade loki-mode"
6363
+ brew upgrade loki-mode
6364
+ ;;
6365
+ unknown)
6366
+ echo -e "${RED}Cannot detect package manager from path: $resolved_real${NC}" >&2
6367
+ echo "Run 'loki self-update --to bun' (or npm/brew) to install fresh via that manager." >&2
6368
+ return 1
6369
+ ;;
6370
+ esac
6371
+ local rc=$?
6372
+ if [ "$rc" -eq 0 ]; then
6373
+ echo
6374
+ echo -e "${GREEN}Upgrade complete.${NC} Verify with: loki version"
6375
+ fi
6376
+ return "$rc"
6377
+ fi
6378
+
6379
+ # Cross-manager switch: install new, then uninstall old
6380
+ case "$target_manager" in
6381
+ bun)
6382
+ if ! command -v bun >/dev/null 2>&1; then
6383
+ echo -e "${RED}bun is not installed.${NC} Install it first:" >&2
6384
+ echo " brew install oven-sh/bun/bun # macOS via Homebrew" >&2
6385
+ echo " curl -fsSL https://bun.sh/install | bash # any platform" >&2
6386
+ return 1
6387
+ fi
6388
+ echo "Installing via Bun: bun install -g loki-mode@latest"
6389
+ bun install -g loki-mode@latest || return 1
6390
+ ;;
6391
+ npm)
6392
+ command -v npm >/dev/null 2>&1 || { echo -e "${RED}npm not found${NC}" >&2; return 1; }
6393
+ echo "Installing via npm: npm install -g loki-mode@latest"
6394
+ npm install -g loki-mode@latest || return 1
6395
+ ;;
6396
+ brew)
6397
+ command -v brew >/dev/null 2>&1 || { echo -e "${RED}brew not found${NC}" >&2; return 1; }
6398
+ echo "Tapping + installing via Homebrew"
6399
+ brew tap asklokesh/tap 2>/dev/null || true
6400
+ brew install loki-mode || brew upgrade loki-mode || return 1
6401
+ ;;
6402
+ *)
6403
+ echo -e "${RED}Unknown target manager: $target_manager${NC} (use bun, npm, or brew)" >&2
6404
+ return 1
6405
+ ;;
6406
+ esac
6407
+
6408
+ # New install succeeded -- uninstall old. Best-effort; failures are
6409
+ # non-fatal because the user already has the new binary working.
6410
+ if [ "$current_mgr" != "unknown" ]; then
6411
+ echo
6412
+ echo "Removing old install via $current_mgr..."
6413
+ case "$current_mgr" in
6414
+ npm) npm uninstall -g loki-mode 2>/dev/null || true ;;
6415
+ bun) bun remove -g loki-mode 2>/dev/null || true ;;
6416
+ brew) brew uninstall loki-mode 2>/dev/null || true ;;
6417
+ esac
6418
+ fi
6419
+
6420
+ echo
6421
+ echo -e "${GREEN}Switched from $current_mgr to $target_manager.${NC}"
6422
+ echo "New binary: $(command -v loki 2>/dev/null || echo 'restart your shell to pick up new PATH')"
6423
+ return 0
6424
+ }
6425
+
6233
6426
  # Check system prerequisites
6234
6427
  cmd_doctor() {
6235
6428
  local json_output=false
@@ -11536,18 +11729,9 @@ main() {
11536
11729
  local command="$1"
11537
11730
  shift
11538
11731
 
11539
- # v7.4.12: one-shot install/first-run telemetry. Replaces the
11540
- # bin/postinstall.js install event (postinstall removed because Bun
11541
- # blocks postinstalls by default and the prompt was confusing).
11542
- # Creates ~/.loki-first-run on first invocation; fires "installed"
11543
- # event ONCE per install with channel attribution. Idempotent + silent.
11544
- if [ -z "${LOKI_TELEMETRY_DISABLED:-}" ] && [ "${DO_NOT_TRACK:-}" != "1" ]; then
11545
- if [ ! -f "${HOME}/.loki-first-run" ] 2>/dev/null; then
11546
- touch "${HOME}/.loki-first-run" 2>/dev/null || true
11547
- loki_telemetry "installed" "first_command=$command" 2>/dev/null || true
11548
- fi
11549
- fi
11550
-
11732
+ # v7.4.13: first-run telemetry moved to bin/loki shim so it fires for
11733
+ # both Bun-routed and bash-routed commands (autonomy/loki main() never
11734
+ # runs for the 8 ported commands). Marker file: ~/.loki-first-run.
11551
11735
  loki_telemetry "cli_command" "command=$command" 2>/dev/null || true
11552
11736
 
11553
11737
  case "$command" in
@@ -11666,6 +11850,9 @@ main() {
11666
11850
  setup-skill)
11667
11851
  cmd_setup_skill "$@"
11668
11852
  ;;
11853
+ self-update|self_update|update)
11854
+ cmd_self_update "$@"
11855
+ ;;
11669
11856
  watchdog)
11670
11857
  cmd_watchdog "$@"
11671
11858
  ;;
package/bin/loki CHANGED
@@ -63,6 +63,22 @@ else
63
63
  exec "$BASH_CLI" "$@"
64
64
  fi
65
65
 
66
+ # v7.4.13: one-shot first-run telemetry, MOVED from autonomy/loki main()
67
+ # into the shim because the 8 ported commands (version, status, doctor,
68
+ # stats, provider, memory) bypass main() entirely -- only unported
69
+ # commands triggered the original hook. Now fires regardless of route.
70
+ # Fire-and-forget; opt-out via LOKI_TELEMETRY_DISABLED=true or
71
+ # DO_NOT_TRACK=1 (mirrors autonomy/telemetry.sh contract).
72
+ if [ -z "${LOKI_TELEMETRY_DISABLED:-}" ] && [ "${DO_NOT_TRACK:-}" != "1" ] && [ ! -f "${HOME}/.loki-first-run" ] 2>/dev/null; then
73
+ touch "${HOME}/.loki-first-run" 2>/dev/null || true
74
+ if command -v curl &>/dev/null && [ -f "$REPO_ROOT/autonomy/telemetry.sh" ]; then
75
+ # Source telemetry helpers + fire installed event in background
76
+ # so the user does not pay latency on first invocation.
77
+ ( SCRIPT_DIR="$REPO_ROOT/autonomy"; source "$SCRIPT_DIR/telemetry.sh" 2>/dev/null && loki_telemetry "installed" "first_command=${1:-}" 2>/dev/null ) &
78
+ disown 2>/dev/null || true
79
+ fi
80
+ fi
81
+
66
82
  # Force-fall-through to bash when the rollback flag is set.
67
83
  if [ "${LOKI_LEGACY_BASH:-0}" = "1" ] || [ "${LOKI_LEGACY_BASH:-}" = "true" ]; then
68
84
  exec "$BASH_CLI" "$@"
@@ -7,7 +7,7 @@ Modules:
7
7
  control: Session control API (start/stop/pause/resume)
8
8
  """
9
9
 
10
- __version__ = "7.4.12"
10
+ __version__ = "7.4.14"
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:** v7.4.12
5
+ **Version:** v7.4.14
6
6
 
7
7
  ---
8
8
 
@@ -94,7 +94,7 @@ loki setup-skill
94
94
  ## PyPI / Python SDK
95
95
 
96
96
  **The `loki` CLI is NOT available via `pip install loki-mode`.** PyPI hosts only the
97
- Python REST client SDK at `loki-mode-sdk` (v7.4.12+). The dashboard, MCP server,
97
+ Python REST client SDK at `loki-mode-sdk` (v7.4.14+). The dashboard, MCP server,
98
98
  and orchestrator components ship via npm, Docker, and Homebrew only.
99
99
 
100
100
  ```bash
@@ -263,7 +263,7 @@ Start a session with: loki start <prd>`}}let Z=m0(X);return{exitCode:0,stdout:Q?
263
263
  `),0}async function $3(z){let Q=!1;for(let $ of z)if($==="--json")Q=!0;else if($==="--help"||$==="-h")return e0(),0;else return process.stderr.write(`${S}Unknown option: ${$}${K}
264
264
  `),process.stderr.write(`Usage: loki doctor [--json]
265
265
  `),1;if(Q){let $=await i1();return process.stdout.write(JSON.stringify($,null,2)+`
266
- `),0}return z3()}var r0,s0,i0;var z0=g(()=>{m();Q1();p();r0=/(\d+\.\d+(?:\.\d+)*)/;s0=[{name:"Claude Code",dir:".claude/skills/loki-mode"},{name:"Codex CLI",dir:".codex/skills/loki-mode"},{name:"Gemini CLI",dir:".gemini/skills/loki-mode"},{name:"Cline CLI",dir:".cline/skills/loki-mode"},{name:"Aider CLI",dir:".aider/skills/loki-mode"}];i0=[{displayName:"Node.js (>= 18)",jsonName:"Node.js",cmd:"node",required:"required",min:"18.0"},{displayName:"Python 3 (>= 3.8)",jsonName:"Python 3",cmd:"python3",required:"required",min:"3.8"},{displayName:"jq",jsonName:"jq",cmd:"jq",required:"required"},{displayName:"git",jsonName:"git",cmd:"git",required:"required"},{displayName:"curl",jsonName:"curl",cmd:"curl",required:"required"},{displayName:"bash (>= 4.0)",jsonName:"bash",cmd:"bash",required:"recommended",min:"4.0"},{displayName:"Bun (>= 1.3)",jsonName:"Bun",cmd:"bun",required:"recommended",min:"1.3"},{displayName:"Claude CLI",jsonName:"Claude CLI",cmd:"claude",required:"optional"},{displayName:"Codex CLI",jsonName:"Codex CLI",cmd:"codex",required:"optional"},{displayName:"Gemini CLI",jsonName:"Gemini CLI",cmd:"gemini",required:"optional"},{displayName:"Cline CLI",jsonName:"Cline CLI",cmd:"cline",required:"optional"},{displayName:"Aider CLI",jsonName:"Aider CLI",cmd:"aider",required:"optional"}]});h();import{readFileSync as U0}from"fs";import{resolve as V0,dirname as q0}from"path";import{fileURLToPath as G0}from"url";var v=null;function k1(){if(v!==null)return v;let z="7.4.12";if(typeof z==="string"&&z.length>0)return v=z,v;try{let Q=q0(G0(import.meta.url)),$=U1(Q);v=U0(V0($,"VERSION"),"utf-8").trim()}catch{v="unknown"}return v}function R1(){return process.stdout.write(`Loki Mode v${k1()}
266
+ `),0}return z3()}var r0,s0,i0;var z0=g(()=>{m();Q1();p();r0=/(\d+\.\d+(?:\.\d+)*)/;s0=[{name:"Claude Code",dir:".claude/skills/loki-mode"},{name:"Codex CLI",dir:".codex/skills/loki-mode"},{name:"Gemini CLI",dir:".gemini/skills/loki-mode"},{name:"Cline CLI",dir:".cline/skills/loki-mode"},{name:"Aider CLI",dir:".aider/skills/loki-mode"}];i0=[{displayName:"Node.js (>= 18)",jsonName:"Node.js",cmd:"node",required:"required",min:"18.0"},{displayName:"Python 3 (>= 3.8)",jsonName:"Python 3",cmd:"python3",required:"required",min:"3.8"},{displayName:"jq",jsonName:"jq",cmd:"jq",required:"required"},{displayName:"git",jsonName:"git",cmd:"git",required:"required"},{displayName:"curl",jsonName:"curl",cmd:"curl",required:"required"},{displayName:"bash (>= 4.0)",jsonName:"bash",cmd:"bash",required:"recommended",min:"4.0"},{displayName:"Bun (>= 1.3)",jsonName:"Bun",cmd:"bun",required:"recommended",min:"1.3"},{displayName:"Claude CLI",jsonName:"Claude CLI",cmd:"claude",required:"optional"},{displayName:"Codex CLI",jsonName:"Codex CLI",cmd:"codex",required:"optional"},{displayName:"Gemini CLI",jsonName:"Gemini CLI",cmd:"gemini",required:"optional"},{displayName:"Cline CLI",jsonName:"Cline CLI",cmd:"cline",required:"optional"},{displayName:"Aider CLI",jsonName:"Aider CLI",cmd:"aider",required:"optional"}]});h();import{readFileSync as U0}from"fs";import{resolve as V0,dirname as q0}from"path";import{fileURLToPath as G0}from"url";var v=null;function k1(){if(v!==null)return v;let z="7.4.14";if(typeof z==="string"&&z.length>0)return v=z,v;try{let Q=q0(G0(import.meta.url)),$=U1(Q);v=U0(V0($,"VERSION"),"utf-8").trim()}catch{v="unknown"}return v}function R1(){return process.stdout.write(`Loki Mode v${k1()}
267
267
  `),0}m();p();h();import{readFileSync as A0,existsSync as O0}from"fs";import{resolve as _0}from"path";var T0=["claude","codex","gemini","cline","aider"];function D1(){let z=_0(b(),"state","provider");if(!O0(z))return"";try{return A0(z,"utf-8").trim()}catch{return""}}function I0(z,Q){return z||Q||process.env.LOKI_PROVIDER||"claude"}function w0(z){let Q=D1(),$=I0(z,Q);switch(process.stdout.write(`${x}Current Provider${K}
268
268
  `),process.stdout.write(`
269
269
  `),process.stdout.write(`${G}Provider:${K} ${$}
@@ -339,4 +339,4 @@ Set LOKI_LEGACY_BASH=1 to force the bash CLI for every command.
339
339
  `;async function Q3(z){let Q=z[0],$=z.slice(1);switch(Q){case void 0:case"help":case"--help":case"-h":return process.stdout.write($0),0;case"version":case"--version":case"-v":return R1();case"provider":return E1($);case"memory":return N1($);case"status":{let{runStatus:X}=await Promise.resolve().then(() => (m1(),v1));return X($)}case"stats":{let{runStats:X}=await Promise.resolve().then(() => (d1(),l1));return X($)}case"doctor":{let{runDoctor:X}=await Promise.resolve().then(() => (z0(),e1));return X($)}default:return process.stderr.write(`Unknown command: ${Q}
340
340
  `),process.stderr.write($0),2}}process.on("SIGINT",()=>process.exit(130));process.on("SIGTERM",()=>process.exit(143));var X3=await Q3(Bun.argv.slice(2));process.exit(X3);
341
341
 
342
- //# debugId=4E61A1C5EB88576364756E2164756E21
342
+ //# debugId=CE61E1449AF2B79464756E2164756E21
package/mcp/__init__.py CHANGED
@@ -57,4 +57,4 @@ try:
57
57
  except ImportError:
58
58
  __all__ = ['mcp']
59
59
 
60
- __version__ = '7.4.12'
60
+ __version__ = '7.4.14'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loki-mode",
3
- "version": "7.4.12",
3
+ "version": "7.4.14",
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",