$npx -y skills add vibeeval/vibecosystem --skill achievementsSteam-style achievement system with XP, levels, streaks, and skill trees. Gamifies the development workflow. 25 achievements across 5 categories.
| 1 | # Achievement System |
| 2 | |
| 3 | Steam-style gamification for the development workflow. Earn XP by coding, fixing bugs, shipping features, and collaborating with agents. Level up, maintain streaks, and unlock achievements across 5 skill trees. |
| 4 | |
| 5 | ## XP Level Thresholds |
| 6 | |
| 7 | | Level | XP Required | Title | |
| 8 | |-------|-------------|-------| |
| 9 | | 1 | 0 | Apprentice | |
| 10 | | 2 | 100 | Developer | |
| 11 | | 3 | 300 | Engineer | |
| 12 | | 5 | 500 | Senior Engineer | |
| 13 | | 10 | 1000 | Staff Engineer | |
| 14 | | 20 | 3000 | Principal Engineer | |
| 15 | | 50 | 10000 | Legendary | |
| 16 | |
| 17 | ## Streak System |
| 18 | |
| 19 | Consecutive days of coding activity multiply XP earned: |
| 20 | |
| 21 | | Streak | Multiplier | |
| 22 | |--------|-----------| |
| 23 | | 1-2 days | 1.0x | |
| 24 | | 3-6 days | 1.25x | |
| 25 | | 7-13 days | 1.5x | |
| 26 | | 14-29 days | 2.0x | |
| 27 | | 30+ days | 3.0x | |
| 28 | |
| 29 | Missing a day resets the streak to 0. |
| 30 | |
| 31 | ## Skill Trees |
| 32 | |
| 33 | ### Tree 1: Code Warrior |
| 34 | |
| 35 | Achievements for writing and shipping code. |
| 36 | |
| 37 | **First Blood** (10 XP) |
| 38 | - Description: Complete your first code review |
| 39 | - Unlock: First time a commit or diff is reviewed in a session |
| 40 | - Badge: Sword icon |
| 41 | |
| 42 | **Speed Demon** (25 XP) |
| 43 | - Description: Fix a bug in under 2 minutes from identification to resolution |
| 44 | - Unlock: Bug-fix tool sequence completes in < 120 seconds |
| 45 | - Badge: Lightning bolt |
| 46 | |
| 47 | **Polyglot** (50 XP) |
| 48 | - Description: Work in 3 or more programming languages in a single session |
| 49 | - Unlock: Edit files with 3+ distinct language extensions in one session |
| 50 | - Badge: Globe |
| 51 | |
| 52 | **Marathon Runner** (100 XP) |
| 53 | - Description: Sustain an 8-hour coding session without stopping |
| 54 | - Unlock: Session active for 8+ hours (tracked via tool call timestamps) |
| 55 | - Badge: Running figure |
| 56 | |
| 57 | **Perfectionist** (50 XP) |
| 58 | - Description: All tests pass on the very first run after a feature implementation |
| 59 | - Unlock: Test suite passes immediately after the first Write/Edit sequence with no retries |
| 60 | - Badge: Gold star |
| 61 | |
| 62 | ### Tree 2: Bug Slayer |
| 63 | |
| 64 | Achievements for hunting and eliminating bugs. |
| 65 | |
| 66 | **Bug Whisperer** (25 XP) |
| 67 | - Description: Fix 5 bugs in a single session |
| 68 | - Unlock: 5 bug-fix tool sequences detected in one session |
| 69 | - Badge: Magnifying glass |
| 70 | |
| 71 | **The Exterminator** (75 XP) |
| 72 | - Description: Fix 25 bugs across your lifetime |
| 73 | - Unlock: Cumulative bugs-fixed counter reaches 25 |
| 74 | - Badge: Skull |
| 75 | |
| 76 | **Regression Hunter** (40 XP) |
| 77 | - Description: Catch a bug introduced in the last 24 hours before it ships |
| 78 | - Unlock: Bug identified and fixed that was introduced in recent session |
| 79 | - Badge: Net |
| 80 | |
| 81 | **Flaky Tamer** (35 XP) |
| 82 | - Description: Stabilize a flaky test that was failing intermittently |
| 83 | - Unlock: A previously failing test now passes consistently across 3 runs |
| 84 | - Badge: Anchor |
| 85 | |
| 86 | **Zero to Hero** (60 XP) |
| 87 | - Description: Reduce error count from 10+ to 0 in a single session |
| 88 | - Unlock: Session starts with 10+ errors, ends with 0 |
| 89 | - Badge: Phoenix |
| 90 | |
| 91 | ### Tree 3: Architecture Master |
| 92 | |
| 93 | Achievements for system design and planning. |
| 94 | |
| 95 | **Architect's Vision** (50 XP) |
| 96 | - Description: Create an implementation plan with 10 or more steps |
| 97 | - Unlock: Plan document written with 10+ numbered steps or tasks |
| 98 | - Badge: Blueprint |
| 99 | |
| 100 | **The Refactorer** (45 XP) |
| 101 | - Description: Reduce a file from 300+ lines to under 200 lines without losing functionality |
| 102 | - Unlock: File shrinks by 100+ lines in a single edit session |
| 103 | - Badge: Scissors |
| 104 | |
| 105 | **Dependency Auditor** (30 XP) |
| 106 | - Description: Audit and clean up project dependencies in one session |
| 107 | - Unlock: package.json or requirements.txt modified to remove 3+ entries |
| 108 | - Badge: Package box |
| 109 | |
| 110 | **API Architect** (55 XP) |
| 111 | - Description: Design and implement a REST or GraphQL API with 5+ endpoints |
| 112 | - Unlock: 5+ route or resolver definitions written in one session |
| 113 | - Badge: Cloud diagram |
| 114 | |
| 115 | **The Modularizer** (40 XP) |
| 116 | - Description: Split a monolithic file into 3+ focused modules |
| 117 | - Unlock: One file becomes 3+ new files in a refactoring session |
| 118 | - Badge: Puzzle piece |
| 119 | |
| 120 | ### Tree 4: Security Guardian |
| 121 | |
| 122 | Achievements for security-conscious development. |
| 123 | |
| 124 | **Security Hawk** (30 XP) |
| 125 | - Description: Identify a security vulnerability during review |
| 126 | - Unlock: Security review flags a CRITICAL or HIGH severity finding |
| 127 | - Badge: Shield with eye |
| 128 | |
| 129 | **Secret Keeper** (20 XP) |
| 130 | - Description: Catch and remove a hardcoded credential before it commits |
| 131 | - Unlock: Credential-deny hook triggers and the file is subsequently fixed |
| 132 | - Badge: Lock |
| 133 | |
| 134 | **Input Validator** (25 XP) |
| 135 | - Description: Add Zod or schema validation to an unvalidated input |
| 136 | - Unlock: Zod schema or validation logic added to an API handler or form |
| 137 | - Badge: Checklist |
| 138 | |
| 139 | **Dependency Guardian** (35 XP) |
| 140 | - Description: Identify and update a dependency with a known CVE |
| 141 | - Unlock: CVE-flagged dependency version bumped in package.json |
| 142 | - Badge: Shield with checkmark |
| 143 | |
| 144 | **The Auditor** (80 XP) |
| 145 | - Description: Complete a full security audit with no CRITICAL findings |
| 146 | - Unlock: security-reviewer agent completes a full sweep and returns clean |
| 147 | - Badge: Gold shield |
| 148 | |
| 149 | ### Tree 5: Team Player |
| 150 | |
| 151 | Achi |