@rqml/schema 0.1.2 → 0.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rqml/schema",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Canonical RQML XSD schemas (the single source of truth), example documents, and the AGENTS.md template, with a typed version resolver. Schema text is inlined for offline, bundler-friendly consumption.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -29,8 +29,11 @@ rqml check # deterministic gate: validation + coverage + drift (
29
29
  rqml status # re-anchor: spec, coverage, and drift state
30
30
  rqml show <REQ-ID> # one requirement: statement, acceptance criteria, trace neighborhood
31
31
  rqml impact <ID> # what is affected, transitively, if this artifact changes
32
+ rqml overview # readable projection of the spec (--section/--id to scope)
32
33
  rqml matrix # traceability matrix: status, goals, code, tests, coverage gaps
33
34
  rqml link <REQ-ID> <path> # record an implements edge + drift baseline (--type verifiedBy for tests)
35
+ rqml approve <REQ-ID> # transition a requirement's status (default approved)
36
+ rqml gate # block implementation of non-approved requirements
34
37
  rqml skeleton <kind> # schema-valid snippet: req | edge | testCase | stateMachine
35
38
  ```
36
39