@anatolykoptev/krolik-cli 0.14.0 → 0.14.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 +14 -0
- package/dist/bin/cli.js +1 -1
- package/dist/bin/cli.js.map +1 -1
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -32,6 +32,20 @@ npm i -g @anatolykoptev/krolik-cli
|
|
|
32
32
|
|
|
33
33
|
## Commands
|
|
34
34
|
|
|
35
|
+
### Global Option: `--project`
|
|
36
|
+
|
|
37
|
+
All commands support `--project` for multi-project workspaces:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
krolik status --project my-app # Run on specific project
|
|
41
|
+
krolik audit --project piternow-wt-fix # Audit specific project
|
|
42
|
+
krolik context --project api-service # Context for specific project
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
This is useful when you have multiple projects in a workspace and want to target a specific one.
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
35
49
|
### `krolik context` — Stop Searching, Start Coding
|
|
36
50
|
|
|
37
51
|
One command replaces 10+ manual searches. AI gets complete project context instantly.
|