consult-llm-mcp 2.12.1 → 2.13.1
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/CHANGELOG.md +19 -0
- package/README.md +2 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v2.13.1 (2026-04-08)
|
|
4
|
+
|
|
5
|
+
- Monitor now shows the full error message in the detail view when a
|
|
6
|
+
consultation fails, instead of only indicating failure
|
|
7
|
+
- Improved startup logging: available models are now logged with their backends,
|
|
8
|
+
and the working directory is included in the server start log
|
|
9
|
+
- System prompts for review and plan modes now encourage bolder architectural
|
|
10
|
+
recommendations rather than defaulting to minimal changes
|
|
11
|
+
|
|
12
|
+
## v2.13.0 (2026-03-29)
|
|
13
|
+
|
|
14
|
+
- Monitor: press `r` in detail view to jump directly to the response section,
|
|
15
|
+
available in both single consultation and thread detail views
|
|
16
|
+
|
|
17
|
+
## v2.12.1 (2026-03-28)
|
|
18
|
+
|
|
19
|
+
- CLI backends now receive prompts via stdin instead of command-line arguments,
|
|
20
|
+
avoiding exposure in `ps` output and ARG_MAX limits with large prompts
|
|
21
|
+
|
|
3
22
|
## v2.12.0 (2026-03-28)
|
|
4
23
|
|
|
5
24
|
- Added OpenCode CLI as a new backend option, routing models through OpenCode's
|
package/README.md
CHANGED
|
@@ -980,3 +980,5 @@ pushes. GitHub Actions handles cross-compilation and npm publishing.
|
|
|
980
980
|
Claude Code conversation history with fzf
|
|
981
981
|
- [tmux-file-picker](https://github.com/raine/tmux-file-picker) — Pop up fzf in
|
|
982
982
|
tmux to quickly insert file paths, perfect for AI coding assistants
|
|
983
|
+
- [tmux-agent-usage](https://github.com/raine/tmux-agent-usage) — Display AI agent
|
|
984
|
+
rate limit usage in your tmux status bar
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "consult-llm-mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.13.1",
|
|
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.
|
|
35
|
-
"consult-llm-mcp-darwin-x64": "2.
|
|
36
|
-
"consult-llm-mcp-linux-x64": "2.
|
|
37
|
-
"consult-llm-mcp-linux-arm64": "2.
|
|
34
|
+
"consult-llm-mcp-darwin-arm64": "2.13.1",
|
|
35
|
+
"consult-llm-mcp-darwin-x64": "2.13.1",
|
|
36
|
+
"consult-llm-mcp-linux-x64": "2.13.1",
|
|
37
|
+
"consult-llm-mcp-linux-arm64": "2.13.1"
|
|
38
38
|
}
|
|
39
39
|
}
|