Content uploaded by Tim Puhlfürß
Author content
All content in this area was uploaded by Tim Puhlfürß on Aug 10, 2023
Content may be subject to copyright.
An Exploratory Study of Documentation Strategies
for Product Features in Popular GitHub Projects
Tim Puhlf¨
urß , Lloyd Montgomery , Walid Maalej
Universit¨
at Hamburg, Department of Informatics
Hamburg, Germany
tim.puhlfuerss@uni-hamburg.de, lloyd.montgomery@uni-hamburg.de, walid.maalej@uni-hamburg.de
Abstract—[Background] In large open-source software pro-
jects, development knowledge is often fragmented across multiple
artefacts and contributors such that individual stakeholders are
generally unaware of the full breadth of the product features.
However, users want to know what the software is capable
of, while contributors need to know where to fix, update, and
add features. [Objective] This work aims at understanding how
feature knowledge is documented in GitHub projects and how it
is linked (if at all) to the source code. [Method] We conducted an
in-depth qualitative exploratory content analysis of 25 popular
GitHub repositories that provided the documentation artefacts
recommended by GitHub’s Community Standards indicator. We
first extracted strategies used to document software features in
textual artefacts and then strategies used to link the feature docu-
mentation with source code. [Results] We observed feature docu-
mentation in all studied projects in artefacts such as READMEs,
wikis, and website resource files. However, the features were
often described in an unstructured way. Additionally, tracing
techniques to connect feature documentation and source code
were rarely used. [Conclusions] Our results suggest a lacking (or
a low-prioritised) feature documentation in open-source projects,
little use of normalised structures, and a rare explicit referencing
to source code. As a result, product feature traceability is likely
to be very limited, and maintainability to suffer over time.
Index Terms—software documentation, feature traceability
I. INTRODUCTION & BACK GRO UN D
Social coding platforms such as GitHub often represent the
main collaboration enabler for open-source software (OSS)
projects. Contributors use GitHub features like its issue
tracker, wiki, and pull requests to create connections between
just-in-time requirements [1] and corresponding source code
implementation. As a result, requirements documentation
might become fragmented across individual artefacts. No
single contributor is likely to fully understand all requirements
and the corresponding implementation details. Newcomers
might even struggle to get started and involved in the projects
[2]. To mitigate this knowledge gap, some GitHub projects
document the overall requirements as product features in
artefacts such as README files and wikis. However, research
lacks an understanding of how and to what extent these product
features are documented and linked to source code.
Previous work has found that newcomers face barriers when
trying to contribute to OSS projects because of imprecise
documentation [2], [3]. Developers and users wish for com-
plete and up-to-date documentation [4]. A careful and well
maintained project documentation can avoid losing active con-
tributors [3]. Concerning understanding OSS documentation,
previous work has analysed the general structure of GitHub
READMEs [5], [6], identified the knowledge types in applic-
ation programming interface (API) reference documentation
[7] and source code comments [8], [9], extracted functional
requirements from blogs [10], and developed approaches to
augment documentation with more insightful sentences taken
from Stack Overflow [11], [12]. However, to the best of our
knowledge, no previous work has explored the high-level
product feature documentation across textual and source code
artefacts in GitHub projects.
As a first step towards studying documentation strategies
for product features, we explored 25 popular GitHub projects
of different programming languages in a qualitative content
analysis. Our research goals were to understand:
RQ1a Which textual artefacts do GitHub projects use to
document the product features?
RQ1b What descriptive elements do GitHub projects use to
document product features in textual artefacts?
RQ2a What strategies do GitHub projects use to link textual
product features to the source code?
RQ2b What strategies do GitHub projects use to link source
code to the textual product features?
We identified six artefact types that document product
features, including multi-level READMEs, repository descrip-
tions, and website resources. We extracted nine descriptive
element types to document product features, including the use
of tables and images. Finally, we observed six strategies to link
features to source code and four to link code to the features.
However, a large portion of documented features did not offer
a link to the corresponding implementation and was also not
linked in the implementation, indicating lacking traceability.
Our exploratory study of documentation strategies can help
project contributors improve the process and structure of their
feature documentation. We also draw attention to the need for
feature documentation guidelines and tracing tools.
II. METHODOLOGY
We conducted an in-depth exploratory qualitative content
analysis of 25 popular GitHub projects that provided the doc-
umentation artefacts recommended by GitHub’s Community
Standards1indicator. We applied our sampling criteria to
Dabic et al.’s GitHub dataset [13] to first obtain ten projects
1e.g., https://github.com/dotnet/maui/community
Table I
STU DIE D GIT HUB PRO JE CTS
Language Projects
C HandBrake△
C++ terminal△, winget-cli△
C# maui†, ReactiveUI†
Java PhotoView◦, seata◦
JavaScript covid19india-react△, create-react-app†, material◦,
nightwatch◦, node-red△, spectacle△, swiper◦
Objective-C IQKeyboardManager◦
Python django-rest-framework†, mypy◦, numpy-ml◦,
ParlAI◦, qutebrowser△
Swift SwiftEntryKit◦
TypeScript bit◦, kibana△, supabase△, webdriverio◦
△End-user Application, ◦Developer Library, †Application Framework
for a pre-study to understand the data and then to create our
sample of 25 projects. We addressed RQ1 with an open-coding
content analysis of textual artefacts, extracting product feature
documentation strategies. We then addressed RQ2 in two
parts: (a) an additional open-coding content analysis of textual
artefacts looking for traceability strategies to link the textual
product features to the source code; and (b) an algorithmic and
open-coding content analysis of source code files, looking for
traceability strategies to link the source code to textual product
features. The first author performed the entire manual content
analysis, assisted by regular discussions with the other authors
throughout the process.
Sampling. To form the dataset for our manual, time-
intensive in-depth analyses, we sampled popular GitHub pro-
jects that most likely contained well-documented product
features and traceability strategies. We used the GitHub Search
dataset by Dabic et al. [13] as a starting point to mitigate the
limitations of GitHub’s API. The dataset was released in early
2021 and contains the metadata of 735,669 projects of ten
primarily used programming languages. To gather up-to-date
metadata from the projects, we queried GitHub’s GraphQL
API. Our criteria for popular projects were >=5,000 stars and
not marked as a fork, archived, disabled, locked, or private.
We also required that the last commit to the main branch was
not older than one year (>June 3, 2020). These sampling
criteria led to a sample of 2,537 projects.
We then conducted a pre-study with one project of each of
the ten programming languages. We learned that some popular
projects use GitHub to primarily make their code public and
not to grow a community of contributors (that would prioritise
good publicly available documentation). To address this, we
used a Beautiful Soup2-powered script to add the fulfilment
of GitHub’s Community Standards indicator as an additional
sampling criterion for our study. The indicator displays, at a
glance, if a project provides important collaborative artefacts,
like a README and a contribution guideline. This reduced
our target population to only 306 popular projects3, each with
2https://pypi.org/project/beautifulsoup4/
3None of the Kotlin-based projects of the dataset fulfilled all selection
criteria. So our final sample is limited to nine programming languages.
– at least seemingly – high documentation quality.
The last step in the sampling process was to reduce our
number of projects to a manageable number since our in-
depth analyses requires ample time per project. We applied
a stratified random sampling strategy using the programming
language as a characteristic to sort the projects into strata. We
sampled about seven to nine per cent of projects per stratum,
with at least one project per language, resulting in the sample
of 25 studied projects listed in Table I.
RQ1 Analysis. We conducted an in-depth exploratory qual-
itative content analysis on textual artefacts of each sampled
project. Per project, we algorithmically extracted all textual
files with the suffixes .md, .mdx, .markdown, .txt, .asciidoc,
and .rst while analysing wiki pages directly via the GitHub
website. We did not analyse text from issues and pull re-
quests since we consider them a record of project evolution
and not a representation of the project’s current state. The
exploratory content analysis was guided by (but not limited
to) a coding guide that we created during the pre-study. We
annotated product features and analysed the strategies used to
document them. We first analysed READMEs, documentation
directories, repositories descriptions, and wikis. Afterwards,
we considered the resources of external product websites,
which 12 projects stored as text files within their repository.
RQ2 Analysis. We conducted an in-depth exploratory qual-
itative content analysis on the textual artefacts (RQ2a) and
source code files (RQ2b) in each GitHub project of Table I. For
RQ2a, we analysed the same textual artefacts as for RQ1. For
RQ2b, we algorithmically extracted all source code files with
a file suffix associated with the respective repository’s primary
programming language. We then annotated strategies to create
trace links from the textual product features to the source
code (RQ2a) and from the source code to the textual product
features (RQ2b). Such a trace link can be, for example, the
name of a feature-describing textual artefact. Since the number
of source code comments per repository is often high, we
conducted two analysis iterations for RQ2b. The first iteration
was a keyword search of the respective repository’s comments
to find ones related to the product features extracted for RQ1.
In the second iteration, we used the remaining time to analyse
the remainder of the file from top to bottom.
For RQ1a, RQ1b, and RQ2a combined, each project was
given a maximum of 120 minutes for extraction. We time-
boxed the analysis of RQ2b to additional 120 minutes. We
report the results as means across all repositories. Our rep-
lication package4includes a snapshot of the detailed research
data and all computational notebooks created for the analysis.
III. RES ULTS
(RQ1a) Textual Artefacts that Document Product Features
Overall, we identified six types of textual artefacts used
to document product features. Figure 1 shows the six types,
ranked by the proportion of product features that appear in
4https://doi.org/10.5281/zenodo.6914643
0 20 40 60 80 100
Proportion of Features Documented in this
Artefact Type (Mean Across Repositories)
Documentation Directory
Wiki
Repository Description
Lower-level README File
Website Resources
Top-level README File
Textual
Artefact Type
Figure 1. Textual artefacts that document product features
each of them, averaged (mean) across all 25 projects. Top-
level README files were the most common, with ≈53%
of all product features appearing here. Website resources,
containing ≈40% of all product features, are subdirectories
inside the GitHub projects containing the files that generate
the project website. Lower-level READMEs, containing ≈19%,
are the files that maintainers place in subdirectories to explain
parts of the project in more detail. For example, create-
react-app and numpy-ml used a README in the top-level
directory to provide an overview of the repository content
and applied lower-level READMEs extensively to detail the
subdirectory contents. The short repository descriptions con-
tained ≈14%, while GitHub wikis contained ≈11% of product
features. Finally, documentation directories contained ≈3%.
Documentation directories include multiple text files and could
be unpopular because the GitHub website only renders the
content of files called README. Therefore, contributors likely
prefer to place all documentation in README files or use
GitHub’s wiki if multiple documentation pages are necessary.
The total number of software product features described
in a GitHub project’s documentation highly differed in our
sample. While we found 44 features in the maui project, we
extracted only one from the very sparse documentation of
covid19india-react. A single product feature could occur in
multiple artefacts, in which case we assigned the codes of
all relevant artefact types to the feature. We observed that
the maintainers often used multiple artefact types to describe
a single feature in varying levels of detail: for example, the
repository description for a high-level description and the wiki
for a more detailed explanation. Such a double assignment
of artefact types to one feature occurred 73 times; triple
assignments happened 15 times. For 339 features, we only
found one artefact type.
(RQ1b) Descriptive Elements to Document Product Features
We extracted nine types of descriptive elements used to
document product features in GitHub projects. Eight of these
elements were used in addition to simple plaintext, for ex-
ample, to highlight the features in a README file. Figure 2
shows the nine descriptive element types, ranked by the
proportion of product features that incorporated them (not
mutually exclusive), averaged (mean) across all 25 projects.
The projects used up to five different types to describe
a single feature across multiple artefacts; the median was
two. Bullet point was the most-used type, appearing in ≈56%
of product features. This suggests the desire for brevity and
simple structure when detailing product features. Hyperlinks
0 20 40 60 80 100
Proportion of Features Documented with this Descriptive
Element Type (Mean Across Repositories)
Video / GIF
Emoji
Tags
None (but Plaintext)
Table
Image
Code Block
Hyperlink
Bullet Point
Descriptive Element Type
Figure 2. Descriptive elements to document product features
were the second most-used type, ≈42%, outlining the desire
to link to additional resources. Most often, these were links to
external websites. However, some product features also linked
to internal subdirectories, text files, or source code to refer
to further documentation or the source code implementation.
Markdown-based code blocks were the third most-used type
at ≈36%. These code blocks formally described how to use
certain features, similar to code examples in API documenta-
tion. Images were also fairly common (≈21%) and often used
to present the capabilities of the product features. Tables were
used with ≈20% of the features, mainly to structure the feature
presentation and add additional short descriptions. There were
≈16% of the product features that had no particular description
strategy beyond plaintext.
Finally, we also observed several rather rare descriptive
elements. Tags (≈5%), emojis (≈3%), and videos / GIFs
(≈2%) account for the least-used feature description types.
Tags were used, for example, by the kibana project to highlight
the components related to a feature. SwiftEntryKit used GIF
files to visualise its interactive features. Maui used emojis to
communicate the implementation status of its features without
lengthy textual descriptions; while a green tick referred to fully
implemented features, yellow and red emojis indicated that the
implementation is still ongoing or not started yet.
(RQ2a) Strategies to Link Product Features to Source Code
We extracted seven strategies to link product features to
source code. Figure 3 shows the strategies plotted with the
proportion of product features that incorporate each of them,
averaged (mean) across all 25 projects. The documentation of
a feature can use multiple strategies (not mutually exclusive).
The strategies are ranked by their specificity, meaning that
the top strategy, link to method/function, was the most direct
way to trace the source code; however, occurring in only ≈1%
of documented product features. Such a hyperlink referred
directly to a line in a code file. This strategy introduces high
maintenance costs since the link has to be updated if the line
of code does not correspond to the method/function anymore
after a code change. The link to code file strategy causes
less maintenance. However, it was rarely used (≈3%). For
example, ParlAI used these links to refer to more generally
usable auxiliary files. In comparison, just mentioning the name
of code file was more prevalent in our sample (≈13%). The
strategies link to subdirectory (≈6%) and name of subdirectory
0 20 40 60 80 100
Proportion of Features Documented with
this Strategy (Mean Across Repositories)
7. None
6. Name of Code Symbol
5. Name of Subdirectory
4. Link to Subdirectory
3. Name of Code File
2. Link to Code File
1. Link to Method/Function
Doc2Code Strategy
(Ord. by Specificity)
Figure 3. Strategies to link product features to source code
(≈6%) were usually used by the projects to give an overview
of the product components distributed across multiple subdir-
ectories of the repository. Often, these subdirectories contained
additional READMEs to detail the component; an example
is the project webdriverio. The most often used but less
specific strategy was name of code symbol (≈62%). For this
strategy, the projects presented plaintext or Markdown-based
code blocks to enrich the feature description with the feature
usage. For example, supabase provided code blocks in its
documentation to explain the product’s API. The shortcoming
of the sole use of this strategy is that it is mainly directed to the
product users. (Potential) project contributors would have to
manually search the repository with the specific code symbol
to find the corresponding implementation. Nevertheless, this
is still more specific than the none strategy, meaning that the
description of a product feature neither presented information
about how to use the feature nor where to find its corres-
ponding source code. This strategy was applied to ≈32% of
the features, indicating a lack of tracing strategies for product
feature documentation.
(RQ2b) Strategies to Link Source Code to Product Features
We extracted five strategies to link source code to the
product feature documentation. Figure 4 lists these strategies
plotted with the proportion of product features linked to with
these strategies, averaged (mean) across all 25 projects and
ranked by specificity. The strategies are not mutually exclusive,
meaning multiple code comments can apply different strategies
to refer to a single product feature.
Relative (≈0.4%) and absolute links to textual artefacts
(≈0.3%) as well as mentioning the name of a textual artefact
(≈2%) were rarely applied tracing strategies. Relative links
are more advantageous than absolute ones since they can
be used in any environment to navigate from the source
code to the documentation, including the local repository
on a developer’s computer. The projects material,kibana,
and ParlAI used hyperlinks or names of textual artefacts
to refer to configurations used in their source code, which
the corresponding feature documentations described in more
detail. Link to external resources was a slightly more popular
strategy to refer to product features (≈5%). We included this
strategy since these links most often referred to the product’s
externally hosted website. In other cases (for example, ParlAI),
the links referred to scientific papers that provide specifics
about a feature. Nevertheless, for the majority of product
0 20 40 60 80 100
Proportion of Features Linked to with
this Strategy (Mean Across Repositories)
5. None
4. Link to External Resources
3. Name of Textual Artefact
2. Absolute Link to Textual Artefact
1. Relative Link to Textual Artefact
Code2Doc Strategy
(Ord. by Specificity)
Figure 4. Strategies to link source code to product features
features (≈92%), we could not find tracing strategies more
sophisticated than the sole textual similarity between the code
comments and the product feature documentation, indicating
a lack of tracing techniques applied to refer from source code
to feature documentation.
IV. DISCUSSION
The studied GitHub projects often used combinations of tex-
tual artefact types to document product features. For example,
the terminal project used top- and lower-level README
files and a dedicated documentation directory to describe
the features in varying levels of detail. A combination of
multi-level READMEs can help project contributors, espe-
cially newcomers, understand the code base’s components.
On the contrary, other projects heavily used their external
website to describe product features and stored the related
website resources in the GitHub repository. These resources
are not a ‘native’ Git documentation component, making
them hard to consume on GitHub and limiting the usage of
tracing strategies, like relative links between documentation
and source code. However, the projects could use a hybrid
version of website resources and documentation directories:
They could enrich the website subdirectory with a README
that explains the website resources’ structure and provides
hyperlinks to each resource file. Readers could then browse
the website resources more conveniently on GitHub without
switching to the website.
We saw five relatively often and three less often used
descriptive element types applied to enhance the plaintext
description of product features. Their usage highly differed
across the GitHub projects and textual artefact types, implying
that there is currently no consensus about specific strategies
for documenting product features. We assess that all of the
observed descriptive element types can be beneficial in locat-
ing and understanding the feature documentation. Further tools
could motivate and facilitate their use in OSS documentation.
Our analysis shows that – unlike low-level tracing in pull
requests and GitHub issues, the investigated projects barely
use tracing techniques to connect the high-level functional
knowledge about product features with the corresponding code
implementation and components. The use of more sophistic-
ated tracing strategies can lead to a better understanding of
the software components [14], more efficient software main-
tenance and testing, and an improved requirements assessment
[15], [16]. A simple approach to reach a better connection
from documentation to code would be a section in the top-
level README file that describes the structure of the project,
its subdirectories, and software components. In our sample,
only terminal provided such a section.
Besides, relative hyperlinks could help documentation read-
ers efficiently navigate between product feature documentation
and code. This could reduce their need to search for specific
code files or sections and help contributing newcomers get
to know the project. If multiple code files correspond to one
feature, the documentation could list multiple links next to the
feature in a table-like structure or refer to the subdirectory con-
taining the relevant code files. However, a previous analysis of
OSS projects found that hyperlinks in source code comments
are rarely updated elements since about 10% of them led to
non-available webpages [17]. This also stresses the need for
tools that check the up-to-dateness of the links.
V. TH RE ATS TO VALIDITY
This qualitative content analysis is a preliminary study
to explore currently used feature documentation strategies in
GitHub. The manual coding process was performed by the first
author only. We mitigated this threat to validity by running a
pre-study and discussing all parts of the analysis approach, the
findings, and the implications among all authors. Moreover, the
first author conducted a second coding iteration for the entire
sample and research questions to mitigate annotation mistakes.
Our time-boxing resulted in an unfinished analysis of web-
site resources for seven repositories and an unfinished second
iteration of comment analysis for six projects. We consider this
acceptable; website resources are not the primary document-
ation means on GitHub, and we finished the highly-effective
keyword-based first iteration of the comment analysis.
The target population consisted of 306 repositories from
which we randomly sampled 25 for a time-intensive in-depth
analysis. Hence, the sample is likely not highly representative
of the population. We consider the results as a basis for
upcoming, more representative studies that could focus on
specific aspects or artefacts of our broad analysis.
VI. CONCLUSIONS AND FUTURE WO RK
Our qualitative content analysis of 25 popular, potentially
well-documented GitHub repositories revealed a broad and
rather fragmented spectrum of strategies to document product
features. We found six types of textual artefacts that listed
features and nine types of descriptive elements presented these
features. Trace links between the analysed textual artefacts and
source code were rare, which reveals an improvement potential
for the software evolution as well as comprehension.
We presume that if the documentation artefacts in popular
software projects are more interwoven with the source code,
developers of aspiring projects will start to take care more and
earlier about maintaining and enhancing the documentation.
Our analysis opens questions concerning the project contrib-
utors’ rationale for their documentation decisions and their
opinion regarding the improvement potential we identified.
Hence, future work can consider interviews and surveys with
GitHub contributors and an analysis of available best practices
in scientific and grey literature to triangulate findings from
three perspectives: the project artefacts, the practitioners, and
the best practices. The results should not only establish and
scrutinise documentation strategies in open-source settings, but
also set the foundation for tools extending previous work [18]
to facilitate documentation and overall collaboration.
ACK NOW LE DG EM EN T
This work is partly funded by DASHH Data Science in
Hamburg, the Helmholtz Graduate School for the Structure of
Matter.
REFERENCES
[1] N. A. Ernst and G. C. Murphy, “Case studies in just-in-time requirements
analysis,” in 2012 Second IEEE International Workshop on Empirical
Requirements Engineering (EmpiRE), 2012, pp. 25–32.
[2] I. Steinmacher, C. Treude, and M. A. Gerosa, “Let me in: Guidelines
for the successful onboarding of newcomers to open source projects,”
IEEE Software, vol. 36, no. 4, pp. 41–49, 2019.
[3] K. Constantino, S. Zhou, M. Souza, E. Figueiredo, and C. K¨
astner, “Un-
derstanding collaborative software development: An interview study,” in
Proceedings of the 15th International Conference on Global Software
Engineering, 2020, p. 55–65.
[4] E. Aghajani, C. Nagy, O. L. Vega-M´
arquez, M. Linares-V´
asquez,
L. Moreno, G. Bavota, and M. Lanza, “Software documentation issues
unveiled,” in 2019 IEEE/ACM 41st International Conference on Software
Engineering (ICSE), 2019, pp. 1199–1210.
[5] G. A. A. Prana, C. Treude, F. Thung, T. Atapattu, and D. Lo, “Cat-
egorizing the content of GitHub README files,” Empirical Software
Engineering, vol. 24, pp. 1296–1327, 2019.
[6] Y. Liu, E. Noei, and K. Lyons, “How ReadMe files are structured in
open source Java projects,” Information and Software Technology, vol.
148, p. 106924, 2022.
[7] W. Maalej and M. P. Robillard, “Patterns of knowledge in API reference
documentation,” IEEE Transactions on Software Engineering, vol. 39,
no. 9, pp. 1264–1282, 2013.
[8] L. Pascarella and A. Bacchelli, “Classifying code comments in Java
open-source software systems,” in 2017 IEEE/ACM 14th International
Conference on Mining Software Repositories (MSR), 2017, pp. 227–237.
[9] D. Steidl, B. Hummel, and E. Juergens, “Quality analysis of source
code comments,” in 2013 21st International Conference on Program
Comprehension (ICPC), 2013, pp. 83–92.
[10] D. Pagano and W. Maalej, “How do open source communities blog?”
Empirical Software Engineering, vol. 18, pp. 1090–1124, 2012.
[11] C. Treude and M. P. Robillard, “Augmenting API documentation with
insights from Stack Overflow,” in 2016 IEEE/ACM 38th International
Conference on Software Engineering (ICSE), 2016, pp. 392–403.
[12] M. M. Rahman, C. K. Roy, and I. Keivanloo, “Recommending insightful
comments for source code using crowdsourced knowledge,” in 2015
IEEE 15th International Working Conference on Source Code Analysis
and Manipulation (SCAM), 2015, pp. 81–90.
[13] O. Dabic, E. Aghajani, and G. Bavota, “Sampling projects in GitHub
for MSR studies,” in 2021 IEEE/ACM 18th International Conference on
Mining Software Repositories (MSR), 2021, pp. 560–564.
[14] R. Kasauli, E. Knauss, J. Nakatumba-Nabende, and B. Kanagwa, “Agile
islands in a waterfall environment: Challenges and strategies in auto-
motive,” in Proceedings of the Evaluation and Assessment in Software
Engineering, 2020, p. 31–40.
[15] J. Cleland-Huang, O. C. Z. Gotel, J. Huffman Hayes, P. M¨
ader, and
A. Zisman, “Software traceability: Trends and future directions,” in
Future of Software Engineering Proceedings, 2014, p. 55–69.
[16] P. M¨
ader and A. Egyed, “Assessing the effect of requirements trace-
ability for software maintenance,” in 2012 28th IEEE International
Conference on Software Maintenance (ICSM), 2012, pp. 171–180.
[17] H. Hata, C. Treude, R. G. Kula, and T. Ishio, “9.6 million links in source
code comments: Purpose, evolution, and decay,” in 2019 IEEE/ACM 41st
Intl. Conf. on Software Engineering (ICSE), 2019, pp. 1211–1221.
[18] E. Knauss, G. Liebel, J. Horkoff, R. Wohlrab, R. Kasauli, F. Lange,
and P. Gildert, “T-Reqs: Tool support for managing requirements in
large-scale agile system development,” in 2018 IEEE 26th International
Requirements Engineering Conference (RE), 2018, pp. 502–503.