A study of 580 shared ChatGPT conversations in GitHub pull requests and issues reveals how developers use the AI tool for code generation, debugging, and collaboration. Researchers identified 16 types of engineering queries and found that over a third of shared interactions are multi-turn, iterative exchanges. The findings show ChatGPT’s growing role in team-based coding — from aiding reviews to fostering transparent, role-specific collaboration — marking a new phase in AI-assisted software development.A study of 580 shared ChatGPT conversations in GitHub pull requests and issues reveals how developers use the AI tool for code generation, debugging, and collaboration. Researchers identified 16 types of engineering queries and found that over a third of shared interactions are multi-turn, iterative exchanges. The findings show ChatGPT’s growing role in team-based coding — from aiding reviews to fostering transparent, role-specific collaboration — marking a new phase in AI-assisted software development.

Lessons on Developer–AI Collaboration From 580 GitHub Conversations

2025/11/12 23:00
8 min read
For feedback or concerns regarding this content, please contact us at crypto.news@mexc.com

:::info Authors

  1. Huizi Hao
  2. Kazi Amit Hasan
  3. Hong Qin
  4. Marcos Macedo
  5. Yuan Tian
  6. Steven H. H. Ding
  7. Ahmed E. Hassan

:::

Abstract

1 Introduction

2 Data Collection

3 RQ1: What types of software engineering inquiries do developers present to ChatGPT in the initial prompt?

4 RQ2: How do developers present their inquiries to ChatGPT in multi-turn conversations?

5 RQ3: What are the characteristics of the sharing behavior?

6 Discussions

7 Threats to Validity

8 Related Work

9 Conclusion and Future Work

References

Abstract

ChatGPT has significantly impacted software development practices, providing substantial assistance to developers in a variety of tasks, including coding, testing, and debugging. Despite its widespread adoption, the impact of ChatGPT as an assistant in collaborative coding remains largely unexplored. In this paper, we analyze a dataset of 210 and 370 developers’ shared conversations with ChatGPT in GitHub pull requests (PRs) and issues. We manually examined the content of the conversations and characterized the dynamics of the sharing behavior, i.e., understanding the rationale behind the sharing, identifying the locations where the conversations were shared, and determining the roles of the developers who shared them.

Our main observations are:

(1) Developers seek ChatGPT’s assistance across 16 types of software engineering inquiries. In both conversations shared in PRs and issues, the most frequently encountered inquiry categories include code generation, conceptual questions, how-to guides, issue resolution, and code review.

(2) Developers frequently engage with ChatGPT via multi-turn conversations where each prompt can fulfill various roles, such as unveiling initial or new tasks, iterative follow-up, and prompt refinement. Multi-turn conversations account for 33.2% of the conversations shared in PRs and 36.9% in issues.

(3) In collaborative coding, developers leverage shared conversations with ChatGPT to facilitate their role-specific contributions, whether as authors of PRs or issues, code reviewers, or collaborators on issues. Our work serves as the first step towards understanding the dynamics between developers and ChatGPT in collaborative software development and opens up new directions for future research on the topic.

Introduction

Recent advances in Foundation Models (FMs) hold considerable promise for automating various software engineering tasks. FM-powered tools like GitHub Copilot 1 , Amazon CodeWhisperer 2 , and OpenAI ChatGPT 3 , are now embraced by many professional software practitioners (Zhang et al., 2023). Such technologies essentially acquire important capabilities based on massive, typically natural-language, data sets and are able to suggest recommendations to software developers, providing source code completion, automatic generation of documentation, or other types of software engineering support.

\ Current research on FMs for software engineering has primarily focused on evaluating the effectiveness of these models, including specialized versions modified through prompt engineering or fine-tuning, against traditional automated software engineering solutions using standard benchmarks (Jiang et al., 2023; Lu et al., 2023; Hou et al., 2023; Siddiq et al., 2023; Deng et al., 2024; Guo et al., 2024). In contrast, a limited number of studies (Vaithilingam et al., 2022; Ziegler et al., 2022; Mozannar et al., 2022; Barke et al., 2023; Liang et al., 2024) have investigated how FM-powered tools are practically employed by software developers within the software development life cycle.

