Unify skills taxonomy across leaderboard and profile - #3
Open
DreadPirateRobertz wants to merge 1 commit into
Open
Unify skills taxonomy across leaderboard and profile#3DreadPirateRobertz wants to merge 1 commit into
DreadPirateRobertz wants to merge 1 commit into
Conversation
Extract skill classification (Languages/Domains/Capabilities) into a shared commons.ClassifySkill function used by both leaderboard and profile. The leaderboard now shows categorized skills matching the profile taxonomy instead of a flat tag list. - Add internal/commons/skills.go with shared language set, domain prefixes, and ClassifySkill function - Update leaderboard to classify top skills into TopLanguages, TopDomains, TopCapabilities - Update profile to use shared classification instead of local hardcoded lists - Update API types and CLI output to reflect categorized skills Fixes gt-rzla Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
DreadPirateRobertz
pushed a commit
to DreadPirateRobertz/wasteland
that referenced
this pull request
Mar 7, 2026
Add profile viewer — character sheet for the-pile
fkautz
pushed a commit
to fkautz/wasteland
that referenced
this pull request
Mar 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
commons.ClassifySkillfunction, eliminating duplicate hardcoded listsTopLanguages,TopDomains,TopCapabilities) matching the profile's taxonomyThe scoreboard previously showed a flat list of top skill tags (e.g.,
go, sql, testing) while the profile categorized them into Languages, Domains, and Capabilities. This PR ensures both surfaces use the same taxonomy from a single source of truth.Test plan
go test ./...— all tests passgo vet ./...— cleanskills_test.gocovers classification of languages, domains, capabilities, prefix matching, andString()outputleaderboard_test.govalidates categorized skill outputserver_test.govalidates API JSON response uses categorized fields🤖 Generated with Claude Code