@ataraxy-labs/sem 0.16.1 → 0.16.2

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 +3 -1
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -6,7 +6,7 @@ All notable changes to sem are documented in this file.
6
6
 
7
7
  ### Added
8
8
 
9
- - **sem is published to the official MCP registry** as `io.github.ataraxy-labs/sem`, so MCP clients that browse the registry (VS Code, Cursor, Claude Code, and others) can discover and install the server directly. The release workflow now publishes each release to the registry via `mcp-publisher` (authenticated with GitHub OIDC, no extra secrets), backed by a `server.json` manifest and an `mcpName` field in the npm wrapper.
9
+ - **sem is published to the official MCP registry** as `io.github.Ataraxy-Labs/sem`, so MCP clients that browse the registry (VS Code, Cursor, Claude Code, and others) can discover and install the server directly. The release workflow now publishes each release to the registry via `mcp-publisher` (authenticated with GitHub OIDC, no extra secrets), backed by a `server.json` manifest and an `mcpName` field in the npm wrapper.
10
10
 
11
11
  ### Performance
12
12
 
@@ -26,6 +26,8 @@ All notable changes to sem are documented in this file.
26
26
 
27
27
  ### Fixed
28
28
 
29
+ - Internal: rustfmt line-wrap missed in the #445 sidecar change; no behavior change.
30
+
29
31
  - The context packer's token estimator was undercounting real tokens 2-3x on dense code (words x 1.3 vs the ~4 chars/token reality: a context reported as 661 tokens measured ~2,400 real tokens), silently overshooting every budget. It now takes the max of the word- and character-based estimates, so nominal budgets match what the consuming model actually pays.
30
32
 
31
33
  - The context packer's "not packed" summary line pluralizes roles correctly ("transitive dependencies", not "dependencys").
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ataraxy-labs/sem",
3
- "mcpName": "io.github.ataraxy-labs/sem",
4
- "version": "0.16.1",
3
+ "mcpName": "io.github.Ataraxy-Labs/sem",
4
+ "version": "0.16.2",
5
5
  "description": "npm wrapper for the sem CLI. Downloads the matching release binary and exposes the sem command in node_modules/.bin.",
6
6
  "license": "MIT OR Apache-2.0",
7
7
  "type": "module",