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 | Password | |
|---|---|---|
| Admin | priya.sharma@atomberg.com | admin123 |
| Manager | rajesh.kumar@atomberg.com | manager123 |
| Employee | vikram.singh@atomberg.com | emp123 |
What to try:
- Login as Admin β Go to Escalation Monitor β see rule-based alerts
- Go to Reports β QoQ Trends tab β see Q1 performance bar chart
- Login as Employee β Dashboard shows Q1 score donut + goal-level progress
- 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)