Skip to content

Commit 6d3531c

Browse files
committed
Add RECAP paper; fix theme hover colors; remove demo assets
1 parent b57f1d7 commit 6d3531c

20 files changed

Lines changed: 34 additions & 134 deletions

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ repos:
88
- id: end-of-file-fixer
99
- id: check-yaml
1010
- id: check-added-large-files
11+
args: ["--maxkb=5000"]
1112
- repo: https://github.com/pre-commit/mirrors-prettier
1213
rev: v3.1.0
1314
hooks:

_bibliography/papers.bib

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
---
22
---
33
4+
@article{keyu2026recap,
5+
abbr={ACL Demo 2026},
6+
title={RECAP: An End-to-End Platform for Capturing, Replaying, and Analyzing AI-Assisted Programming Interactions},
7+
author={Keyu He* and Qianou Ma* and Valerie Chen and Wayne Chi and Tongshuang Wu},
8+
year={2026},
9+
journal={ACL Demo},
10+
abstract={Understanding how developers interact with AI coding assistants requires more than chat logs or git histories in isolation; it requires reconstructing the full context: which prompt led to which edit, what the developer tried and discarded, and how their strategy evolved over time. We present RECAP (Replay and Examine Captured AI Programming), an open-source platform that (1) passively records AI chat sessions and fine-grained code edits inside VS Code without disrupting the developer's workflow, (2) merges them into a unified timeline for interactive session replay, and (3) provides extensible analysis modules for behavioral classification and AI reliance measurement. Deployed in a university software engineering course, RECAP captured 2,034 prompts and 8,239 code edits from 41 students across a multi-week project. We demonstrate how the platform's linked data and replay capabilities enable analyses of developer-AI interaction patterns that no single data source could support.},
11+
selected={true},
12+
pdf={_Arxiv__ACL_Demo_Feb_2026__RECAP.pdf},
13+
preview={RECAP.png}
14+
}
15+
416
@article{keyu2025vlm,
517
abbr={ACL 2026},
618
title={Believing without Seeing: Quality Scores for Contextualizing Vision-Language Model Explanations},
@@ -51,4 +63,4 @@ @article{enhancing-debugging
5163
month={dec},
5264
pdf={Enhancing-Debugging.pdf},
5365
preview={Enhancing-Debugging.png}
54-
}
66+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
layout: post
3+
title: Paper accepted at ACL 2026 Demo
4+
date: 2026-04-25
5+
---
6+
7+
Our paper **"RECAP: An End-to-End Platform for Capturing, Replaying, and Analyzing AI-Assisted Programming Interactions"** has been accepted at **ACL 2026 Demo**! RECAP captures AI chat sessions and fine-grained code edits inside VS Code, merges them into a unified replayable timeline, and provides analysis modules for studying developer-AI interaction patterns. Excited to share the platform with the community!

_sass/_themes.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
--global-text-color: #{$black-color};
1111
--global-text-color-light: #{$grey-color};
1212
--global-theme-color: #8b1538; //#{$purple-color};
13-
--global-hover-color: #6610f2; //#{$purple-color};
13+
--global-hover-color: #6b0f2a; //#{$purple-color};
1414
--global-hover-text-color: #{$white-color};
1515
--global-footer-bg-color: #{$grey-color-dark};
1616
--global-footer-text-color: #{$grey-color-light};
@@ -80,7 +80,7 @@ html[data-theme="dark"] {
8080
--global-text-color: #{$grey-color-light};
8181
--global-text-color-light: #{$grey-color};
8282
--global-theme-color: #{$cyan-color};
83-
--global-hover-color: #{$cyan-color};
83+
--global-hover-color: #{$light-cyan-color};
8484
--global-hover-text-color: #{$white-color};
8585
--global-footer-bg-color: #{$grey-color-light};
8686
--global-footer-text-color: #{$grey-color-dark};

assets/img/1.jpg

-64.6 KB
Binary file not shown.

assets/img/10.jpg

-46.1 KB
Binary file not shown.

assets/img/11.jpg

-85.8 KB
Binary file not shown.

assets/img/12.jpg

-15.7 KB
Binary file not shown.

assets/img/2.jpg

-89.3 KB
Binary file not shown.

assets/img/3.jpg

-44.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)