@rqml/cli 0.4.1 → 0.5.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 +6 -1
- package/dist/index.js +972 -204
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -20,14 +20,19 @@ rqml <command> [spec.rqml] [options]
|
|
|
20
20
|
check [path] Deterministic enforcement gate (validation + coverage + drift)
|
|
21
21
|
show <id> One artifact: statement, acceptance criteria, trace neighborhood
|
|
22
22
|
impact <id> What is affected, transitively, if this artifact changes
|
|
23
|
+
overview [path] Readable spec projection (whole, or --section/--id scoped)
|
|
23
24
|
matrix [path] Traceability matrix: status, goals, code, tests, coverage gaps
|
|
24
25
|
link <id> <uri> Record an implements/verifiedBy edge and its drift baseline
|
|
26
|
+
approve <id> Transition a requirement's status (--status, default approved)
|
|
27
|
+
gate [paths...] Block implementation of non-approved requirements (exit 2)
|
|
25
28
|
skeleton <kind> Print a schema-valid snippet (req|edge|testCase|stateMachine)
|
|
26
29
|
|
|
27
30
|
--json Machine-readable output (REQ-CLI-JSON)
|
|
28
31
|
--strictness <level> relaxed | standard | strict | certified
|
|
29
32
|
--base-dir <dir> Resolve the spec and implements code links against <dir>
|
|
30
|
-
--status/--type/--warning Filter matrix rows
|
|
33
|
+
--status/--type/--warning Filter matrix rows; --status also sets approve's target
|
|
34
|
+
--section/--id Scope overview to sections or element ids (comma-separated)
|
|
35
|
+
--changed <paths> Scope gate to changed paths (or pass them as positionals)
|
|
31
36
|
```
|
|
32
37
|
|
|
33
38
|
When no spec path is given, the lone `*.rqml` in the working directory is used
|