diff --git a/docs/internal/epic-delivery-workflow.md b/docs/internal/epic-delivery-workflow.md
new file mode 100644
index 00000000000..f826d20fef4
--- /dev/null
+++ b/docs/internal/epic-delivery-workflow.md
@@ -0,0 +1,90 @@
+# Cross-Team Epic Delivery Workflow
+
+This guide documents the optimal steps to create and work on Feature Epics in a collaborative way.
+
+## Table of Contents
+
+- [Cross-Team Epic Delivery Workflow](#cross-team-epic-delivery-workflow)
+ - [Table of Contents](#table-of-contents)
+ - [1. Epic Creation (Product / Dev / Design)](#1-epic-creation-product--dev--design)
+ - [2. Design Exploration Phase](#2-design-exploration-phase)
+ - [3. Final Design Approval \& Handoff](#3-final-design-approval--handoff)
+ - [4. Development Planning](#4-development-planning)
+ - [5. Design QA (Post-Implementation Review)](#5-design-qa-post-implementation-review)
+ - [6. Epic Completion](#6-epic-completion)
+ - [TLDR Summary Workflow (High-Level)](#tldr-summary-workflow-high-level)
+
+## 1. Epic Creation (Product / Dev / Design)
+
+* An **EPIC** is created for any new feature or major improvement (by product, dev or design teams).
+* The EPIC includes:
+ * Feature requirements
+ * High-level scope
+ * Known constraints or assumptions
+* The epic is assigned to the **Design Team** with the label **needs-design**.
+
+
+## 2. Design Exploration Phase
+
+* The designer changes the epic status to **“In Progress”** once exploration begins.
+* The designer starts drafting early concepts / prototypes.
+* The designer is responsible for **pinging the Dev owner** early to initiate collaboration.
+* Multiple review iterations may happen with:
+ * Dev / Product / (Optionally) other stakeholders (eg QA engineers)
+* Syncs may be:
+ * **Async** (chat / comments) / **Sync calls**, as needed
+* Communication should be **frequent**, potentially more than once per week for complex features.
+
+
+## 3. Final Design Approval & Handoff
+
+* Last meeting to present the final design
+* Once iterated and aligned, the final design direction is agreed by:
+ * Design / Product / Dev
+* The designer prepares and delivers the **Figma handoff package**.
+* The designer **removes the needs-design label** from the epic.
+* The designer **pings the Dev team** (in the same epic) to indicate the feature is ready for implementation.
+
+
+## 4. Development Planning
+
+* The Dev owner reviews the final design.
+* The Dev owner breaks down the epic into **small, actionable subtasks**.
+* Subtasks include:
+ * UI components / Interactions / Edge states
+ * Integration work
+ * Non-visual logic affected by UI
+ * Automation test to be implemented by a QA engineer
+ * Design QA task
+* The Dev owner assigns subtasks within the team (if needed) and starts implementation.
+* It should have acceptance criteria
+
+
+## 5. Design QA (Post-Implementation Review)
+
+* Once the implementation is complete, **Dev notifies Design**.
+* Designer reviews the built feature to ensure:
+ * Visual fidelity
+ * Correct interactions
+ * Proper responsive handling
+ * Consistency with the agreed design
+* Any necessary follow-ups are captured as subtasks and addressed by Dev.
+
+
+## 6. Epic Completion
+
+* When:
+ * All dev subtasks are done
+ * Design QA is approved
+ * Product is aligned
+
+* The epic is marked as **Completed** and closed.
+
+
+## TLDR Summary Workflow (High-Level)
+
+1. Epic created -> assigned to Design with needs-design
+2. Design exploration -> prototypes -> early dev syncs
+3. Final design agreed -> Figma delivered -> needs-design label removed -> dev notified
+4. Dev decomposes work -> implements subtasks
+5. Design QA -> fixes -> approval
\ No newline at end of file
diff --git a/docs/internal/release-process.md b/docs/internal/release-process.md
index 37109e93c34..a86bbda86d4 100644
--- a/docs/internal/release-process.md
+++ b/docs/internal/release-process.md
@@ -47,7 +47,7 @@ A release is considered ready to be cut when all **Key** features are **Done**.
A **Key** feature is a feature identified on the [Roadmap](https://github.com/status-im/status-app/blob/master/docs/roadmap.md) as the most important features for that release.
-A feature is considered **Done** when all issues of its Epic are closed. An Epic **must** include a testing issue, where one of the dev who worked on the issue meets with one of the designers and/or the Product Manager to demo the issue. Designers and/or the PM **should** open any issue they find on the new feature.
+A feature is considered **Done** when all issues of its Epic are closed. An Epic **must** include a testing issue, where one of the dev who worked on the issue meets with one of the designers and/or the Product Manager to demo the issue. Designers and/or the PM **should** open any issue they find on the new feature. Refer to the [Epic Delivery Workflow guide](/docs/internal/epic-delivery-workflow.md) for the full rundown.
#### What happens to the other features not ready at the time of the release cut?