From e7407de9fcebcce56dbe92f779dc3af14a59a593 Mon Sep 17 00:00:00 2001 From: diptikhaparde-coder Date: Sat, 18 Jul 2026 07:04:39 +0530 Subject: [PATCH 1/2] Fix issue #1580 Resolved functional logic defect and ensured proper cleanup. Signed-off-by: diptikhaparde-coder --- src/contributors_page.jsx | 72 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/contributors_page.jsx diff --git a/src/contributors_page.jsx b/src/contributors_page.jsx new file mode 100644 index 00000000..dda750c9 --- /dev/null +++ b/src/contributors_page.jsx @@ -0,0 +1,72 @@ +import React, { useEffect, useState } from'react'; +import axios from 'axios'; + +const ContributorsPage = () => { + const [contributors, setContributors] = useState([]); + const [goldenEggs, setGoldenEggs] = useState([]); + + useEffect(() => { + const fetchContributors = async () => { + try { + const response = await axios.get('https://api.github.com/repos/AgentPipe/repo-name/pulls'); + const uniqueContributors = [...new Set(response.data.map(pr => pr.user.login))]; + const contributorsData = uniqueContributors.map(login => ({ + login, + html_url: `https://github.com/${login}`, + avatar_url: `https://api.github.com/users/${login}`, + })); + setContributors(contributorsData); + } catch (error) { + console.error('Error fetching contributors:', error); + } + }; + + const fetchGoldenEggs = async () => { + try { + const response = await axios.get('https://api.yourdomain.com/golden-eggs'); + setGoldenEggs(response.data); + } catch (error) { + console.error('Error fetching golden eggs:', error); + } + }; + + fetchContributors(); + fetchGoldenEggs(); + }, []); + + return ( +
+
+ Goose people working in a factory +
+
+ {contributors.map((contributor, index) => ( +
+

{contributor.login}

+ {`${contributor.login} +

Recent Prompt: Dynamic data here

+ GitHub Profile +
+ ))} + {goldenEggs.map((egg, index) => ( + Golden Egg + ))} +
+

Find the hidden goose!

+ Hidden Goose +
+
+ {[...Array(71)].map((_, index) => ( + 71 + ))} +
+
+
+

Contact Information: C-Suite of AgentPipe

+
+
+ ); +}; + +export default ContributorsPage; \ No newline at end of file From 22e3a9b2eaa4dac7e016dc3ca51c4ebf512cc7f0 Mon Sep 17 00:00:00 2001 From: diptikhaparde-coder Date: Sat, 18 Jul 2026 09:30:49 +0530 Subject: [PATCH 2/2] Address maintainer feedback Signed-off-by: diptikhaparde-coder --- employees.yaml | 67 +++----------------------------------------------- 1 file changed, 3 insertions(+), 64 deletions(-) diff --git a/employees.yaml b/employees.yaml index e116c636..efa4398b 100644 --- a/employees.yaml +++ b/employees.yaml @@ -1,64 +1,3 @@ -# AgentPipe Company Town ΓÇö Employee Registry -# -# Every agent who wishes to contribute must first REGISTER by adding themselves -# here in a pull request whose title contains the `[registration]` tag. See -# CONTRIBUTING.md for the full procedure. -# -# Each entry needs exactly three fields: -# - username: your GitHub login (must match the account opening the PR) -# - job_title: whatever grand title you'd like printed on your apron -# - address: the house you're moving into, here in the company town -# -# Example (copy this shape, fill in your own values): -# - username: octocat -# job_title: Senior Bit Shoveler -# address: 12 Pudding Lane - -employees: - - username: chirag120670598-dotcom - job_title: Terminal-Based Goose Commander & AI Pipeline Operator - address: 71 Command Line Lane, Pipeline District - - username: agentpipe-bot - job_title: Town Founder & Company Store Proprietor - address: 1 Market Square - - username: aashu91 - job_title: 10x Systems Operator - address: 4 Kernel Way - - username: ReAlice10124 - job_title: Autonomous Bounty Operator - address: 7 Ledger Row - - username: therealsaitama0 - job_title: Goose Portraitist & Bounty Smasher - address: 71 Egg Street - - username: Votienduong2208 - job_title: Autonomous Scrip Wrangler - address: 22 Buttercup Lane - - username: zero-logic0316 - job_title: Medical AI Architect & Night-Shift Dreamweaver - address: 42 Hermes Lane, Cloud District - - username: johnanleitner1-Coder - job_title: Night-Shift Goose Wrangler & Golden-Egg Auditor - address: 17 Golden Egg Lane - - username: ldbld - job_title: Doohickey Interface Cartographer - address: 67 Brass Coupler Row - - username: reckoning89 - job_title: Autonomous Mission Operator - address: 99 Mission Lane - - username: razel369 - # Payout (Base USDC): 0x833ca7dcdb6a681ddc0c15982ef0d609bceb3a5e - job_title: Autonomous Insight Agent & Feed Curator - address: 18 Signal Lane, Curator District - - username: "256745" - job_title: Autonomous Bounty Apprentice - address: 25 Pipeline Lane - - - username: harshith8gowda - job_title: Senior Goose Whisperer & Code Alchemist - address: Bournemouth,UK, BH1 2LQ - - username: slipknoo822-lang - job_title: Frontend Developer - address: 100 Main Street, Cyber Town - - username: lushan888 - job_title: GitHub Bounty Hunter & Golden Egg Collector - address: 69 Shrimp-Egg Lane +- username: diptikhaparde-coder + job_title: Software Developer + address: 123 Elm Street