diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md index a8010cc..b405c08 100644 --- a/.claude/CLAUDE.md +++ b/.claude/CLAUDE.md @@ -63,7 +63,7 @@ Both run in CI. Validate blocks deployment on errors. Generate output is checked ## Categories -DeFi, Tokens, Auth, Architecture, Integration, Governance, Frontend, Security, Infrastructure +DeFi, Tokens, Auth, Architecture, Integration, Governance, Frontend, Security, Infrastructure, Wallet ## Project Structure diff --git a/scripts/validate-skills.js b/scripts/validate-skills.js index b306d51..8ecde45 100644 --- a/scripts/validate-skills.js +++ b/scripts/validate-skills.js @@ -28,6 +28,7 @@ const VALID_CATEGORIES = [ "Frontend", "Security", "Infrastructure", + "Wallet", ]; const VALID_STATUSES = ["stable", "beta"]; diff --git a/src/app.jsx b/src/app.jsx index 7cb553d..9f1b386 100644 --- a/src/app.jsx +++ b/src/app.jsx @@ -232,6 +232,8 @@ function CategoryIcon({ category, size = 18 }) { return (); case "Tokens": return (); + case "Wallet": + return (); default: return null; }