@mandors/cli 0.4.7 → 0.4.9
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
CHANGED
|
@@ -346,22 +346,21 @@ mandor feature create "Authentication" --project api \
|
|
|
346
346
|
--scope backend
|
|
347
347
|
|
|
348
348
|
# Create tasks with explicit dependencies
|
|
349
|
-
mandor task create api-feature-
|
|
349
|
+
mandor task create api-feature-xxxx "JWT Parser" \
|
|
350
350
|
--goal "Validate JWT tokens..." \
|
|
351
351
|
--implementation-steps "Step 1|Step 2" \
|
|
352
352
|
--test-cases "Test invalid tokens|Test expired" \
|
|
353
|
-
--derivable-files "jwt.go|jwt_test.go" \
|
|
354
353
|
--library-needs "jsonwebtoken" \
|
|
355
354
|
--priority P1
|
|
356
355
|
|
|
357
|
-
mandor task create api-feature-
|
|
356
|
+
mandor task create api-feature-xxxx "Login Endpoint" \
|
|
358
357
|
--goal "Accept credentials and return JWT..." \
|
|
359
|
-
--depends-on api-feature-
|
|
358
|
+
--depends-on api-feature-xxxx-task-xxxx \
|
|
360
359
|
--priority P1
|
|
361
360
|
|
|
362
361
|
# Real-time progress queries
|
|
363
|
-
mandor track feature api-feature-
|
|
364
|
-
mandor track task api-feature-
|
|
362
|
+
mandor track feature api-feature-xxxx # See all tasks and status
|
|
363
|
+
mandor track task api-feature-xxxx-task-xxxx # See specific task details
|
|
365
364
|
```
|
|
366
365
|
|
|
367
366
|
**Benefits:**
|
|
@@ -385,22 +384,21 @@ mandor status --project api
|
|
|
385
384
|
mandor track project api
|
|
386
385
|
|
|
387
386
|
# Create tasks with dependencies
|
|
388
|
-
mandor task create api-feature-
|
|
387
|
+
mandor task create api-feature-xxxx "Task" \
|
|
389
388
|
--goal "..." \
|
|
390
389
|
--implementation-steps "..." \
|
|
391
390
|
--test-cases "..." \
|
|
392
|
-
--derivable-files "..." \
|
|
393
391
|
--library-needs "..." \
|
|
394
|
-
--depends-on api-feature-
|
|
392
|
+
--depends-on api-feature-xxxx-task-xxxx
|
|
395
393
|
|
|
396
394
|
# See all feature tasks with status
|
|
397
|
-
mandor track feature api-feature-
|
|
395
|
+
mandor track feature api-feature-xxxx
|
|
398
396
|
|
|
399
397
|
# Mark as done (auto-unblocks dependents)
|
|
400
|
-
mandor task update api-feature-
|
|
398
|
+
mandor task update api-feature-xxxx-task-xxxx --status done
|
|
401
399
|
|
|
402
400
|
# Verify dependents auto-transitioned to ready
|
|
403
|
-
mandor track feature api-feature-
|
|
401
|
+
mandor track feature api-feature-xxxx
|
|
404
402
|
```
|
|
405
403
|
|
|
406
404
|
### Issue Tracking
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|