@@ -69,7 +69,7 @@ aidocs init .
6969│ DOCUMENT A MODULE │
7070├──────────────────────────────────────────────────────────────────────────────┤
7171│ │
72- │ /docs:flow campaign --lifecycle ← Just run this one command! │
72+ │ /docs:flow campaign ← Just run this one command! │
7373│ │ │
7474│ ├──→ Auto-runs /docs:discover campaign (analyzes code) │
7575│ ├──→ Auto-runs /docs:explore campaign (tests UI) │
@@ -95,7 +95,7 @@ aidocs init .
9595/docs:generate https://myapp.com/dashboard
9696
9797# Smart: Full module documentation (auto-discovers and explores)
98- /docs:flow campaign --lifecycle
98+ /docs:flow campaign
9999
100100# Maintain: Update after code changes
101101/docs:update --base main
@@ -252,8 +252,9 @@ Interactively explore a module's UI with Playwright:
252252Document a complete entity lifecycle. ** Auto-runs discover and explore if needed.**
253253
254254``` bash
255- /docs:flow campaign # Smart flow detection
256- /docs:flow campaign --lifecycle # Full CRUD documentation
255+ /docs:flow campaign # Full CRUD lifecycle (default)
256+ /docs:flow campaign --only create # Only document create flow
257+ /docs:flow campaign --only edit # Only document edit flow
257258/docs:flow " user registration" # Custom flow description
258259/docs:flow order --include-errors # Include error states
259260/docs:flow campaign --skip-explore # Skip UI exploration (faster)
@@ -262,7 +263,7 @@ Document a complete entity lifecycle. **Auto-runs discover and explore if needed
262263** What happens:**
2632641 . Auto-runs ` /docs:discover ` if module not analyzed yet
2642652 . Auto-runs ` /docs:explore ` if UI not explored yet
265- 3 . Documents the complete flow with screenshots
266+ 3 . Documents full lifecycle (create → view → edit → delete) by default
266267
267268** Produces step-by-step guides with:**
268269- Screenshots at each step
0 commit comments