consult-llm-mcp 2.10.0 → 2.11.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.10.0 (2026-03-15)
4
+
5
+ - Monitor: cycle between sibling consultations (started around the same time)
6
+ with Tab/Shift+Tab in detail view
7
+ - Monitor: sort projects by most recent consultation activity
8
+ - Monitor: add Esc key to quit from table view
9
+
10
+ ## v2.9.0 (2026-03-14)
11
+
12
+ - Added `consult-llm-mcp update` self-update command. Updates both
13
+ `consult-llm-mcp` and `consult-llm-monitor` if present.
14
+
3
15
  ## v2.8.0 (2026-03-13)
4
16
 
5
17
  - Replaced hardcoded model enum with abstract selectors (`gemini`, `openai`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "consult-llm-mcp",
3
- "version": "2.10.0",
3
+ "version": "2.11.0",
4
4
  "description": "MCP server for consulting powerful AI models",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,9 +31,9 @@
31
31
  "ai"
32
32
  ],
33
33
  "optionalDependencies": {
34
- "consult-llm-mcp-darwin-arm64": "2.10.0",
35
- "consult-llm-mcp-darwin-x64": "2.10.0",
36
- "consult-llm-mcp-linux-x64": "2.10.0",
37
- "consult-llm-mcp-linux-arm64": "2.10.0"
34
+ "consult-llm-mcp-darwin-arm64": "2.11.0",
35
+ "consult-llm-mcp-darwin-x64": "2.11.0",
36
+ "consult-llm-mcp-linux-x64": "2.11.0",
37
+ "consult-llm-mcp-linux-arm64": "2.11.0"
38
38
  }
39
39
  }