amicus 1.9.0 → 1.9.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +11 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amicus",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"description": "Multi-model LLM Council + parallel AI window for Claude Code. Run structured council reviews across Gemini, GPT, DeepSeek and more — or fork a conversation to any model and fold the results back.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Christian Wagner"
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to Amicus are documented here. Format follows
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [1.9.1] - 2026-07-03
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **`server.json`'s description now fits the MCP Registry's 100-character cap.** The registry rejected
|
|
12
|
+
v1.9.0's publish (its first-ever attempt) with HTTP 422 — the description was 199 chars against a
|
|
13
|
+
100-char limit the schema doesn't advertise. Shortened to 98 chars; the cap is pinned by
|
|
14
|
+
`tests/scripts/package-manifest.test.js` (characters and UTF-8 bytes), and `docs/DISTRIBUTION.md` §3 now
|
|
15
|
+
documents that content-level 422s are not recoverable by workflow re-run (the re-run checks out the tag)
|
|
16
|
+
— fix `server.json` on main and use the manual path or the next tag. v1.9.0 itself shipped fully to npm
|
|
17
|
+
and GitHub Releases; this patch exists to land the registry publish.
|
|
18
|
+
|
|
8
19
|
## [1.9.0] - 2026-07-03
|
|
9
20
|
|
|
10
21
|
Engine pull-forwards, release-rail hardening, docs sync, and a new Council Review GitHub Action.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amicus",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.1",
|
|
4
4
|
"mcpName": "io.github.BourbonDog/amicus",
|
|
5
5
|
"description": "Multi-model LLM Council + parallel AI window for Claude Code. Run structured council reviews across Gemini, GPT, DeepSeek and more — or fork a conversation to any model and fold the results back.",
|
|
6
6
|
"keywords": [
|