diff --git a/README.md b/README.md
index 5268eec..5184e8e 100644
--- a/README.md
+++ b/README.md
@@ -77,7 +77,7 @@ From there, it's easy to implement popular design patterns like ([Multi-](https:
| [Chat Guardrail](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-chat-guardrail) | ☆☆☆ *Dummy* | A travel advisor chatbot that only processes travel-related queries |
| [Majority Vote](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-majority-vote) | ☆☆☆ *Dummy* | Improve reasoning accuracy by aggregating multiple solution attempts |
| [Map-Reduce](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-map-reduce) | ☆☆☆ *Dummy* | Batch resume qualification using map-reduce pattern |
-| [CMD HITL](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-cmd-hitl) | ☆☆☆ *Dummy* | A command-line joke generator with human-in-the-loop feedback |
+| [CLI HITL](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-cli-hitl) | ☆☆☆ *Dummy* | A command-line joke generator with human-in-the-loop feedback |
| [Multi-Agent](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-multi-agent) | ★☆☆ *Beginner* | A Taboo word game for async communication between 2 agents |
| [Supervisor](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-supervisor) | ★☆☆ *Beginner* | Research agent is getting unreliable... Let's build a supervision process|
| [Parallel](https://github.com/The-Pocket/PocketFlow/tree/main/cookbook/pocketflow-parallel-batch) | ★☆☆ *Beginner* | A parallel execution demo that shows 3x speedup |
diff --git a/cookbook/pocketflow-cmd-hitl/README.md b/cookbook/pocketflow-cli-hitl/README.md
similarity index 98%
rename from cookbook/pocketflow-cmd-hitl/README.md
rename to cookbook/pocketflow-cli-hitl/README.md
index e181c58..7595a99 100644
--- a/cookbook/pocketflow-cmd-hitl/README.md
+++ b/cookbook/pocketflow-cli-hitl/README.md
@@ -11,7 +11,7 @@ A simple, interactive command-line application that generates jokes based on use
## Getting Started
-This project is part of the PocketFlow cookbook examples. It's assumed you have already cloned the [PocketFlow repository](https://github.com/the-pocket/PocketFlow) and are in the `cookbook/pocketflow-cmd-hitl` directory.
+This project is part of the PocketFlow cookbook examples. It's assumed you have already cloned the [PocketFlow repository](https://github.com/the-pocket/PocketFlow) and are in the `cookbook/pocketflow-cli-hitl` directory.
1. **Install required dependencies**:
```bash
diff --git a/cookbook/pocketflow-cmd-hitl/docs/design.md b/cookbook/pocketflow-cli-hitl/docs/design.md
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/docs/design.md
rename to cookbook/pocketflow-cli-hitl/docs/design.md
diff --git a/cookbook/pocketflow-cmd-hitl/flow.py b/cookbook/pocketflow-cli-hitl/flow.py
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/flow.py
rename to cookbook/pocketflow-cli-hitl/flow.py
diff --git a/cookbook/pocketflow-cmd-hitl/main.py b/cookbook/pocketflow-cli-hitl/main.py
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/main.py
rename to cookbook/pocketflow-cli-hitl/main.py
diff --git a/cookbook/pocketflow-cmd-hitl/nodes.py b/cookbook/pocketflow-cli-hitl/nodes.py
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/nodes.py
rename to cookbook/pocketflow-cli-hitl/nodes.py
diff --git a/cookbook/pocketflow-cmd-hitl/requirements.txt b/cookbook/pocketflow-cli-hitl/requirements.txt
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/requirements.txt
rename to cookbook/pocketflow-cli-hitl/requirements.txt
diff --git a/cookbook/pocketflow-cmd-hitl/utils/__init__.py b/cookbook/pocketflow-cli-hitl/utils/__init__.py
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/utils/__init__.py
rename to cookbook/pocketflow-cli-hitl/utils/__init__.py
diff --git a/cookbook/pocketflow-cmd-hitl/utils/call_llm.py b/cookbook/pocketflow-cli-hitl/utils/call_llm.py
similarity index 100%
rename from cookbook/pocketflow-cmd-hitl/utils/call_llm.py
rename to cookbook/pocketflow-cli-hitl/utils/call_llm.py