airgen-cli 0.5.0 → 0.5.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.
@@ -82,6 +82,8 @@ export function registerRequirementCommands(program, client) {
82
82
  .requiredOption("--text <text>", "Requirement text")
83
83
  .option("--pattern <p>", "Pattern: ubiquitous, event, state, unwanted, optional")
84
84
  .option("--verification <v>", "Verification: Test, Analysis, Inspection, Demonstration")
85
+ .option("--rationale <r>", "Rationale")
86
+ .option("--compliance <status>", "Compliance status")
85
87
  .option("--document <slug>", "Document slug")
86
88
  .option("--section <id>", "Section ID")
87
89
  .option("--tags <tags>", "Comma-separated tags")
@@ -92,6 +94,8 @@ export function registerRequirementCommands(program, client) {
92
94
  text: opts.text,
93
95
  pattern: opts.pattern,
94
96
  verification: opts.verification,
97
+ rationale: opts.rationale,
98
+ complianceStatus: opts.compliance,
95
99
  documentSlug: opts.document,
96
100
  sectionId: opts.section,
97
101
  tags: opts.tags?.split(",").map(t => t.trim()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airgen-cli",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "AIRGen CLI — requirements engineering from the command line",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",