|
| 1 | +# Skills System Implementation |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +The Skills System is a fully functional, editable, and persistent RPG-style feature that allows users to track skills and characteristics with XP and levels. It follows Notion's clean, minimal design philosophy while incorporating RPG mechanics underneath. |
| 6 | + |
| 7 | +## Features |
| 8 | + |
| 9 | +### 1. Two-Column Layout |
| 10 | +- **Left Column (30%)**: Characteristics Panel |
| 11 | +- **Right Column (70%)**: Skills Grid |
| 12 | +- Desktop-optimized locked grid layout |
| 13 | + |
| 14 | +### 2. Skills Management |
| 15 | +- Create, read, update, and delete skills |
| 16 | +- Each skill includes: |
| 17 | + - Name and description |
| 18 | + - Area/category classification |
| 19 | + - Cover image support |
| 20 | + - XP and auto-calculated level |
| 21 | + - Active/Inactive toggle |
| 22 | + - Related characteristics (optional) |
| 23 | + |
| 24 | +### 3. Characteristics Management |
| 25 | +- Create, read, update, and delete characteristics |
| 26 | +- Each characteristic includes: |
| 27 | + - Icon (customizable emoji) |
| 28 | + - Name |
| 29 | + - XP and auto-calculated level |
| 30 | + - Progress bar visualization |
| 31 | + |
| 32 | +### 4. XP and Level System |
| 33 | +- **Level Formula**: `Level = floor(sqrt(XP / 100)) + 1` |
| 34 | +- **XP Thresholds**: |
| 35 | + - Level 1: 0-99 XP |
| 36 | + - Level 2: 100-399 XP |
| 37 | + - Level 3: 400-899 XP |
| 38 | + - Level 4: 900-1599 XP |
| 39 | + - Level 5: 1600-2499 XP |
| 40 | + - Level 10: 8100-9999 XP |
| 41 | + - Level 20: 36100-40099 XP |
| 42 | + |
| 43 | +### 5. Data Persistence |
| 44 | +- All data stored in Supabase PostgreSQL |
| 45 | +- Row Level Security (RLS) policies ensure user data isolation |
| 46 | +- Real-time sync using TanStack React Query |
| 47 | +- Automatic cache invalidation on mutations |
| 48 | + |
| 49 | +### 6. UI/UX Features |
| 50 | +- **Quick Create Panel**: Fast creation of skills and characteristics |
| 51 | +- **Search**: Filter skills by name or description |
| 52 | +- **Filters**: Active/Inactive/All skills |
| 53 | +- **Inline Editing**: Edit characteristics directly in cards |
| 54 | +- **Confirmation Dialogs**: Custom modal confirmations for deletions |
| 55 | +- **Progress Visualization**: |
| 56 | + - Standard progress bars for characteristics |
| 57 | + - Segmented progress bars (10 blocks) for skills |
| 58 | +- **Toast Notifications**: User feedback for all operations |
| 59 | + |
| 60 | +## Navigation |
| 61 | + |
| 62 | +The Skills page is accessible via: |
| 63 | +1. **Habits Page**: "Skills" button next to "+ Create Habit" |
| 64 | +2. **Direct URL**: `/skills` |
| 65 | +3. **Back Button**: Returns to home page from Skills page |
| 66 | + |
| 67 | +## Database Schema |
| 68 | + |
| 69 | +### Skills Table |
| 70 | +```sql |
| 71 | +CREATE TABLE public.skills ( |
| 72 | + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), |
| 73 | + user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE, |
| 74 | + name TEXT NOT NULL, |
| 75 | + description TEXT, |
| 76 | + area TEXT, |
| 77 | + cover_image TEXT, |
| 78 | + xp INTEGER NOT NULL DEFAULT 0, |
| 79 | + level INTEGER NOT NULL DEFAULT 1, |
| 80 | + is_active BOOLEAN NOT NULL DEFAULT true, |
| 81 | + related_characteristics UUID[] DEFAULT ARRAY[]::UUID[], |
| 82 | + created_at TIMESTAMPTZ NOT NULL DEFAULT now(), |
| 83 | + updated_at TIMESTAMPTZ NOT NULL DEFAULT now() |
| 84 | +); |
| 85 | +``` |
| 86 | + |
| 87 | +### Characteristics Table |
| 88 | +```sql |
| 89 | +CREATE TABLE public.characteristics ( |
| 90 | + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), |
| 91 | + user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE, |
| 92 | + name TEXT NOT NULL, |
| 93 | + icon TEXT NOT NULL DEFAULT '⭐', |
| 94 | + xp INTEGER NOT NULL DEFAULT 0, |
| 95 | + level INTEGER NOT NULL DEFAULT 1, |
| 96 | + created_at TIMESTAMPTZ NOT NULL DEFAULT now(), |
| 97 | + updated_at TIMESTAMPTZ NOT NULL DEFAULT now() |
| 98 | +); |
| 99 | +``` |
| 100 | + |
| 101 | +### Auto-Level Calculation |
| 102 | +Database triggers automatically update the `level` field when `xp` changes: |
| 103 | +- `trigger_update_skill_level` on `skills` table |
| 104 | +- `trigger_update_characteristic_level` on `characteristics` table |
| 105 | + |
| 106 | +## TypeScript Interfaces |
| 107 | + |
| 108 | +### Skill Interface |
| 109 | +```typescript |
| 110 | +interface Skill { |
| 111 | + id: string; |
| 112 | + user_id: string; |
| 113 | + name: string; |
| 114 | + description: string | null; |
| 115 | + area: string | null; |
| 116 | + cover_image: string | null; |
| 117 | + xp: number; |
| 118 | + level: number; |
| 119 | + is_active: boolean; |
| 120 | + related_characteristics: string[]; |
| 121 | + created_at: string; |
| 122 | + updated_at: string; |
| 123 | +} |
| 124 | +``` |
| 125 | + |
| 126 | +### Characteristic Interface |
| 127 | +```typescript |
| 128 | +interface Characteristic { |
| 129 | + id: string; |
| 130 | + user_id: string; |
| 131 | + name: string; |
| 132 | + icon: string; |
| 133 | + xp: number; |
| 134 | + level: number; |
| 135 | + created_at: string; |
| 136 | + updated_at: string; |
| 137 | +} |
| 138 | +``` |
| 139 | + |
| 140 | +## Custom Hooks |
| 141 | + |
| 142 | +### useSkills |
| 143 | +```typescript |
| 144 | +const { |
| 145 | + skills, // Array of user's skills |
| 146 | + isLoading, // Loading state |
| 147 | + createSkill, // Mutation to create skill |
| 148 | + updateSkill, // Mutation to update skill |
| 149 | + deleteSkill, // Mutation to delete skill |
| 150 | +} = useSkills(); |
| 151 | +``` |
| 152 | + |
| 153 | +### useCharacteristics |
| 154 | +```typescript |
| 155 | +const { |
| 156 | + characteristics, // Array of user's characteristics |
| 157 | + isLoading, // Loading state |
| 158 | + createCharacteristic, // Mutation to create characteristic |
| 159 | + updateCharacteristic, // Mutation to update characteristic |
| 160 | + deleteCharacteristic, // Mutation to delete characteristic |
| 161 | +} = useCharacteristics(); |
| 162 | +``` |
| 163 | + |
| 164 | +## Components Structure |
| 165 | + |
| 166 | +``` |
| 167 | +src/ |
| 168 | +├── pages/ |
| 169 | +│ └── Skills.tsx # Main Skills page |
| 170 | +├── components/skills/ |
| 171 | +│ ├── CharacteristicsPanel.tsx # Left column container |
| 172 | +│ ├── CharacteristicCard.tsx # Individual characteristic display |
| 173 | +│ ├── CreateCharacteristicForm.tsx # Inline characteristic creation |
| 174 | +│ ├── SkillsGrid.tsx # Right column container |
| 175 | +│ ├── SkillCard.tsx # Individual skill card |
| 176 | +│ ├── CreateSkillForm.tsx # Inline skill creation |
| 177 | +│ ├── EditSkillDialog.tsx # Modal for editing skills |
| 178 | +│ ├── QuickCreatePanel.tsx # Top quick create buttons |
| 179 | +│ └── ConfirmDialog.tsx # Reusable confirmation dialog |
| 180 | +├── hooks/ |
| 181 | +│ ├── useSkills.ts # Skills data management |
| 182 | +│ └── useCharacteristics.ts # Characteristics data management |
| 183 | +└── lib/ |
| 184 | + ├── levelCalculation.ts # XP/level utilities |
| 185 | + └── skillsConstants.ts # Shared constants |
| 186 | +``` |
| 187 | + |
| 188 | +## Design System |
| 189 | + |
| 190 | +### Colors |
| 191 | +- **Primary**: System primary color for interactive elements |
| 192 | +- **Muted**: Background for secondary elements |
| 193 | +- **Foreground**: Main text color |
| 194 | +- **Muted Foreground**: Secondary text color |
| 195 | +- **Border**: Subtle borders and dividers |
| 196 | + |
| 197 | +### Typography |
| 198 | +- Clean, minimal font hierarchy |
| 199 | +- Left-aligned headers |
| 200 | +- Neutral gray tones throughout |
| 201 | + |
| 202 | +### Spacing |
| 203 | +- Notion-style spacing and padding |
| 204 | +- Consistent gap sizes (3, 4, 6, 8) |
| 205 | + |
| 206 | +### Visual Elements |
| 207 | +- Flat cards with rounded corners |
| 208 | +- No shadows, glows, or gradients |
| 209 | +- Monochrome progress bars |
| 210 | +- Icon-based actions |
| 211 | + |
| 212 | +## Usage Examples |
| 213 | + |
| 214 | +### Creating a Skill |
| 215 | +1. Click "+ New Area – Skill" in Quick Create panel |
| 216 | +2. Fill in name (required), description, area, cover image URL, and initial XP |
| 217 | +3. Click "Create Skill" |
| 218 | +4. Skill appears in grid with auto-calculated level |
| 219 | + |
| 220 | +### Editing a Characteristic |
| 221 | +1. Click edit icon on characteristic card |
| 222 | +2. Modify icon, name, or XP inline |
| 223 | +3. Click save icon |
| 224 | +4. Changes persist and level updates automatically |
| 225 | + |
| 226 | +### Filtering Skills |
| 227 | +1. Use search bar to filter by name/description |
| 228 | +2. Use All/Active/Inactive buttons to filter by status |
| 229 | +3. Grid updates in real-time |
| 230 | + |
| 231 | +## Migration |
| 232 | + |
| 233 | +To apply the database schema, run the migration: |
| 234 | +```bash |
| 235 | +# Using Supabase CLI |
| 236 | +supabase db push |
| 237 | + |
| 238 | +# Or manually apply the migration file: |
| 239 | +# supabase/migrations/20260127000000_add_skills_system.sql |
| 240 | +``` |
| 241 | + |
| 242 | +## Testing |
| 243 | + |
| 244 | +All existing tests pass with the Skills system: |
| 245 | +- ✅ 84/84 tests pass |
| 246 | +- ✅ TypeScript compilation successful |
| 247 | +- ✅ Build successful |
| 248 | +- ✅ No security vulnerabilities (CodeQL) |
| 249 | + |
| 250 | +## Future Enhancements |
| 251 | + |
| 252 | +Potential improvements for future versions: |
| 253 | +1. Link characteristics to skills (many-to-many relationship) |
| 254 | +2. XP gain automation from completed habits/workouts |
| 255 | +3. Skill trees and dependencies |
| 256 | +4. Achievement badges based on skill levels |
| 257 | +5. Export/import skill data |
| 258 | +6. Skill comparison and analytics |
| 259 | +7. Custom XP formulas per skill |
| 260 | +8. Skill recommendations based on user goals |
| 261 | + |
| 262 | +## Related Documentation |
| 263 | + |
| 264 | +- [Habit Tracker Implementation](./HABIT_TRACKER_IMPLEMENTATION.md) |
| 265 | +- [XP System Documentation](./XP_SYSTEM_DOCUMENTATION.md) |
| 266 | +- [Database Schema Refactor](./DATABASE_SCHEMA_REFACTOR.md) |
| 267 | +- [Supabase Setup](./SUPABASE_SETUP.md) |
0 commit comments