loki-mode 5.20.6 → 5.20.7
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 +3 -3
- package/package.json +1 -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 zero human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v5.20.
|
|
6
|
+
# Loki Mode v5.20.7
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -253,4 +253,4 @@ Auto-detected or force with `LOKI_COMPLEXITY`:
|
|
|
253
253
|
|
|
254
254
|
---
|
|
255
255
|
|
|
256
|
-
**v5.20.
|
|
256
|
+
**v5.20.7 | Dashboard Consolidation, Unified Web Components | ~250 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.20.
|
|
1
|
+
5.20.7
|
package/autonomy/loki
CHANGED
|
@@ -3261,7 +3261,7 @@ try:
|
|
|
3261
3261
|
from memory.engine import MemoryEngine
|
|
3262
3262
|
import json
|
|
3263
3263
|
episode_id = os.environ.get('LOKI_ID', '')
|
|
3264
|
-
engine = MemoryEngine('.loki/memory')
|
|
3264
|
+
engine = MemoryEngine(base_path='.loki/memory')
|
|
3265
3265
|
episode = engine.get_episode(episode_id)
|
|
3266
3266
|
if episode:
|
|
3267
3267
|
print(json.dumps(episode.to_dict(), indent=2))
|
|
@@ -3282,7 +3282,7 @@ except Exception as e:
|
|
|
3282
3282
|
python3 -c "
|
|
3283
3283
|
try:
|
|
3284
3284
|
from memory.engine import MemoryEngine
|
|
3285
|
-
engine = MemoryEngine('.loki/memory')
|
|
3285
|
+
engine = MemoryEngine(base_path='.loki/memory')
|
|
3286
3286
|
patterns = engine.find_patterns()
|
|
3287
3287
|
if not patterns:
|
|
3288
3288
|
print('No patterns found')
|
|
@@ -3303,7 +3303,7 @@ try:
|
|
|
3303
3303
|
from memory.engine import MemoryEngine
|
|
3304
3304
|
import json
|
|
3305
3305
|
pattern_id = os.environ.get('LOKI_ID', '')
|
|
3306
|
-
engine = MemoryEngine('.loki/memory')
|
|
3306
|
+
engine = MemoryEngine(base_path='.loki/memory')
|
|
3307
3307
|
pattern = engine.get_pattern(pattern_id)
|
|
3308
3308
|
if pattern:
|
|
3309
3309
|
print(json.dumps(pattern.to_dict(), indent=2))
|