loki-mode 7.110.0 → 7.112.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/app-runner.sh +5 -2
- package/autonomy/completion-council.sh +8 -1
- package/autonomy/lib/proof-generator.py +10 -4
- package/autonomy/lib/proof-pr.sh +14 -0
- package/autonomy/lib/proof-verify.py +161 -15
- package/autonomy/lib/proof_redact.py +6 -1
- package/autonomy/loki +4 -1
- package/dashboard/__init__.py +1 -1
- package/dashboard/server.py +11 -3
- package/docs/INSTALLATION.md +1 -1
- package/loki-ts/dist/loki.js +228 -219
- package/mcp/__init__.py +1 -1
- package/package.json +1 -1
- package/plugins/loki-mode/.claude-plugin/plugin.json +1 -1
- package/providers/aider.sh +2 -2
- package/providers/claude.sh +1 -1
- package/providers/cline.sh +2 -2
package/mcp/__init__.py
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loki-mode",
|
|
3
3
|
"mcpName": "io.github.asklokesh/loki-mode",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.112.0",
|
|
5
5
|
"description": "Loki Mode by Autonomi. Autonomous spec-to-product system: takes a PRD, GitHub issue, OpenAPI/JSON/YAML, or one-line brief to a deployed app via the RARV-C closure loop with 8 quality gates. Provider-agnostic (Claude Code, OpenAI Codex, Cline, Aider).",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"agent",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
3
3
|
"name": "loki-mode",
|
|
4
4
|
"displayName": "Loki Mode",
|
|
5
|
-
"version": "7.
|
|
5
|
+
"version": "7.112.0",
|
|
6
6
|
"description": "Autonomous spec-to-product build system with a built-in trust layer (RARV-C closure loop, 8 quality gates, completion council). Ships Loki's spec-hardening, drift-detection, and deterministic PR verification commands plus the Loki MCP server.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Autonomi",
|
package/providers/aider.sh
CHANGED
|
@@ -58,9 +58,9 @@ _aider_default_from_catalog() {
|
|
|
58
58
|
if [ -f "${script_dir}/models.sh" ]; then
|
|
59
59
|
# shellcheck source=./models.sh
|
|
60
60
|
source "${script_dir}/models.sh"
|
|
61
|
-
loki_latest_model aider development 2>/dev/null || echo "claude-opus-4-
|
|
61
|
+
loki_latest_model aider development 2>/dev/null || echo "claude-opus-4-8"
|
|
62
62
|
else
|
|
63
|
-
echo "claude-opus-4-
|
|
63
|
+
echo "claude-opus-4-8"
|
|
64
64
|
fi
|
|
65
65
|
}
|
|
66
66
|
AIDER_DEFAULT_MODEL="${LOKI_AIDER_MODEL:-${LOKI_MODEL_DEVELOPMENT:-$(_aider_default_from_catalog)}}"
|
package/providers/claude.sh
CHANGED
|
@@ -48,7 +48,7 @@ PROVIDER_MAX_PARALLEL=10
|
|
|
48
48
|
# The Claude Code CLI resolves aliases (opus/sonnet/haiku) to the latest available
|
|
49
49
|
# model at invocation time, so we pass aliases rather than dated IDs. The canonical
|
|
50
50
|
# mapping lives in providers/model_catalog.json (single source of truth):
|
|
51
|
-
# opus -> latest Opus (e.g. claude-opus-4-
|
|
51
|
+
# opus -> latest Opus (e.g. claude-opus-4-8 -- 1M context, adaptive thinking)
|
|
52
52
|
# sonnet -> latest Sonnet (e.g. claude-sonnet-4-6)
|
|
53
53
|
# haiku -> latest Haiku (e.g. claude-haiku-4-5)
|
|
54
54
|
# Override per tier with LOKI_CLAUDE_MODEL_PLANNING, _DEVELOPMENT, _FAST.
|
package/providers/cline.sh
CHANGED
|
@@ -59,9 +59,9 @@ _cline_default_from_catalog() {
|
|
|
59
59
|
if [ -f "${script_dir}/models.sh" ]; then
|
|
60
60
|
# shellcheck source=./models.sh
|
|
61
61
|
source "${script_dir}/models.sh"
|
|
62
|
-
loki_latest_model cline development 2>/dev/null || echo "claude-opus-4-
|
|
62
|
+
loki_latest_model cline development 2>/dev/null || echo "claude-opus-4-8"
|
|
63
63
|
else
|
|
64
|
-
echo "claude-opus-4-
|
|
64
|
+
echo "claude-opus-4-8"
|
|
65
65
|
fi
|
|
66
66
|
}
|
|
67
67
|
CLINE_DEFAULT_MODEL="${LOKI_CLINE_MODEL:-${LOKI_MODEL_DEVELOPMENT:-$(_cline_default_from_catalog)}}"
|