-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.46 KB
/
package.json
File metadata and controls
135 lines (135 loc) · 4.46 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
130
131
132
133
134
135
{
"name": "loki-mode",
"version": "7.5.17",
"description": "Loki Mode by Autonomi. Multi-agent autonomous SDLC framework. Spec to deployed app: PRD, GitHub issue, OpenAPI/JSON/YAML, or one-line brief. 5 AI providers (Claude Code, OpenAI Codex, Google Gemini, Cline, Aider). 11 quality gates.",
"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": "bin/loki"
},
"files": [
"SKILL.md",
"VERSION",
"autonomy/",
"providers/",
"agents/",
"skills/",
"references/",
"docs/**/*.md",
"bin/",
"bin/loki",
"loki-ts/dist/",
"loki-ts/package.json",
"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": {
"prepack": "find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null; find . -name '*.pyc' -delete 2>/dev/null; if command -v bun >/dev/null 2>&1; then (cd loki-ts && bun install --production && bun run build) || echo 'WARN: loki-ts build failed, using existing dist if present'; else echo 'WARN: bun not on PATH, skipping loki-ts build (using committed dist if present)'; fi; true",
"prepublishOnly": "cd dashboard-ui && npm ci && npm run build:all && test -f ../dashboard/static/index.html",
"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 && bash tests/managed_memory/test_flag_matrix.sh && bash tests/managed_memory/test_sdk_isolation.sh && bash tests/managed_memory/test_kill_switch.sh && python3 -m unittest tests.managed_memory.test_shadow_write_mock tests.managed_memory.test_retrieve_mock && 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",
"test:integration": "bash tests/integration/run_integration_suite.sh"
},
"engines": {
"node": ">=20.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"
},
"overrides": {
"protobufjs": ">=7.5.6"
},
"devDependencies": {
"@types/node": "^25.2.0",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"typescript": "^5.9.3"
}
}