From 94fd8fef6d68b5290f71edd9ec3acb77425d6845 Mon Sep 17 00:00:00 2001
From: Josh <49500097+JoshDFN@users.noreply.github.com>
Date: Thu, 26 Feb 2026 08:17:16 -0800
Subject: [PATCH] feat: add Wallet category
Add Wallet to valid categories in validator, CLAUDE.md, and add
wallet icon to the category icon set in app.jsx.
---
.claude/CLAUDE.md | 2 +-
scripts/validate-skills.js | 1 +
src/app.jsx | 2 ++
3 files changed, 4 insertions(+), 1 deletion(-)
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;
}