skilljit 0.1.2 → 0.1.3

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/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -13,9 +13,9 @@ handler that never fires, a frozen tool-list reference) and Anthropic closed the
13
13
  as **not planned**. The issue's own recommended workaround is to *"declare all tools
14
14
  at startup and dispatch internally via mode/action parameters."*
15
15
 
16
- That's what skilljit does. Its MCP tool list is **fixed and never changes** — five
17
- tools, always. Skills and upstream MCP tools are found and loaded through those five
18
- tools, not by re-registering the tool list. This is why skilljit works on Claude
16
+ That's what skilljit does. Its MCP tool list is **fixed and never changes** — a
17
+ small, constant handful of tools, always. Skills and upstream MCP tools are found
18
+ and loaded through those tools, not by re-registering the tool list. This is why skilljit works on Claude
19
19
  Desktop, Claude Code, Codex, and Cursor while `list_changed`-based proxies silently
20
20
  degrade on at least one of them.
21
21
 
@@ -209,7 +209,7 @@ recall is genuinely inadequate.
209
209
  skilljit/
210
210
  packages/core/ catalog store, FTS5 index, ranking, token accounting
211
211
  packages/proxy/ upstream MCP server management, config adopt/restore, tool_find/tool_call routing
212
- packages/mcp/ the MCP stdio server (the five fixed tools)
212
+ packages/mcp/ the MCP stdio server (the fixed tool surface, see "The six tools" above)
213
213
  packages/cli/ skilljit sync | search | serve | stats | init | adopt | restore | doctor (this package)
214
214
  python/ pip package — CLI shim + read-only query API for Agent SDK users
215
215
  bench/ labeled task→skill eval set + recall@k harness
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skilljit",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Just-in-time skill and MCP tool routing for Claude — install thousands of skills at the token cost of one.",
5
5
  "type": "module",
6
6
  "license": "MIT",