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/mcp/__init__.py CHANGED
@@ -57,4 +57,4 @@ try:
57
57
  except ImportError:
58
58
  __all__ = ['mcp']
59
59
 
60
- __version__ = '7.110.0'
60
+ __version__ = '7.112.0'
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.110.0",
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.110.0",
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",
@@ -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-7"
61
+ loki_latest_model aider development 2>/dev/null || echo "claude-opus-4-8"
62
62
  else
63
- echo "claude-opus-4-7"
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)}}"
@@ -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-7 -- 1M context, adaptive thinking)
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.
@@ -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-7"
62
+ loki_latest_model cline development 2>/dev/null || echo "claude-opus-4-8"
63
63
  else
64
- echo "claude-opus-4-7"
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)}}"