\ Most of these studies focus on GitHub Copilot, an FM-powered code generation tool via small-scale (20-42 participants) user studies or surveys. The usage of ChatGPT in software development encompasses a broader spectrum. Unlike Copilot, which primarily aids in code completion and generation, ChatGPT is designed to generate human-like text based on the received input, i.e., prompt. This makes ChatGPT a more versatile tool that is applicable to a wider range of tasks beyond coding.

\ Despite its potential, there is no research on the dynamics of developer interactions with ChatGPT, the challenges faced, and the opportunities it offers for open-source projects. Moreover, given that modern software systems are crafted by teams rather than isolated individuals, the capacity of ChatGPT to bolster and transform collaborative practices has not been explored. This potential extends well beyond its current use in individual tasks, suggesting a significant yet unexplored impact of FM-powered tools on team-based software development.

\ To fill the gap, we analyze developers’ shared ChatGPT conversations within GitHub issues and pull requests (PRs). We postulate that these shared conversations will not only reveal how developers engage with ChatGPT in the quality assurance of open-source software projects, such as resolving issues, but also uncover the usage of the shared conversation in collaborative coding, such as contributing to PRs and issues. Link sharing was introduced in ChatGPT in May 2023 (OpenAI, 2024b), allowing users to generate a unique URL for a ChatGPT conversation. This feature enables users to share a snapshot of an entire conversation up to the point of the link being shared.

\ Such shared conversations can help highlight important messages, reference discussions for collaborative purposes, or create a point for future reference (OpenAI, 2024a). Figure 1 shows an example of a conversation with ChatGPT being shared within a code review comment on a GitHub pull request. The shared conversation contains one turn - a complete cycle of a developer posing a question or problem and ChatGPT responding.

\ The code reviewer proposed a request asking the pull request author to use a JavaScript library named Day.js to parse and format dates. To demonstrate an example of how Day.js can be utilized, the reviewer asked ChatGPT how to replace a code snippet using Day.js, and ChatGPT responded. Then, the pull request author implemented the suggested code provided by ChatGPT. This example demonstrates the potential benefit of sharing a conversation with ChatGPT in a collaborative coding environment like GitHub.

\ Fig. 1 An example of shared conversations with ChatGPT in a GitHub pull request. Inthe shared conversation, the reviewer asked “Can i replicate this functionality with DayJS?

\ To better understand the characteristics of shared conversations and their implications on collaborative software engineering practice, we manually analyzed a dataset containing 580 shared ChatGPT conversations within GitHub PRs and issues, specifically, 210 in PRs and 370 in issues. Our empirical study addresses the following three research questions (RQs):

==RQ1: What types of software engineering inquiries do developers present to ChatGPT in the initial prompt?== In this RQ, we manually examined the content of all initial prompts, 580 prompts in total, in the collected shared conversations. We developed a taxonomy composed of 16 types of software engineering-related inquiries. The most frequently encountered inquiries are about code generation, addressing conceptual questions, providing how-to guidance, assisting with issue resolution, and conducting code reviews.

\ ==RQ2: How do developers present their inquiries to ChatGPT in multi-turn conversations?== In this RQ, we manually examined how developers interact with ChatGPT in multi-turn conversations, which consist of several rounds of prompts and responses between a developer and ChatGPT. Specifically, we investigated how developers structure their followup prompts subsequent to the initial prompt. We developed a taxonomy composed of seven types of roles a prompt plays within a multi-turn conversation. Our findings reveal that developers actively engage in multiple rounds of interactions with the aim of improving the quality of ChatGPT’s responses. This is primarily achieved through the posting of follow-up questions and the refinement of prior prompts.

==RQ3: What are the characteristics of the sharing behavior?== In this RQ, we investigate the patterns in the sharing behaviors of developers. More specifically, we examine where those conversations are shared by whom and for what purpose. Our analysis reveals that developers utilize shared conversations as a way to complement their role-specific contributions, facilitating a more efficient and transparent collaborative process. The main contributions of this paper are described as follows:

