From ea708321e43120a438f476709d239ca4c1170ba6 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 26 Feb 2026 23:46:29 -0800 Subject: [PATCH] feat: add scoring JSONL example and gitignore for benchmark data files --- .gitignore | 3 +++ data/email_score.jsonl.example | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 data/email_score.jsonl.example diff --git a/.gitignore b/.gitignore index edf6c8c..3776daf 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,6 @@ config/user.yaml.working # Claude context files — kept out of version control CLAUDE.md + +data/email_score.jsonl +data/email_compare_sample.jsonl diff --git a/data/email_score.jsonl.example b/data/email_score.jsonl.example new file mode 100644 index 0000000..92d4e80 --- /dev/null +++ b/data/email_score.jsonl.example @@ -0,0 +1,8 @@ +{"subject": "Interview Invitation — Senior Engineer", "body": "Hi Alex, we'd love to schedule a 30-min phone screen. Are you available Thursday at 2pm? Please reply to confirm.", "label": "interview_scheduled"} +{"subject": "Your application to Acme Corp", "body": "Thank you for your interest in the Senior Engineer role. After careful consideration, we have decided to move forward with other candidates whose experience more closely matches our current needs.", "label": "rejected"} +{"subject": "Offer Letter — Product Manager at Initech", "body": "Dear Alex, we are thrilled to extend an offer of employment for the Product Manager position. Please find the attached offer letter outlining compensation and start date.", "label": "offer_received"} +{"subject": "Quick question about your background", "body": "Hi Alex, I came across your profile and would love to connect. We have a few roles that seem like a great match. Would you be open to a brief chat this week?", "label": "positive_response"} +{"subject": "Company Culture Survey — Acme Corp", "body": "Alex, as part of our evaluation process, we invite all candidates to complete our culture fit assessment. The survey takes approximately 15 minutes. Please click the link below.", "label": "survey_received"} +{"subject": "Application Received — DataCo", "body": "Thank you for submitting your application for the Data Engineer role at DataCo. We have received your materials and will be in touch if your qualifications match our needs.", "label": "neutral"} +{"subject": "Following up on your application", "body": "Hi Alex, I wanted to follow up on your recent application. Your background looks interesting and we'd like to learn more. Can we set up a quick call?", "label": "positive_response"} +{"subject": "We're moving forward with other candidates", "body": "Dear Alex, thank you for taking the time to interview with us. After thoughtful consideration, we have decided not to move forward with your candidacy at this time.", "label": "rejected"}