milens 0.2.3 → 0.2.4
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 +0 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -3,7 +3,6 @@ PolyForm Noncommercial License 1.0.0
|
|
|
3
3
|
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
4
4
|
|
|
5
5
|
Required Notice: Copyright (c) 2026 milens contributors
|
|
6
|
-
Required Notice: Architectural inspiration from GitNexus by Abhigyan Patwari (https://github.com/abhigyanpatwari/GitNexus)
|
|
7
6
|
|
|
8
7
|
## Acceptance
|
|
9
8
|
|
package/dist/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ const program = new Command();
|
|
|
7
7
|
program
|
|
8
8
|
.name('milens')
|
|
9
9
|
.description('Code intelligence engine — analyze codebases, build knowledge graphs, serve via MCP')
|
|
10
|
-
.version('0.2.
|
|
10
|
+
.version('0.2.4');
|
|
11
11
|
program
|
|
12
12
|
.command('analyze')
|
|
13
13
|
.description('Index a codebase: parse symbols, resolve dependencies, build search index')
|