From 3ff492699bbef67656f8d45e69cb184047b22df5 Mon Sep 17 00:00:00 2001 From: Dustin Washington Date: Fri, 21 Nov 2025 00:41:05 -0500 Subject: [PATCH] Update contributor list --- README.md | 34 +++++++++++++++++++++++++++++---- scripts/get_contributor_list.js | 13 +++++++++++++ 2 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 scripts/get_contributor_list.js 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