diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md
index dd94e39..2be224a 100644
--- a/docs/CONTRIBUTING.md
+++ b/docs/CONTRIBUTING.md
@@ -1 +1,156 @@
# Contributing to AIFAQ
+
+## Introduction
+
+AIFAQ is an open-source project under Linux Foundation Decentralized Trust umbrella. It aims to build an AI Chatbot to support newby in communities (companies, organizations, individuals, …).
+This guide allows the AIFAQ community to contribute activities. Please, read before starting coding.
+
+## Prerequisites
+
+Join the [weekly meetings](https://zoom-lfx.platform.linuxfoundation.org/meeting/96156160446?password=436922cc-9811-4e05-aa60-04f7b4679c7e) on Monday at 9 am EST time zone.
+
+## Code of Conduct and Antitrust Policy
+
+- [Linux Foundation Privacy Policy](https://www.linuxfoundation.org/legal/privacy-policy)
+- [Terms of use](https://www.linuxfoundation.org/legal/terms)
+- [Antitrust Policy](https://www.linuxfoundation.org/legal/antitrust-policy)
+- [Code of Conduct](https://www.lfdecentralizedtrust.org/code-of-conduct)
+
+## GitHub Flow
+
+Please select a task from the [published issues](https://github.com/hyperledger-labs/aifaq/issues); other changes will not be considered. For improvement proposals, kindly attend the [Monday meetings](https://zoom-lfx.platform.linuxfoundation.org/meeting/96156160446?password=436922cc-9811-4e05-aa60-04f7b4679c7e).
+Below the GitHub tree:
+
+
+
+and the workflow schema:
+
+
+
+We should document all changes describing the solution and adding screenshots or a short video (like [this](https://github-production-user-asset-6210df.s3.amazonaws.com/190102379/461524193-6ee9ee0c-2cd1-4ab3-97ea-904515cd5b6c.webm?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAVCODYLSA53PQK4ZA%2F20250704%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20250704T111312Z&X-Amz-Expires=300&X-Amz-Signature=e9ba00009ffd4bd997e34a62a5a5ff647e845bd7786790c495318de77b446737&X-Amz-SignedHeaders=host)).
+
+## Commands
+
+In your local PC, create a new folder and open it in VS Code.
+Then open a new terminal:
+
+
+
+go to [AIFAQ GitHub repo agents branch](https://github.com/hyperledger-labs/aifaq/tree/agents) and press on fork button:
+
+
+
+uncheck that checkbox and press on create fork button:
+
+
+
+it will create a fork in your local GitHub space.
+
+
+
+Then click on the code button and copy the https url to clipboard:
+
+Now, type
+
+```console
+git clone https://github.com/gcapuzzi/aifaq.git
+```
+
+on vs code terminal:
+
+
+
+now we can move to the aifaq folder:
+
+```console
+cd aifaq
+```
+
+and list the current branches:
+
+```console
+git branch -a
+```
+
+
+
+we can see that the current branch is **main** and it refers to the **remote main branch**.
+But, we want to change a different branch (in our case, mvt-streamlit branch) so execute:
+
+```console
+git checkout origin/mvt-streamlit
+```
+
+
+
+and execute
+
+```console
+git branch -a
+```
+
+in order to check the current remote branch.
+
+Ok, now we can create a new local branch with same name:
+
+```console
+git checkout mvt-streamlit
+```
+
+
+
+and
+
+
+
+and now we can do our dev activities.
+In my case, I want to add a new file (faiss_content_py) with copy-paste.
+When I finish my changes, type:
+
+```console
+git status
+```
+
+
+
+so, we have to commit our changes before to push those to the remote branch:
+
+```console
+git add -A
+git commit -s -m “Added faiss_content.py file”
+```
+
+
+
+The first command adds the changes to the commit and the second one executes the commit (please check the ‘-s’ argument that is mandatory in Linux Foundation).
+
+Now, we can push the code to the remote branch:
+
+```console
+git push -u origin mvt-streamlit
+```
+
+
+
+now if we check our mvt-streamlit branch in the personal GitHub space:
+
+
+
+## Pull Request
+
+The changes are in our GitHub space, but we want the same in the official project repo. So open a **Pull Request**:
+
+
+
+and set up the two branches:
+
+
+
+then click on **Create pull request button**:
+
+
+
+Please add a short description and click on the **Create pull request button**.
+And remove the branch:
+
+
diff --git a/images/copy_url.png b/images/copy_url.png
new file mode 100644
index 0000000..0ba0def
Binary files /dev/null and b/images/copy_url.png differ
diff --git a/images/create_fork.png b/images/create_fork.png
new file mode 100644
index 0000000..7492da8
Binary files /dev/null and b/images/create_fork.png differ
diff --git a/images/fork_button.png b/images/fork_button.png
new file mode 100644
index 0000000..03259aa
Binary files /dev/null and b/images/fork_button.png differ
diff --git a/images/git_add_commit.png b/images/git_add_commit.png
new file mode 100644
index 0000000..92bb211
Binary files /dev/null and b/images/git_add_commit.png differ
diff --git a/images/git_branch2.png b/images/git_branch2.png
new file mode 100644
index 0000000..57fdf30
Binary files /dev/null and b/images/git_branch2.png differ
diff --git a/images/git_branch_a.png b/images/git_branch_a.png
new file mode 100644
index 0000000..371d1b1
Binary files /dev/null and b/images/git_branch_a.png differ
diff --git a/images/git_checkout.png b/images/git_checkout.png
new file mode 100644
index 0000000..d4d9d3e
Binary files /dev/null and b/images/git_checkout.png differ
diff --git a/images/git_checkout_origin.png b/images/git_checkout_origin.png
new file mode 100644
index 0000000..8b0a87c
Binary files /dev/null and b/images/git_checkout_origin.png differ
diff --git a/images/git_clone.png b/images/git_clone.png
new file mode 100644
index 0000000..04e1317
Binary files /dev/null and b/images/git_clone.png differ
diff --git a/images/git_push_origin.png b/images/git_push_origin.png
new file mode 100644
index 0000000..8719bf1
Binary files /dev/null and b/images/git_push_origin.png differ
diff --git a/images/git_status.png b/images/git_status.png
new file mode 100644
index 0000000..ad89b06
Binary files /dev/null and b/images/git_status.png differ
diff --git a/images/github_tree.png b/images/github_tree.png
new file mode 100644
index 0000000..2533841
Binary files /dev/null and b/images/github_tree.png differ
diff --git a/images/mvt_streamlit.png b/images/mvt_streamlit.png
new file mode 100644
index 0000000..8364018
Binary files /dev/null and b/images/mvt_streamlit.png differ
diff --git a/images/new_pull_request.png b/images/new_pull_request.png
new file mode 100644
index 0000000..5641930
Binary files /dev/null and b/images/new_pull_request.png differ
diff --git a/images/new_terminal.png b/images/new_terminal.png
new file mode 100644
index 0000000..35792a5
Binary files /dev/null and b/images/new_terminal.png differ
diff --git a/images/open_pull_request.png b/images/open_pull_request.png
new file mode 100644
index 0000000..49cf750
Binary files /dev/null and b/images/open_pull_request.png differ
diff --git a/images/remove_branch.png b/images/remove_branch.png
new file mode 100644
index 0000000..fc9a9d4
Binary files /dev/null and b/images/remove_branch.png differ
diff --git a/images/select_branches.png b/images/select_branches.png
new file mode 100644
index 0000000..dc5b384
Binary files /dev/null and b/images/select_branches.png differ
diff --git a/images/workflow.png b/images/workflow.png
new file mode 100644
index 0000000..47dd73e
Binary files /dev/null and b/images/workflow.png differ