-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.67 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "loki-mode",
"version": "6.80.1",
"description": "Loki Mode by Autonomi - Multi-agent autonomous startup system for Claude Code, Codex CLI, and Gemini CLI",
"keywords": [
"agent",
"agent-orchestration",
"ai",
"ai-agent",
"ai-agents",
"anthropic",
"automation",
"autonomi",
"autonomous",
"claude",
"claude-code",
"cli",
"code-generation",
"codex",
"coding-assistant",
"consensus",
"developer-tools",
"devtools",
"distributed-systems",
"embeddings",
"enterprise",
"gemini",
"gemini-cli",
"gpt",
"hive-mind",
"large-language-model",
"llm",
"loki-mode",
"machine-learning",
"mcp",
"mistral",
"model-context-protocol",
"multi-agent",
"ollama",
"openai",
"openclaw",
"opencode",
"orchestration",
"prd",
"self-learning",
"swarm",
"swarm-intelligence",
"testing",
"workflow"
],
"homepage": "https://www.autonomi.dev/",
"bugs": {
"url": "https://github.com/asklokesh/loki-mode/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asklokesh/loki-mode.git"
},
"license": "BUSL-1.1",
"author": "Lokesh",
"bin": {
"loki": "autonomy/loki",
"loki-mode": "bin/loki-mode.js"
},
"files": [
"SKILL.md",
"VERSION",
"autonomy/",
"providers/",
"skills/",
"references/",
"docs/**/*.md",
"bin/",
"api/",
"events/",
"memory/",
"learning/",
"magic/",
"templates/",
"dashboard/*.py",
"dashboard/static/",
"dashboard/requirements.txt",
"mcp/",
"state/",
"integrations/",
"completions/",
"src/",
"web-app/dist/",
"web-app/server.py",
"web-app/auth.py",
"web-app/models.py",
"web-app/crypto.py",
"web-app/requirements.txt",
"web-app/alembic.ini",
"web-app/migrations/",
"web-app/Dockerfile",
"web-app/docker-compose.purple-lab.yml",
"web-app/deploy/"
],
"scripts": {
"postinstall": "node bin/postinstall.js",
"prepack": "find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null; find . -name '*.pyc' -delete 2>/dev/null; true",
"prepublishOnly": "cd dashboard-ui && npm ci && npm run build:all",
"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'",
"test:visual": "node --experimental-vm-modules node_modules/jest/bin/jest.js dashboard-ui/tests/visual-regression.test.js",
"test:parity": "node --experimental-vm-modules dashboard-ui/scripts/check-parity.js",
"test:parity:json": "node --experimental-vm-modules dashboard-ui/scripts/check-parity.js --json",
"test:dashboard": "npm run test:visual && npm run test:parity"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux"
],
"optionalDependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-node": "^1.30.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.57.0"
},
"devDependencies": {
"@types/node": "^25.2.0",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"typescript": "^5.9.3"
}
}