fossel 1.0.9 → 1.1.0
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 +110 -43
- package/dist/cli.js +1704 -275
- package/dist/index.js +1300 -54
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fossel",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Local-first MCP memory for Cursor & Claude: repo context in SQLite, FTS5 search, pins, PR summaries. No cloud.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -37,8 +37,9 @@
|
|
|
37
37
|
"dev": "tsx src/index.ts",
|
|
38
38
|
"start": "node dist/index.js",
|
|
39
39
|
"smoke": "tsx scripts/smoke.ts",
|
|
40
|
+
"test": "tsx --test tests/*.test.ts",
|
|
40
41
|
"typecheck": "tsc --noEmit",
|
|
41
|
-
"ci": "npm run typecheck && npm run build && npm run smoke"
|
|
42
|
+
"ci": "npm run typecheck && npm run test && npm run build && npm run smoke"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
45
|
"@modelcontextprotocol/sdk": "latest",
|