diff --git a/docs/commands/clean.md b/docs/commands/clean.md
index cd8593b6..0ca76099 100644
--- a/docs/commands/clean.md
+++ b/docs/commands/clean.md
@@ -18,7 +18,6 @@ bruin clean [path-to-project-root]
bruin clean
```
#### Output:
-``` plaintext
-Found 107 log files, cleaning them up...
-Successfully removed 107 log files.
-```
+
+
+
diff --git a/docs/commands/init.md b/docs/commands/init.md
index 6f936b13..9044f320 100644
--- a/docs/commands/init.md
+++ b/docs/commands/init.md
@@ -26,3 +26,16 @@ bruin init --help
```
The output displays the list of available templates.
+
+
+## Example
+
+### Initializing the Shopify-Bigquery template
+
+``` bash
+bruin init shopify-bigquery
+```
+#### Output:
+
+
+
diff --git a/docs/commands/lineage.md b/docs/commands/lineage.md
index 4871bf13..164490dc 100644
--- a/docs/commands/lineage.md
+++ b/docs/commands/lineage.md
@@ -10,7 +10,6 @@ This is useful for understanding your pipeline’s structure, tracking relations
```bash
bruin lineage [flags]
```
-
### Flags
- `--full`
@@ -21,5 +20,16 @@ This is useful for understanding your pipeline’s structure, tracking relations
- `plain` (default): Outputs a human-readable text summary.
- `json`: Outputs the lineage as structured JSON.
+
+## Example
+
+### Understanding the dependencies of Chess template
+
+``` bash
+bruin lineage chess/assets/player_summary.sql
+```
+#### Output:
+
+
diff --git a/docs/getting-started/templates.md b/docs/getting-started/templates.md
index 56e23745..24f96838 100644
--- a/docs/getting-started/templates.md
+++ b/docs/getting-started/templates.md
@@ -26,20 +26,9 @@ To initialize a project using the wizard, simply run:
bruin init
```
As shown below, this will launch a terminal-based wizard:
-```plaintext
-bin/bruin init
-[ ] default
-[ ] duckdb
-[ ] firebase
-[ ] gorgias
-[x] notion
-[ ] python
-[ ] redshift
-[ ] shopify-bigquery
-[ ] shopify-duckdb
-
-(press q to quit)
-```
+
+
+
You can navigate through the available templates using the up and down arrow keys. Once you've selected your desired template, press Enter to confirm.
The wizard will automatically create the folder and set up the project for you.
### Manual template selection
diff --git a/docs/public/clean.gif b/docs/public/clean.gif
new file mode 100644
index 00000000..34975c9e
Binary files /dev/null and b/docs/public/clean.gif differ
diff --git a/docs/public/init-wizard.gif b/docs/public/init-wizard.gif
new file mode 100644
index 00000000..64abe6e9
Binary files /dev/null and b/docs/public/init-wizard.gif differ
diff --git a/docs/public/init.gif b/docs/public/init.gif
new file mode 100644
index 00000000..b9e2c874
Binary files /dev/null and b/docs/public/init.gif differ
diff --git a/docs/public/lineage2.gif b/docs/public/lineage2.gif
new file mode 100644
index 00000000..904d535c
Binary files /dev/null and b/docs/public/lineage2.gif differ
diff --git a/resources/clean.tape b/resources/clean.tape
new file mode 100644
index 00000000..da7aeb49
--- /dev/null
+++ b/resources/clean.tape
@@ -0,0 +1,15 @@
+# Output location for the GIF
+Output ../docs/public/clean.gif
+
+# Set up terminal dimensions and appearance
+Set FontSize 20
+Set Width 1000
+Set Height 400
+Set LineHeight 1.8
+Set TypingSpeed 0.1
+Set Framerate 60
+
+# Simulate typing the commands
+Type "bruin clean"
+Enter
+Sleep 10s
\ No newline at end of file
diff --git a/resources/init-wizard.tape b/resources/init-wizard.tape
new file mode 100644
index 00000000..9782bd77
--- /dev/null
+++ b/resources/init-wizard.tape
@@ -0,0 +1,39 @@
+# Output location for the GIF
+Output ../docs/public/init-wizard.gif
+
+# Set up terminal dimensions and appearance
+Set FontSize 20
+Set Width 1300
+Set Height 1200
+Set LineHeight 1.8
+Set TypingSpeed 0.1
+Set Framerate 60
+
+# Simulate typing the commands
+Type "bruin init"
+Enter
+Sleep 3s
+
+# Simulate pressing the down arrow key three times and then Enter
+Down
+Sleep 1s
+Down
+Sleep 1s
+Down
+Sleep 1s
+Down
+Sleep 1s
+Down
+Sleep 1s
+Down
+Sleep 1s
+Sleep 1s
+Down
+Sleep 1s
+Enter
+
+# Allow time to log the output after selection
+Sleep 8s
+
+
+# End of script
diff --git a/resources/init.tape b/resources/init.tape
new file mode 100644
index 00000000..c249a0c1
--- /dev/null
+++ b/resources/init.tape
@@ -0,0 +1,15 @@
+# Output location for the GIF
+Output ../docs/public/init.gif
+
+# Set up terminal dimensions and appearance
+Set FontSize 20
+Set Width 1300
+Set Height 500
+Set LineHeight 1.8
+Set TypingSpeed 0.1
+Set Framerate 60
+
+# Simulate typing the commands
+Type "bruin init shopify-bigquery"
+Enter
+Sleep 5s
\ No newline at end of file
diff --git a/resources/lineage.tape b/resources/lineage.tape
new file mode 100644
index 00000000..fa940e8a
--- /dev/null
+++ b/resources/lineage.tape
@@ -0,0 +1,15 @@
+# Output location for the GIF
+Output ../docs/public/lineage2.gif
+
+# Set up terminal dimensions and appearance
+Set FontSize 20
+Set Width 1200
+Set Height 900
+Set LineHeight 1.8
+Set TypingSpeed 0.1
+Set Framerate 60
+
+# Simulate typing the commands
+Type "bruin lineage chess/assets/player_summary.sql "
+Enter
+Sleep 10s
\ No newline at end of file