@jcode.labs/mimir 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/LICENSE +21 -0
- package/README.md +7 -1
- package/dist/cli.js +1 -1
- package/package.json +17 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jean-Baptiste Thery
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -6,9 +6,11 @@ JCode Mimir provides a TypeScript CLI and library that can be installed in any N
|
|
|
6
6
|
repository. It indexes files from the target repository, stores vectors locally with LanceDB,
|
|
7
7
|
and uses Ollama for local embeddings and answers.
|
|
8
8
|
|
|
9
|
+
Created by Jean-Baptiste Thery as part of the JCode Labs toolchain.
|
|
10
|
+
|
|
9
11
|
## Status
|
|
10
12
|
|
|
11
|
-
Early public package.
|
|
13
|
+
Early public package. Licensed under the MIT License.
|
|
12
14
|
|
|
13
15
|
## Requirements
|
|
14
16
|
|
|
@@ -143,3 +145,7 @@ const answer = await ask("What documents support the project timeline?")
|
|
|
143
145
|
- The vector index is stored locally.
|
|
144
146
|
- Raw private documents should stay in the target repository's ignored `private/` folder.
|
|
145
147
|
- Do not put secrets or scans inside this package repository.
|
|
148
|
+
|
|
149
|
+
## License
|
|
150
|
+
|
|
151
|
+
MIT © Jean-Baptiste Thery.
|
package/dist/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ const program = new Command();
|
|
|
10
10
|
program
|
|
11
11
|
.name("kb")
|
|
12
12
|
.description("Local-first RAG knowledge base for private project documents.")
|
|
13
|
-
.version("0.1.
|
|
13
|
+
.version("0.1.1");
|
|
14
14
|
program
|
|
15
15
|
.command("init")
|
|
16
16
|
.description("Create .kb config files and private/ document folder in the current repository.")
|
package/package.json
CHANGED
|
@@ -1,10 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jcode.labs/mimir",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "JCode Mimir: local-first memory and retrieval for private project knowledge.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
7
|
-
"author":
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Jean-Baptiste Thery",
|
|
9
|
+
"url": "https://github.com/jb-thery"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"jcode",
|
|
13
|
+
"mimir",
|
|
14
|
+
"rag",
|
|
15
|
+
"knowledge-base",
|
|
16
|
+
"local-first",
|
|
17
|
+
"mcp",
|
|
18
|
+
"ollama",
|
|
19
|
+
"lancedb"
|
|
20
|
+
],
|
|
8
21
|
"repository": {
|
|
9
22
|
"type": "git",
|
|
10
23
|
"url": "git+https://github.com/jcode-works/jcode-mimir.git"
|