You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,33 +28,32 @@ Research state stays in a private `.omv/` workspace. The project is designed for
28
28
29
29
**Requirements:**[Claude Code](https://docs.anthropic.com/en/docs/claude-code) and Node.js 20 or later.
30
30
31
-
Install the CLI, then add the skills and agents to Claude Code:
31
+
Install the CLI and add the skills and agents to Claude Code:
32
32
33
33
```sh
34
34
npm install --global oh-my-vul
35
35
omv setup
36
36
```
37
37
38
-
Check the installation:
38
+
From the root of the project you want to research, start a guided workspace:
39
39
40
40
```sh
41
-
omv doctor
41
+
omv start
42
42
```
43
43
44
-
From the root of the project you want to research, initialize the private workspace and add it to `.gitignore`:
44
+
`omv start` adds `.omv/`to `.gitignore`, detects local project metadata, and asks which vulnerability classes to investigate. To provide the scope non-interactively:
45
45
46
46
```sh
47
-
omv workspace init --gitignore
47
+
omv start --vuln xss,auth --no-interactive
48
48
```
49
49
50
50
Open that project in Claude Code, then run:
51
51
52
52
```text
53
-
/using-omv
54
53
/omv
55
54
```
56
55
57
-
`/using-omv` applies the evidence and review gates for the session. `/omv` is the main workspace entry point: it shows the active queue and recommends the next action.
56
+
`/omv` applies the evidence and review gates, shows the active queue, and recommends the next action. From the shell, bare `omv` opens the same contextual workspace view.
Copy file name to clipboardExpand all lines: skills/omv/SKILL.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ oh-my-vul local-first vulnerability research project manager for Claude Code.
14
14
```text
15
15
/omv list — list all installed omv-* skills with one-line descriptions
16
16
/omv dashboard — show workspace, active workflow queue, and recent activity
17
+
/omv start [flags] — initialize the private workspace and first campaign
17
18
/omv eval — run deterministic stable skill eval checks
18
19
/omv first [flags] — initialize a Campaign.v1 first-mile research plan
19
20
/omv campaign — list local research campaigns
@@ -78,6 +79,7 @@ When the user invokes campaign, workspace, lifecycle, repro scaffold, artifact c
78
79
Use `omv help`, `omv help review`, `omv help findings`, `omv help repro`, or `omv help report` as the source of truth for exact CLI signatures. For direct aliases:
79
80
80
81
-`/omv dashboard` -> `omv dashboard`
82
+
-`/omv start ...` -> `omv start ...`
81
83
-`/omv eval ...` -> `omv eval ...`
82
84
-`/omv first ...` -> `omv first ...`
83
85
-`/omv campaign ...` -> `omv campaign ...`
@@ -97,7 +99,7 @@ Use `omv help`, `omv help review`, `omv help findings`, `omv help repro`, or `om
0 commit comments