@skilljit/core 0.1.0 → 0.1.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/README.md +22 -0
- package/package.json +8 -1
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @skilljit/core
|
|
2
|
+
|
|
3
|
+
Local SQLite catalog, FTS5 full-text search, and token accounting for
|
|
4
|
+
[skilljit](https://github.com/aqibsidd/skilljit) — just-in-time skill and MCP
|
|
5
|
+
tool routing for Claude.
|
|
6
|
+
|
|
7
|
+
Most people want the [`skilljit`](https://www.npmjs.com/package/skilljit) CLI, not
|
|
8
|
+
this package directly. This is the internal storage/search/ranking layer it's built
|
|
9
|
+
on, published standalone in case you want to build your own tooling against the same
|
|
10
|
+
`~/.skilljit/catalog.db`.
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
import { Catalog } from "@skilljit/core";
|
|
14
|
+
|
|
15
|
+
const catalog = new Catalog("~/.skilljit/catalog.db");
|
|
16
|
+
const hits = catalog.searchSkills("postgres migration", 3);
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
See the [main repo](https://github.com/aqibsidd/skilljit) for the full design,
|
|
20
|
+
the fixed 5-tool MCP surface, and benchmark numbers.
|
|
21
|
+
|
|
22
|
+
MIT licensed.
|
package/package.json
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skilljit/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Local catalog, full-text search, and token accounting for skilljit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/aqibsidd/skilljit.git",
|
|
12
|
+
"directory": "packages/core"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/aqibsidd/skilljit#readme",
|
|
15
|
+
"bugs": "https://github.com/aqibsidd/skilljit/issues",
|
|
9
16
|
"publishConfig": {
|
|
10
17
|
"access": "public"
|
|
11
18
|
},
|