-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsoftware.html
More file actions
108 lines (101 loc) · 4.25 KB
/
Copy pathsoftware.html
File metadata and controls
108 lines (101 loc) · 4.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Software — Igor Steinmacher</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site">
<div class="row">
<a class="brand" href="index.html">Igor Steinmacher</a>
<nav>
<a href="index.html#research">Research</a>
<a href="index.html#projects">Projects</a>
<a href="publications.html">Publications</a>
<a href="software.html">Software</a>
<a href="index.html#students">Students</a>
<a href="index.html#service">Service</a>
<a href="index.html#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section>
<h2>Software</h2>
<p class="lead">Tools built by my group and collaborators. Research that ships:
each of these exists to put our findings about onboarding, retention, and
sustainability into the hands of real communities and classrooms.</p>
<div class="sw">
<h3>OSS-Doorway</h3>
<p>A gamified GitHub environment that scaffolds students through the open source
contribution process — quests, XP, levels, and a bot that gives real-time feedback
as students submit pull requests, write documentation, and solve issues. Evaluated
in multiple classrooms; boosts self-efficacy and GitHub familiarity. Part of the
NSF HSI project.</p>
<div class="links">
<a href="https://github.com/caiton1/OSS-Doorway" target="_blank" rel="noopener">github</a>
<a href="https://arxiv.org/abs/2502.07986" target="_blank" rel="noopener">paper (CSEE&T 2025)</a>
<a href="https://news.nau.edu/oss-doorway" target="_blank" rel="noopener">in the news</a>
</div>
</div>
<div class="sw">
<h3>FLOSScoach</h3>
<p>A portal that helps newcomers overcome the most common barriers to joining
open source communities, organizing project information in a standardized way
grounded in our barriers research (IST 2015, ICSE 2016). The original tool from
my PhD work — still the reference point for newcomer-support portals.</p>
<div class="links">
<a href="http://www.flosscoach.com" target="_blank" rel="noopener">flosscoach.com</a>
<a href="https://github.com/RESHAPELab/flosscoach" target="_blank" rel="noopener">github</a>
</div>
</div>
<div class="sw">
<h3>DisTrac</h3>
<p>Forecasts core-developer inactivity in open source projects from contribution
rhythms, building on our EMSE 2022 inactivity study. Developed with Fabio Calefato
and colleagues at the University of Bari. Tool paper in submission (ICSME 2026
Data and Tools track).</p>
<div class="links">
<a href="https://github.com/RESHAPELab" target="_blank" rel="noopener">github (RESHAPELab)</a>
</div>
</div>
<div class="sw">
<h3>SIGIL</h3>
<p>[One-line description here — see note below.]</p>
<div class="links">
<a href="https://github.com/RESHAPELab" target="_blank" rel="noopener">github (RESHAPELab)</a>
</div>
</div>
<div class="sw">
<h3>GiveMeLabeledIssues</h3>
<p>An open source issue-recommendation system that matches contributors to issues
needing their skills, based on API-domain labeling (MSR 2023).</p>
<div class="links">
<a href="https://github.com/RESHAPELab" target="_blank" rel="noopener">github (RESHAPELab)</a>
<a href="https://doi.org/10.1109/MSR59073.2023.00061" target="_blank" rel="noopener">paper (MSR 2023)</a>
</div>
</div>
<div class="sw">
<h3>CommUnityBuddy</h3>
<p>A conversational agent that mentors newcomer developers in open source
communities, funded by the Alfred P. Sloan Foundation. In active development
with OSS community partners.</p>
<div class="links">
<a href="https://github.com/RESHAPELab" target="_blank" rel="noopener">github (RESHAPELab)</a>
</div>
</div>
</section>
</main>
<footer>
<div class="row">
<span>© Igor Steinmacher</span>
<a href="https://github.com/igorsteinmacher/igorsteinmacher.github.io" target="_blank" rel="noopener">source</a>
</div>
</footer>
</body>
</html>