airgen-cli 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +37 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -191,6 +191,40 @@ airgen impl unlink <tenant> <project> <req> --artifact <id>
191
191
  ]
192
192
  ```
193
193
 
194
+ ### Verification
195
+
196
+ Manage verification activities, evidence, documents, and run the verification engine to detect gaps.
197
+
198
+ ```bash
199
+ # Run the verification engine
200
+ airgen verify run <tenant> <project> # Coverage report + findings
201
+ airgen verify matrix <tenant> <project> # Cross-reference matrix
202
+
203
+ # Activities (TADI: Test, Analysis, Demonstration, Inspection)
204
+ airgen verify act list <tenant> <project>
205
+ airgen verify act create <tenant> <project> <req-id> --method Test --title "..."
206
+ airgen verify act update <activity-id> --status passed
207
+
208
+ # Evidence
209
+ airgen verify ev list <tenant> <project>
210
+ airgen verify ev add <tenant> <project> <activity-id> --type test_result --title "..." --verdict pass --recorded-by "name"
211
+
212
+ # Verification documents
213
+ airgen verify docs list <tenant> <project>
214
+ airgen verify docs create <tenant> <project> --name "Test Plan" --kind test_plan
215
+ airgen verify docs status <vdoc-id> --status approved
216
+ airgen verify docs revisions <vdoc-id>
217
+ airgen verify docs revise <vdoc-id> --rev 1.0 --change "Final review" --by "name"
218
+ ```
219
+
220
+ **Activity statuses:** `planned`, `in_progress`, `executed`, `passed`, `failed`, `blocked`
221
+
222
+ **Evidence verdicts:** `pass`, `fail`, `inconclusive`, `not_applicable`
223
+
224
+ **Document kinds:** `test_plan`, `test_procedure`, `test_report`, `analysis_report`, `inspection_checklist`, `demonstration_protocol`
225
+
226
+ **Document statuses:** `draft`, `review`, `approved`, `superseded`
227
+
194
228
  ### Import / Export
195
229
 
196
230
  ```bash
@@ -262,6 +296,9 @@ airgen report compliance my-tenant my-project --json | jq '.summary'
262
296
  | `reports` | `report` |
263
297
  | `projects` | `proj` |
264
298
  | `sections` | `sec` |
299
+ | `verify activities` | `verify act` |
300
+ | `verify evidence` | `verify ev` |
301
+ | `verify documents` | `verify docs` |
265
302
 
266
303
  ## License
267
304
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "airgen-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "AIRGen CLI — requirements engineering from the command line",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",