@getmikk/cli 1.9.0 → 2.0.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 CHANGED
@@ -161,20 +161,16 @@ mikk contract validate --strict
161
161
  run: mikk contract validate --boundaries-only --strict
162
162
  ```
163
163
 
164
- #### `mikk contract generate`
164
+ #### Contract regeneration
165
165
 
166
- Regenerate the `mikk.json` skeleton from the current codebase. Useful after major refactoring.
166
+ Mikk regenerates `mikk.json` / `mikk.lock.json` as part of:
167
167
 
168
- ```bash
169
- mikk contract generate
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 contract update
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 visualize impact`
322
+ #### `mikk context impact`
327
323
 
328
- Generate an impact diagram based on current file changes (files that differ from the lock file).
324
+ Analyze what breaks if a specific file changes (and includes an AI-context-focused impacted view).
329
325
 
330
326
  ```bash
331
- mikk visualize impact
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 15 tools and 3 resources for your assistant, all powered by the Mikk lock file.
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