diff --git a/README.md b/README.md
index a9cc569f..301da220 100644
--- a/README.md
+++ b/README.md
@@ -35,24 +35,24 @@
## What is Frisbee ?
-**Frisbee** is the first Kubernetes framework designed to support **declarative end-to-end testing** of containerized applications.
+**Frisbee** is the first Kubernetes framework designed to support **declarative end-to-end system testing** of containerized applications.
-:heavy_check_mark: Setup application and dependency stack – easily!
+:heavy_check_mark: Design end-to-end testing scenarios in an intuitive language!
-:heavy_check_mark: Test against actual, close to production software - no mocks!
+:heavy_check_mark: Run the actual production software - no mocks!
-:heavy_check_mark: Replay complex workloads written in an intuitive language!
+:heavy_check_mark: Replay complex workloads through automated workflows!
:heavy_check_mark: Combine Chaos Engineering with large-scale performance testing!
-:heavy_check_mark: Assert actual program behavior and side effects.
+:heavy_check_mark: Verify program behavior through programmable assertions!
-To learn more about Frisbee, check the **[QuickStart](https://frisbee.dev/docs/quick-start/)** tutorial or visit
-our **[Website](https://frisbee.dev)**.
+To learn more about Frisbee, check the **[Walkthrough](https://frisbee.dev/docs/walkthrough)** tutorial or visit our **[Website](https://frisbee.dev)**.
-## Use-Cases and Testing Patterns
+
+## Testing Patterns
In declarative testing, a test scenario focuses on what to accomplish rather than on the imperative details of how to manipulate the state of an application under test and verify the final application state against an expected state.
@@ -69,6 +69,8 @@ Here, you can see some testing patterns we have identified across different appl
👉 [CI](./examples/patterns/ci)
+
+
## Getting Started
@@ -90,44 +92,31 @@ sudo snap alias microk8s.kubectl kubectl
sudo snap alias microk8s.helm3 helm
```
-### Step 2 – Install Frisbee on K8s cluster
-
-Now it's time to get Frisbee from GitHub.
-```shell
-git clone git@github.com:CARV-ICS-FORTH/frisbee.git
-cd frisbee
-```
+### Step 2 – Install Frisbee on K8s cluster:
-The above will download the project, but not the executables.
-For that, you have two options: download the precompile binaries and or compile the binaries on your machine.
+Firstly, we need to download the Frisbee CLI:
-* **From binary:**
```shell
-./install.sh
+curl -sSLf https://frisbee.dev/install.sh | sudo bash
export PATH=$PATH:/usr/local/bin
```
-* **From source:**
-```shell
-make run
-export PATH=$PATH:$(pwd)/bin
-```
-
-The next step is to install Frisbee in your Kubernetes cluster. You can two options:
+Since the majority of Frisbee operations happens through this CLI, it is suggested to enable the autocompletion.
-* **Development mode:** In this configuration, the Frisbee controller must run manually on the local node.
-The development mode is convenient for developing new functionality on the controller.
```shell
-kubectl-frisbee install development ./