@getmikk/cli 1.9.0 → 1.9.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 +10 -14
- package/dist/index.js +4648 -3104
- package/dist/index.js.map +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -161,20 +161,16 @@ mikk contract validate --strict
|
|
|
161
161
|
run: mikk contract validate --boundaries-only --strict
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
####
|
|
164
|
+
#### Contract regeneration
|
|
165
165
|
|
|
166
|
-
|
|
166
|
+
Mikk regenerates `mikk.json` / `mikk.lock.json` as part of:
|
|
167
167
|
|
|
168
|
-
|
|
169
|
-
mikk
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
#### `mikk contract update`
|
|
173
|
-
|
|
174
|
-
Update the lock file to match the current codebase state.
|
|
168
|
+
- `mikk init` (full project scan + artifacts generation)
|
|
169
|
+
- `mikk analyze` (re-analyze + update generated artifacts)
|
|
175
170
|
|
|
176
171
|
```bash
|
|
177
|
-
mikk
|
|
172
|
+
mikk init
|
|
173
|
+
mikk analyze
|
|
178
174
|
```
|
|
179
175
|
|
|
180
176
|
#### `mikk contract show-boundaries`
|
|
@@ -323,19 +319,19 @@ Regenerate the diagram for a specific module.
|
|
|
323
319
|
mikk visualize module auth
|
|
324
320
|
```
|
|
325
321
|
|
|
326
|
-
#### `mikk
|
|
322
|
+
#### `mikk context impact`
|
|
327
323
|
|
|
328
|
-
|
|
324
|
+
Analyze what breaks if a specific file changes (and includes an AI-context-focused impacted view).
|
|
329
325
|
|
|
330
326
|
```bash
|
|
331
|
-
mikk
|
|
327
|
+
mikk context impact src/auth/login.ts
|
|
332
328
|
```
|
|
333
329
|
|
|
334
330
|
---
|
|
335
331
|
|
|
336
332
|
### `mikk mcp` — MCP Server for AI Assistants
|
|
337
333
|
|
|
338
|
-
Connect your project architecture to Claude Desktop, Cursor, VS Code, or any MCP-compatible AI tool. The MCP server exposes
|
|
334
|
+
Connect your project architecture to Claude Desktop, Cursor, VS Code, or any MCP-compatible AI tool. The MCP server exposes 22 tools and 3 resources for your assistant, all powered by the Mikk lock file.
|
|
339
335
|
|
|
340
336
|
#### `mikk mcp` (default: start server)
|
|
341
337
|
|