nemar-cli 0.3.7-dev.106 → 0.3.7-dev.110

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 (3) hide show
  1. package/README.md +23 -0
  2. package/dist/index.js +136 -21
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -298,13 +298,36 @@ nemar dataset pr update <pr-id> # Push updates to PR
298
298
  nemar dataset pr close <pr-id> # Close PR without merging
299
299
  ```
300
300
 
301
+ ### Publication Workflow
302
+
303
+ ```bash
304
+ # User: Request publication
305
+ nemar dataset publish request <dataset-id> # Submit publication request
306
+ nemar dataset publish status <dataset-id> # Check publication status
307
+ nemar dataset publish resend <dataset-id> # Resend admin notification
308
+
309
+ # Admin: Manage publication requests
310
+ nemar admin publish list # List all publication requests
311
+ nemar admin publish list --pending # List pending requests only
312
+ nemar admin publish approve <dataset-id> # Approve and publish dataset
313
+ nemar admin publish deny <dataset-id> # Deny publication request
314
+ ```
315
+
301
316
  ### Admin Commands
302
317
 
303
318
  ```bash
319
+ # User management
304
320
  nemar admin users # List all users
305
321
  nemar admin users --pending # List pending approvals
306
322
  nemar admin approve <username> # Approve user
307
323
  nemar admin revoke <username> # Revoke user access
324
+
325
+ # Dataset publication
326
+ nemar admin publish list # List publication requests
327
+ nemar admin publish approve <dataset-id> # Approve and publish dataset
328
+ nemar admin publish deny <dataset-id> # Deny publication request
329
+
330
+ # DOI management
308
331
  nemar admin doi create <dataset-id> # Create concept DOI
309
332
  ```
310
333