@@ -19,18 +19,18 @@ dot [GLOBAL_FLAGS] <COMMAND> [COMMAND_FLAGS]
1919
2020## Commands
2121
22- ### ` recipe create`
22+ ### ` create `
2323
2424Create a new recipe with scaffolded structure.
2525
2626** Usage:**
2727``` bash
28- dot recipe create [OPTIONS]
28+ dot create [OPTIONS]
2929```
3030
3131** Interactive Mode (Recommended):**
3232``` bash
33- dot recipe create
33+ dot create
3434```
3535
3636Launches an interactive prompt that guides you through:
@@ -39,7 +39,7 @@ Launches an interactive prompt that guides you through:
3939
4040** Non-Interactive Mode:**
4141``` bash
42- dot recipe create --title " My Recipe" --non-interactive [OPTIONS]
42+ dot create --title " My Recipe" --non-interactive [OPTIONS]
4343```
4444
4545** Options:**
@@ -64,22 +64,22 @@ dot recipe create --title "My Recipe" --non-interactive [OPTIONS]
6464
6565``` bash
6666# Interactive mode (recommended)
67- dot recipe create
67+ dot create
6868
6969# Non-interactive parachain recipe
70- dot recipe create --title " My Parachain" --pathway parachain --non-interactive
70+ dot create --title " My Parachain" --pathway parachain --non-interactive
7171
7272# Pallet-only mode (advanced, no runtime)
73- dot recipe create --title " My Pallet" --pathway parachain --pallet-only --non-interactive
73+ dot create --title " My Pallet" --pathway parachain --pallet-only --non-interactive
7474
7575# Smart contracts recipe
76- dot recipe create --title " My Contract" --pathway contracts --non-interactive
76+ dot create --title " My Contract" --pathway contracts --non-interactive
7777
7878# Skip npm install for faster creation
79- dot recipe create --title " Quick Test" --pathway basic-interaction --skip-install --non-interactive
79+ dot create --title " Quick Test" --pathway basic-interaction --skip-install --non-interactive
8080
8181# CI/CD mode (skip git branch creation)
82- dot recipe create \
82+ dot create \
8383 --title " My Recipe" \
8484 --pathway parachain \
8585 --skip-install \
@@ -133,13 +133,13 @@ Note: Structure varies by recipe pathway. See pathway-specific READMEs for detai
133133
134134---
135135
136- ### ` recipe submit`
136+ ### ` submit `
137137
138138Submit recipe as a pull request (requires GitHub CLI).
139139
140140** Usage:**
141141``` bash
142- dot recipe submit
142+ dot submit
143143```
144144
145145** Prerequisites:**
@@ -180,13 +180,13 @@ git config --global user.email "your.email@example.com"
180180
181181---
182182
183- ### ` recipe test`
183+ ### ` test `
184184
185185Run tests for a recipe.
186186
187187** Usage:**
188188``` bash
189- dot recipe test < SLUG>
189+ dot test < SLUG>
190190```
191191
192192** Arguments:**
@@ -200,10 +200,10 @@ dot recipe test <SLUG>
200200** Examples:**
201201``` bash
202202# Test specific recipe
203- dot recipe test basic-pallet
203+ dot test basic-pallet
204204
205205# Test current directory recipe
206- dot recipe test .
206+ dot test .
207207```
208208
209209** Exit Codes:**
@@ -226,10 +226,10 @@ The CLI respects these environment variables:
226226
227227``` bash
228228# Enable debug logging
229- RUST_LOG=debug dot recipe create
229+ RUST_LOG=debug dot create
230230
231231# Use specific GitHub token
232- GITHUB_TOKEN=ghp_xxx dot recipe submit
232+ GITHUB_TOKEN=ghp_xxx dot submit
233233
234234# Disable colors
235235```
@@ -286,7 +286,7 @@ chmod +x target/release/dot
286286
287287### GitHub Authentication Failed
288288
289- ** Symptom:** ` dot recipe submit ` fails with auth error
289+ ** Symptom:** ` dot submit ` fails with auth error
290290
291291** Solution:**
292292``` bash
0 commit comments