diff --git a/source/starknet/fri.md b/source/starknet/fri.md
index 6209640..3b78dc4 100644
--- a/source/starknet/fri.md
+++ b/source/starknet/fri.md
@@ -255,7 +255,7 @@ $$
Specifically, FRI-PCS proves that they can produce such a (commitment to a) polynomial $q$.
-### Aggregating multiple FRI proofs
+### Aggregating Multiple FRI Proofs
To prove that two polynomials $a$ and $b$ exist and are of degree at most $d$, a prove simply prove that a random linear combination of $a$ and $b$ exists and is of degree at most $d$.
@@ -263,7 +263,7 @@ TODO: what if the different polynomials are of different degrees?
TODO: we do not make use of aggregation here, the way the first layer polynomial is created is sort of transparent here, is it still worth having this section?
-## Notable differences with vanilla FRI
+## Notable Differences With Vanilla FRI
Besides obvious missing implementation details from the description above, the protocol is pretty much instantiated as is, except for a few changes to the folding and querying process.
diff --git a/source/starknet/stark.md b/source/starknet/stark.md
index 3732002..ea41ddc 100644
--- a/source/starknet/stark.md
+++ b/source/starknet/stark.md
@@ -11,8 +11,6 @@ tags: ["starknet", "stark", "ethSTARK"]
-In this section we give an overview of the STARK protocol.
-
+In this section we give a brief overview of the Starknet STARK protocol.
+
+The protocol is divided in three main parts, which we will explain in more detail below:
+
![STARK overview](/img/starknet/stark_overview.png)
### AIR Arithmetization
-TKTK
+But first, we quickly remind the reader that the Starknet STARK protocol allows a prover to convince a verifier that an AIR (Algebraic Intermediate Representation) arithmetization is satisfied by their witness. This is generally augmented to also include a public input, usually via a [public memory](https://zksecurity.github.io/stark-book/cairo/memory.html) extension.
+
+AIR is essentially an indexed table of runtime values, on which a number of fixed constraints are agreed on:
+
+![air](/img/starknet/air.png)
### Interactive Arithmetization
TKTK
+### Composition Polynomial
+
+TKTK
+
+#### Constraints To Prove
+
+TKTK
+
+#### Composition Polynomial and Schwartz-Zippel
+
+TKTK
+
+#### Evaluations And Evaluation Proofs
+
+* we use FRI-PCS as described in [the FRI-PCS section of the Starknet FRI Verifier Specification](fri.html#fri-pcs).
+
+### Aggregation and FRI Proof
+
+* we use FRI Aggregation as described in [the Aggregating Multiple FRI Proofs section of the Starknet FRI Verifier Specification](fri.html#aggregating-multiple-fri-proofs).
+* we use FRI as described in [the Starknet FRI Verifier Specification](fri.html).
+
### STARK
TKTK