@brainervirus/workit-cursor 0.4.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.
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: wk-verify
3
+ description: Run project validation via workflow_verify MCP tool. Use for /wk-verify or when user says "use verify skill".
4
+ disable-model-invocation: true
5
+ ---
6
+
7
+ # Verify — Project Validation
8
+
9
+ Run the repository's validation checks and report exact results.
10
+
11
+ ## Step 1 — Gather facts (required)
12
+
13
+ Call MCP tool `workflow_verify` with arguments from the user's message (range, version, paths, etc.).
14
+
15
+ **Workspace root:** defaults to the Cursor workspace. Pass `workspace_root` when the user names a different repository path.
16
+
17
+ Use the tool return value as ground truth. Do not read git, run npm, or infer repo state yourself.
18
+ If the tool errors, report the error and stop.
19
+
20
+ Map `--dry-run` or `dry-run` in the user message to `dry_run: true`.
21
+
22
+ ## Rules
23
+
24
+ - Do not edit files.
25
+ - Do not fix failures.
26
+ - Do not claim success unless every executed command exits 0.
27
+ - If a command is skipped, report the skip reason.
28
+ - If a command fails, report the failed command and the relevant output.
29
+ - If validation commands are detected but not run because arguments requested a dry run, clearly say that.
30
+
31
+ ## Output
32
+
33
+ Return only:
34
+
35
+ ```md
36
+ Validation summary:
37
+
38
+ - Passed: <count>
39
+ - Failed: <count>
40
+ - Skipped: <count>
41
+
42
+ Commands:
43
+
44
+ - `<command>`: pass|fail|skipped - <short reason>
45
+
46
+ Next action:
47
+ <one concise recommendation>
48
+ ```