\

  • We present a comprehensive analysis of how developers share their conversations with ChatGPT within the context of open-source projects, particularly focusing on GitHub pull requests and issues. Our study introduces two taxonomies to classify the dynamics of these interactions: one for the types of software engineering inquiries in developers’ prompts and another for the roles of prompts in multi-turn conversations with ChatGPT. To support further research, our replication package contains 580 and 654 manually annotated prompts aligned with these taxonomies.

  • Our study reveals the multifaceted usage of ChatGPT in software engineering. Beyond assisting with technical tasks, we observe the usage of shared conversations to support collaboration among developers in open-source projects.

  • We provide implications for developers and software engineering researchers based on our findings. These implications offer insights to improve the use of FM-powered tools like ChatGPT further in collaborative software development.

    \ We organize the remainder of the paper as follows. Section 2 introduces our dataset. Section 3-5 present methodology and answers to each of the three research questions. Section 6 discusses the implications of findings for practitioners and researchers. Section 7 presents threats to validity, and Section 8 presents related work. Finally, Section 9 concludes the paper.

    \ Fig. 2 Overview of the data collection process for answering three research questions.

:::info This paper is available on arxiv under CC BY-NC-SA 4.0 license.

:::

\

Market Opportunity
null Logo
null Price(null)
--
----
USD
null (null) Live Price Chart
Disclaimer: The articles reposted on this site are sourced from public platforms and are provided for informational purposes only. They do not necessarily reflect the views of MEXC. All rights remain with the original authors. If you believe any content infringes on third-party rights, please contact crypto.news@mexc.com for removal. MEXC makes no guarantees regarding the accuracy, completeness, or timeliness of the content and is not responsible for any actions taken based on the information provided. The content does not constitute financial, legal, or other professional advice, nor should it be considered a recommendation or endorsement by MEXC.

You May Also Like

TransFi Secures Pivotal $19.2M Funding to Revolutionize Global Stablecoin Payments

TransFi Secures Pivotal $19.2M Funding to Revolutionize Global Stablecoin Payments

BitcoinWorld TransFi Secures Pivotal $19.2M Funding to Revolutionize Global Stablecoin Payments In a significant move for the digital payments sector, stablecoin
Share
bitcoinworld2026/03/18 11:50
Wormhole launches reserve tying protocol revenue to token

Wormhole launches reserve tying protocol revenue to token

The post Wormhole launches reserve tying protocol revenue to token appeared on BitcoinEthereumNews.com. Wormhole is changing how its W token works by creating a new reserve designed to hold value for the long term. Announced on Wednesday, the Wormhole Reserve will collect onchain and offchain revenues and other value generated across the protocol and its applications (including Portal) and accumulate them into W, locking the tokens within the reserve. The reserve is part of a broader update called W 2.0. Other changes include a 4% targeted base yield for tokenholders who stake and take part in governance. While staking rewards will vary, Wormhole said active users of ecosystem apps can earn boosted yields through features like Portal Earn. The team stressed that no new tokens are being minted; rewards come from existing supply and protocol revenues, keeping the cap fixed at 10 billion. Wormhole is also overhauling its token release schedule. Instead of releasing large amounts of W at once under the old “cliff” model, the network will shift to steady, bi-weekly unlocks starting October 3, 2025. The aim is to avoid sharp periods of selling pressure and create a more predictable environment for investors. Lockups for some groups, including validators and investors, will extend an additional six months, until October 2028. Core contributor tokens remain under longer contractual time locks. Wormhole launched in 2020 as a cross-chain bridge and now connects more than 40 blockchains. The W token powers governance and staking, with a capped supply of 10 billion. By redirecting fees and revenues into the new reserve, Wormhole is betting that its token can maintain value as demand for moving assets and data between chains grows. This is a developing story. This article was generated with the assistance of AI and reviewed by editor Jeffrey Albus before publication. Get the news in your inbox. Explore Blockworks newsletters: Source: https://blockworks.co/news/wormhole-launches-reserve
Share
BitcoinEthereumNews2025/09/18 01:55
U.S SEC issues first-ever definitions for what crypto assets are securities

U.S SEC issues first-ever definitions for what crypto assets are securities

The post U.S SEC issues first-ever definitions for what crypto assets are securities appeared on BitcoinEthereumNews.com. For the first time, the U.S Securities
Share
BitcoinEthereumNews2026/03/18 12:24