pikakit 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -177,36 +177,36 @@ export async function run(spec) {
177
177
  // NOTE: Order matters! Specialized categories FIRST, Core is fallback
178
178
  const CATEGORY_KEYWORDS = {
179
179
  // Specialized domains
180
- "🎨 Frontend & UI": [
180
+ "🎨 Frontend & UI": [
181
181
  "frontend", "nextjs", "tailwind", "css", "ui", "ux", "visual",
182
182
  "studio", "web-core", "design-system", "react-architect", "react"
183
183
  ],
184
- "🎮 Game Development": [
184
+ "🎮 Game Development": [
185
185
  "game", "development", "engine", "unity", "unreal", "godot", "phaser"
186
186
  ],
187
- "📱 Mobile": [
187
+ "📱 Mobile": [
188
188
  "mobile", "first", "developer", "react-native", "flutter",
189
189
  "ios", "android", "swift", "kotlin"
190
190
  ],
191
- "🔒 Security & DevOps": [
191
+ "🔒 Security & DevOps": [
192
192
  "security", "vulnerability", "offensive", "scanner", "red-team", "governance",
193
193
  "cicd", "pipeline", "gitops", "docker", "deploy", "server-ops"
194
194
  ],
195
195
  // Technical domains
196
- "🧪 Testing & Quality": [
196
+ "🧪 Testing & Quality": [
197
197
  "test", "testing", "tdd", "e2e", "debug", "quality", "review",
198
198
  "lint", "validate", "automation", "problem", "checker"
199
199
  ],
200
- "🤖 AI & Agents": [
200
+ "🤖 AI & Agents": [
201
201
  "agent", "pattern", "auto-learn", "execution", "self-evolution",
202
202
  "lifecycle", "skill-forge", "intelligent", "routing"
203
203
  ],
204
- "📚 Docs & Planning": [
204
+ "📚 Docs & Planning": [
205
205
  "doc", "template", "plan", "project", "idea", "brainstorm",
206
206
  "geo", "seo", "i18n", "writing"
207
207
  ],
208
208
  // Fallback (core backend/infra)
209
- "⚙️ Backend & Core": [
209
+ "⚙️ Backend & Core": [
210
210
  "backend", "api", "nodejs", "python", "server", "database",
211
211
  "prisma", "mcp", "data", "architect", "scaffold", "system",
212
212
  "typescript", "shell", "bash", "powershell", "git", "code-craft",
@@ -221,7 +221,7 @@ export async function run(spec) {
221
221
  return category;
222
222
  }
223
223
  }
224
- return "⚙️ Backend & Core"; // Default fallback (no "Other" category)
224
+ return "⚙️ Backend & Core"; // Default fallback (no "Other" category)
225
225
  }
226
226
 
227
227
  // REQUIRED SKILLS - Always installed, not shown in selection
@@ -251,7 +251,7 @@ export async function run(spec) {
251
251
 
252
252
  // Show only categories, not individual skills
253
253
  const selectedCategories = await multiselect({
254
- message: `${c.cyan("space")} select · ${c.cyan("enter")} confirm`,
254
+ message: `${c.cyan("space")} select · ${c.cyan("enter")} confirm`,
255
255
  options: sortedCategories.map(cat => ({
256
256
  label: `${cat} (${grouped[cat].length} skills)`,
257
257
  value: cat,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
5
5
  "license": "MIT",
6
6
  "author": "agentskillkit <agentskillkit@gmail.com>",