loki-mode 6.55.0 → 6.56.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/SKILL.md +2 -2
- package/VERSION +1 -1
- package/autonomy/loki +1 -1
- package/dashboard/__init__.py +1 -1
- package/docs/INSTALLATION.md +1 -1
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
- package/web-app/server.py +10 -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 minimal human intervention. Requires --dangerously-skip-permissions flag.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Loki Mode v6.
|
|
6
|
+
# Loki Mode v6.56.0
|
|
7
7
|
|
|
8
8
|
**You are an autonomous agent. You make decisions. You do not ask questions. You do not stop.**
|
|
9
9
|
|
|
@@ -267,4 +267,4 @@ The following features are documented in skill modules but not yet fully automat
|
|
|
267
267
|
| Quality gates 3-reviewer system | Implemented (v5.35.0) | 5 specialist reviewers in `skills/quality-gates.md`; execution in run.sh |
|
|
268
268
|
| Benchmarks (HumanEval, SWE-bench) | Infrastructure only | Runner scripts and datasets exist in `benchmarks/`; no published results |
|
|
269
269
|
|
|
270
|
-
**v6.
|
|
270
|
+
**v6.56.0 | [Autonomi](https://www.autonomi.dev/) flagship product | ~260 lines core**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.56.0
|
package/autonomy/loki
CHANGED
|
@@ -190,7 +190,7 @@ ensure_dashboard_venv() {
|
|
|
190
190
|
if [ "$installed" = false ]; then
|
|
191
191
|
# Install without greenlet first (it may need a C compiler).
|
|
192
192
|
# SQLAlchemy only requires greenlet for sync-in-async; aiosqlite is pure async.
|
|
193
|
-
if ! "${dashboard_venv}/bin/pip" install fastapi uvicorn pydantic websockets sqlalchemy aiosqlite 2>&1 | tail -1; then
|
|
193
|
+
if ! "${dashboard_venv}/bin/pip" install fastapi uvicorn pydantic websockets sqlalchemy aiosqlite httpx pexpect watchdog 2>&1 | tail -1; then
|
|
194
194
|
echo -e "${RED}Failed to install dashboard dependencies${NC}"
|
|
195
195
|
echo "Try manually: ${dashboard_venv}/bin/pip install fastapi uvicorn sqlalchemy aiosqlite"
|
|
196
196
|
return 1
|
package/dashboard/__init__.py
CHANGED
package/docs/INSTALLATION.md
CHANGED
package/mcp/__init__.py
CHANGED
package/package.json
CHANGED
package/web-app/server.py
CHANGED
|
@@ -2862,7 +2862,16 @@ async def get_devserver_status(session_id: str) -> JSONResponse:
|
|
|
2862
2862
|
@app.api_route("/proxy/{session_id}/{path:path}",
|
|
2863
2863
|
methods=["GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS", "HEAD"])
|
|
2864
2864
|
async def proxy_to_devserver(session_id: str, path: str, request: Request):
|
|
2865
|
-
"""Proxy requests to the dev server running for this session.
|
|
2865
|
+
"""Proxy requests to the dev server running for this session."""
|
|
2866
|
+
try:
|
|
2867
|
+
return await _do_proxy(session_id, path, request)
|
|
2868
|
+
except Exception as e:
|
|
2869
|
+
logger.error("Proxy error for %s/%s: %s", session_id, path, e, exc_info=True)
|
|
2870
|
+
return JSONResponse({"error": f"Proxy failed: {e}"}, status_code=502)
|
|
2871
|
+
|
|
2872
|
+
|
|
2873
|
+
async def _do_proxy(session_id: str, path: str, request: Request):
|
|
2874
|
+
"""Internal proxy implementation.
|
|
2866
2875
|
|
|
2867
2876
|
Uses streaming to handle large responses without buffering them entirely
|
|
2868
2877
|
in memory (important for JS bundles, images, etc.).
|