loki-mode 5.52.3 → 5.53.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/README.md +1 -1
- package/SKILL.md +2 -2
- package/VERSION +1 -1
- package/dashboard/__init__.py +1 -1
- package/dashboard/static/index.html +404 -377
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +38 -10
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED
package/package.json
CHANGED
|
@@ -1,24 +1,52 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loki-mode",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.53.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
|
+
"agent",
|
|
7
|
+
"agent-orchestration",
|
|
8
|
+
"ai",
|
|
9
|
+
"ai-agent",
|
|
10
|
+
"ai-agents",
|
|
11
|
+
"anthropic",
|
|
12
|
+
"automation",
|
|
6
13
|
"autonomi",
|
|
7
|
-
"
|
|
14
|
+
"autonomous",
|
|
8
15
|
"claude",
|
|
9
16
|
"claude-code",
|
|
17
|
+
"cli",
|
|
18
|
+
"code-generation",
|
|
10
19
|
"codex",
|
|
20
|
+
"coding-assistant",
|
|
21
|
+
"consensus",
|
|
22
|
+
"developer-tools",
|
|
23
|
+
"devtools",
|
|
24
|
+
"distributed-systems",
|
|
25
|
+
"embeddings",
|
|
26
|
+
"enterprise",
|
|
11
27
|
"gemini",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
28
|
+
"gemini-cli",
|
|
29
|
+
"gpt",
|
|
30
|
+
"hive-mind",
|
|
31
|
+
"large-language-model",
|
|
32
|
+
"llm",
|
|
33
|
+
"loki-mode",
|
|
34
|
+
"machine-learning",
|
|
35
|
+
"mcp",
|
|
36
|
+
"mistral",
|
|
37
|
+
"model-context-protocol",
|
|
16
38
|
"multi-agent",
|
|
39
|
+
"ollama",
|
|
40
|
+
"openai",
|
|
41
|
+
"openclaw",
|
|
42
|
+
"opencode",
|
|
43
|
+
"orchestration",
|
|
17
44
|
"prd",
|
|
18
|
-
"
|
|
45
|
+
"self-learning",
|
|
46
|
+
"swarm",
|
|
47
|
+
"swarm-intelligence",
|
|
19
48
|
"testing",
|
|
20
|
-
"
|
|
21
|
-
"llm"
|
|
49
|
+
"workflow"
|
|
22
50
|
],
|
|
23
51
|
"homepage": "https://www.autonomi.dev/",
|
|
24
52
|
"bugs": {
|
|
@@ -59,7 +87,7 @@
|
|
|
59
87
|
"postinstall": "node bin/postinstall.js",
|
|
60
88
|
"prepack": "find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null; find . -name '*.pyc' -delete 2>/dev/null; true",
|
|
61
89
|
"prepublishOnly": "cd dashboard-ui && npm ci && npm run build:all",
|
|
62
|
-
"test": "bash -n autonomy/run.sh && bash -n autonomy/loki && bash -n autonomy/completion-council.sh && bash -n autonomy/app-runner.sh && bash -n autonomy/prd-checklist.sh && bash -n autonomy/playwright-verify.sh && node --test
|
|
90
|
+
"test": "bash -n autonomy/run.sh && bash -n autonomy/loki && bash -n autonomy/completion-council.sh && bash -n autonomy/app-runner.sh && bash -n autonomy/prd-checklist.sh && bash -n autonomy/playwright-verify.sh && node --test tests/protocols/*.test.js && node --test tests/protocols/a2a/*.test.js && node --test tests/observability/*.test.js && node --test tests/policies/*.test.js && node --test tests/audit/*.test.js && node --test tests/integrations/*.test.js && node --test tests/integrations/jira/*.test.js && node --test tests/integrations/github/*.test.js && node --test tests/integrations/slack/*.test.js && echo 'All checks passed'",
|
|
63
91
|
"test:visual": "node --experimental-vm-modules node_modules/jest/bin/jest.js dashboard-ui/tests/visual-regression.test.js",
|
|
64
92
|
"test:parity": "node --experimental-vm-modules dashboard-ui/scripts/check-parity.js",
|
|
65
93
|
"test:parity:json": "node --experimental-vm-modules dashboard-ui/scripts/check-parity.js --json",
|