loki-mode 7.0.2 → 7.2.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 +4 -4
- package/VERSION +1 -1
- package/dashboard/__init__.py +1 -1
- package/dashboard/static/index.html +464 -73
- package/docs/INSTALLATION.md +22 -68
- package/mcp/__init__.py +1 -1
- package/memory/managed_memory/client.py +30 -5
- package/memory/managed_memory/events.py +48 -1
- package/package.json +1 -1
- package/skills/memory.md +2 -2
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.0
|
|
6
|
+
# Loki Mode v7.2.0
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -271,14 +271,14 @@ Auto-detected or force with `LOKI_COMPLEXITY`:
|
|
|
271
271
|
|
|
272
272
|
---
|
|
273
273
|
|
|
274
|
-
## Managed Agents Integration (v7.0
|
|
274
|
+
## Managed Agents Integration (v7.2.0)
|
|
275
275
|
|
|
276
276
|
Opt-in integration with Claude Managed Agents (released Apr 2026). Gives
|
|
277
277
|
Loki cross-project audited memory and real multiagent councils. Features
|
|
278
278
|
are BAKED INTO existing RARV-C and council flows -- no new commands to
|
|
279
279
|
learn.
|
|
280
280
|
|
|
281
|
-
**All flags default false.** Default behavior is identical to v7.0.
|
|
281
|
+
**All flags default false.** Default behavior is identical to v7.2.0.
|
|
282
282
|
|
|
283
283
|
| Flag | Purpose | Status |
|
|
284
284
|
|------|---------|--------|
|
|
@@ -320,4 +320,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
320
320
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
321
321
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
322
322
|
|
|
323
|
-
**v7.0
|
|
323
|
+
**v7.2.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
7.0
|
|
1
|
+
7.2.0
|