loki-mode 7.29.0 → 7.31.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 +5 -3
- package/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/context-tracker.py +8 -0
- package/autonomy/loki +525 -122
- package/autonomy/mcp-launch.sh +384 -0
- package/autonomy/run.sh +148 -1
- package/bin/loki +19 -0
- package/dashboard/__init__.py +1 -1
- package/dashboard/server.py +226 -1
- package/dashboard/static/index.html +105 -39
- package/docs/INSTALLATION.md +1 -1
- package/docs/competitive/emergence-others-analysis.md +1 -1
- package/docs/competitive/replit-lovable-analysis.md +2 -2
- package/loki-ts/data/model-pricing.json +1 -0
- package/loki-ts/dist/loki.js +233 -232
- package/mcp/__init__.py +1 -1
- package/mcp/_sdk_loader.py +157 -0
- package/mcp/lsp_proxy.py +61 -61
- package/mcp/server.py +74 -38
- package/package.json +1 -1
- package/providers/claude.sh +76 -19
- package/providers/model_catalog.json +9 -0
- package/skills/model-selection.md +44 -0
- package/templates/simple-todo-app.md +3 -0
package/docs/INSTALLATION.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The flagship product of [Autonomi](https://www.autonomi.dev/). Loki Mode is a spec-driven autonomous builder with a built-in trust layer that takes any spec to a deployed product and verifies completion with evidence (quality gates plus a completion council), not just a "done" claim. Complete installation instructions for all platforms and use cases.
|
|
4
4
|
|
|
5
|
-
**Version:** v7.
|
|
5
|
+
**Version:** v7.31.0
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -297,7 +297,7 @@ Developers who value open-source tooling, speed, and terminal-native workflows.
|
|
|
297
297
|
| **Benchmark (SWE-bench)** | N/A | N/A | 80.9% (Opus 4.5) | 56.8% (Pro) | Configurable (uses any model) |
|
|
298
298
|
| **CLI Interface** | No (Python API) | No (web UI) | Yes | Yes | Yes |
|
|
299
299
|
| **IDE Integration** | No | No | Yes (VS Code, JetBrains) | No | Yes (VS Code extension) |
|
|
300
|
-
| **MCP Support** | No | No | Yes | Yes | Yes (
|
|
300
|
+
| **MCP Support** | No | No | Yes | Yes | Yes (34 tools) |
|
|
301
301
|
| **Cost (Heavy Use)** | Enterprise contract | $100/mo | $200/mo or API | $20-200/mo or API | $0 + API costs |
|
|
302
302
|
| **Context Window** | Model-dependent | N/A | 200K tokens | Model-dependent | Model-dependent |
|
|
303
303
|
|
|
@@ -368,7 +368,7 @@ Replit Agent has evolved rapidly through four major versions:
|
|
|
368
368
|
| Figma | MCP + Import | Builder.io plugin | No |
|
|
369
369
|
| GitHub | Yes | Bidirectional sync | Full Git workflow |
|
|
370
370
|
| Slack/Notion/Linear | Native connectors | No | Via MCP (extensible) |
|
|
371
|
-
| Custom MCP | Yes | No | Yes (
|
|
371
|
+
| Custom MCP | Yes | No | Yes (34 MCP tools) |
|
|
372
372
|
| Salesforce | Native connector | No | No |
|
|
373
373
|
| BigQuery/Snowflake | Native connectors | No | No |
|
|
374
374
|
|
|
@@ -544,7 +544,7 @@ When positioning Loki Mode against Replit and Lovable, emphasize:
|
|
|
544
544
|
| Dashboard active sessions | Monitoring only | Build-along interface |
|
|
545
545
|
| Figma integration | None | MCP connector live |
|
|
546
546
|
| Starter templates | 13 PRD templates | +5 full-stack starter kits |
|
|
547
|
-
| MCP connectors |
|
|
547
|
+
| MCP connectors | 34 tools | 34 tools + prebuilt connectors for common services |
|
|
548
548
|
| Cost transparency | Token tracking exists | Real-time cost dashboard |
|
|
549
549
|
|
|
550
550
|
---
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
"_updated": "2026-05-22",
|
|
5
5
|
"_source": "https://www.anthropic.com/pricing + provider docs",
|
|
6
6
|
"pricing": {
|
|
7
|
+
"fable": { "input": 10.0, "output": 50.0 },
|
|
7
8
|
"opus": { "input": 5.0, "output": 25.0 },
|
|
8
9
|
"sonnet": { "input": 3.0, "output": 15.0 },
|
|
9
10
|
"haiku": { "input": 1.0, "output": 5.0 },
|