diff --git a/README.md b/README.md
index 3e37fb6f6..ed6b6973b 100644
--- a/README.md
+++ b/README.md
@@ -100,7 +100,33 @@ Use the tool installation so aider doesn't interfere with your development envir
### All Contributors (Both Aider Main and Aider-CE)
-
-
-
-
+@paul-gauthier
+@dwash96
+@tekacs
+@ei-grad
+@joshuavial
+@chr15m
+@fry69
+@quinlanjager
+@caseymcc
+@shladnik
+@itlackey
+@tomjuggler
+@vk4s
+@titusz
+@daniel-vainsencher
+@bphd
+@akaihola
+@jalammar
+@schpet
+@iamFIREcracker
+@KennyDizi
+@ivanfioravanti
+@mdeweerd
+@fahmad91
+@itsmeknt
+@cheahjs
+@youknow04
+@pcamp
+@miradnanali
+@o-nix
\ No newline at end of file
diff --git a/scripts/get_contributor_list.js b/scripts/get_contributor_list.js
new file mode 100644
index 000000000..23075d4e6
--- /dev/null
+++ b/scripts/get_contributor_list.js
@@ -0,0 +1,13 @@
+(async function get_contributors(){
+ const response = await fetch("https://api.github.com/repos/dwash96/aider-ce/contributors");
+ const data = await response.json();
+ console.log(data)
+
+ let output = [];
+
+ data.forEach((item) => {
+ output.push(`@${item.login}`)
+ });
+
+ console.log(output.join("\n"))
+})()
\ No newline at end of file