DEV Community

Siddhesh Patil
Siddhesh Patil

Posted on

From Skeleton to Production: Building HR Goal Tracking Portal with GitHub Copilot

GitHub β€œFinish-Up-A-Thon” Challenge Submission

This is a submission for the GitHub Finish-Up-A-Thon Challenge

What I Built

I built the Atomberg Goal Setting & Tracking Portal β€” a full-featured,
role-based HR performance management system for Atomberg Technologies (a
fast-growing Indian consumer electronics brand).

The portal manages the complete employee performance lifecycle:

  • 🎯 Goal Setting β€” Employees create goals with weightage, UoM type, and thrust area alignment. Business rules enforced: max 8 goals, total 100% weightage, minimum 10% per goal
  • βœ… Manager Approval Workflow β€” Submit β†’ Review β†’ Approve / Return for Rework
  • πŸ“Š Quarterly Check-ins β€” Q1–Q4 progress logging with 4 UoM types (Numeric Min/Max, Timeline, Zero-is-best)
  • 🚨 Escalation Monitor β€” Rule-based detection of overdue submissions, missing approvals, and pending manager reviews
  • πŸ“ˆ Analytics & Reports β€” QoQ trend charts, department-wise performance, thrust area distribution, CSV exports
  • πŸ”’ Admin Governance β€” Cycle phase management, shared goal distribution, full audit logging

Tech Stack: React 18 + Vite Β· Context API Β· localStorage (zero-backend
demo) Β· Recharts Β· Lucide Icons Β· Custom dark glassmorphism CSS

Demo

πŸ”— Live App: https://atomberg-goal-tracker.vercel.app/

πŸ“ GitHub Repo: https://github.com/anonomous29/atomberg-goal-tracker

Quick Login Credentials

Role Email Password
Admin priya.sharma@atomberg.com admin123
Manager rajesh.kumar@atomberg.com manager123
Employee vikram.singh@atomberg.com emp123

What to try:

  1. Login as Admin β†’ Go to Escalation Monitor β†’ see rule-based alerts
  2. Go to Reports β†’ QoQ Trends tab β†’ see Q1 performance bar chart
  3. Login as Employee β†’ Dashboard shows Q1 score donut + goal-level progress
  4. Login as Manager β†’ See team check-in status and review Q1 feedback

The Comeback Story

This project started as a hackathon requirement β€” a Business Requirements
Document (BRD) from Atomberg asking for a digital goal management system. The
initial version had the core structure but was essentially an empty shell:
blank dashboards on login, no check-in data, no analytics, and missing two
bonus modules entirely.

What I finished up:

Before

  • ❌ Empty dashboards on every login (no seed data)
  • ❌ No Escalation Monitor (BRD Β§5.3 bonus feature)
  • ❌ Basic analytics β€” just one bar chart
  • ❌ No QoQ trend analysis
  • ❌ Manager dashboard didn't show check-in status
  • ❌ No per-goal score breakdown in reports

After

  • βœ… Rich pre-seeded demo data β€” 16 approved goals, 4 Q1 check-ins with manager comments, 13 audit entries, 8 notifications loaded on first open
  • βœ… Escalation Monitor β€” 5 rule types (Critical/High/Medium/Low), collapsible employee cards, department filter, CSV export
  • βœ… QoQ Analytics β€” 4-tab reports page with goal-level achievement table, quarter-on-quarter grouped bar chart, department comparison, and pie distribution
  • βœ… Score donut charts on employee dashboard
  • βœ… Team check-in tracking on manager dashboard (submitted vs. reviewed)
  • βœ… Version-aware localStorage β€” auto-migrates returning users to new seed data

The biggest unlock was the Escalation Monitor β€” it transformed the portal
from a passive data entry tool into an active compliance tracker that tells
managers exactly who is falling behind and why.

My Experience with GitHub Copilot

GitHub Copilot was integral to finishing this project quickly. Here's
specifically how it helped:
1. Boilerplate elimination
The score computation engine, localStorage CRUD helpers, and recharts
configurations were tedious to write from scratch. Copilot autocompleted
entire function bodies after seeing the first few lines of pattern.
2. Business logic translation
The BRD had complex UoM scoring rules (Numeric Min, Numeric Max, Timeline,
Zero). Copilot helped translate the prose spec directly into the computeScore
switch statement β€” getting the inverted formula for "lower is better" metrics
correct on the first try.
3. React pattern consistency
Across 10+ components, Copilot kept prop patterns, className conventions, and
inline style objects consistent β€” no more copy-paste drift between components.
4. Escalation rule engine
The most valuable assist: when I described the escalation rules in a comment
block, Copilot generated the full predicate functions for each rule type,
including edge cases like "employee has goals but hasn't submitted them."
5. Seed data generation
Writing 16 realistic performance goals with correct weightages summing to 100%,
meaningful descriptions, and plausible Q1 achievement numbers would have taken
an hour manually. Copilot drafted the full INITIAL_GOALS and
INITIAL_CHECKINS arrays in minutes.
Overall, Copilot cut the "finishing up" time from an estimated 2 days to a
single focused session β€” letting me ship the escalation module, analytics
overhaul, and rich demo data all in one go.

Atomberg Goal Tracker β€” Demo Screenshots

Screen 1: Admin Dashboard


Admin Dashboard
Organization-wide overview β€” team stats, department progress, quick actions

Screen 2: Escalation Monitor (Bonus Feature)

Escalation Monitor
Rule-based compliance tracker β€” Critical / High / Medium / Low severity alerts

Screen 3: QoQ Analytics β€” Reports & Analytics

QoQ Trends
Quarter-on-Quarter performance trends β€” all employees compared across Q1–Q4

Screen 4: Employee Dashboard

Employee Dashboard
Personal dashboard with Q1 score donut, approved goals, and cycle timeline

1. Boilerplate elimination
The score computation engine, localStorage CRUD helpers, and recharts
configurations were tedious to write from scratch. Copilot autocompleted
entire function bodies after seeing the first few lines of pattern.

2. Business logic translation
The BRD had complex UoM scoring rules (Numeric Min, Numeric Max, Timeline,
Zero). Copilot helped translate the prose spec directly into the computeScore
switch statement β€” getting the inverted formula for "lower is better" metrics
correct on the first try.

3. React pattern consistency
Across 10+ components, Copilot kept prop patterns, className conventions, and
inline style objects consistent β€” no more copy-paste drift between components.

4. Escalation rule engine
The most valuable assist: when I described the escalation rules in a comment
block, Copilot generated the full predicate functions for each rule type,
including edge cases like "employee has goals but hasn't submitted them."

5. Seed data generation
Writing 16 realistic performance goals with correct weightages summing to 100%,
meaningful descriptions, and plausible Q1 achievement numbers would have taken
an hour manually. Copilot drafted the full INITIAL_GOALS and
INITIAL_CHECKINS arrays in minutes.

Overall, Copilot cut the "finishing up" time from an estimated 2 days to a
single focused session β€” letting me ship the escalation module, analytics
overhaul, and rich demo data all in one go.g! -->

Top comments (0)