pikakit 3.9.98 → 3.9.99

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.
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ### Transform your AI Agent into a FAANG-level engineering team
6
6
 
7
- [![npm version](https://img.shields.io/badge/npm-v3.9.98-7c3aed?style=for-the-badge&logo=npm&logoColor=white&labelColor=18181b)](https://www.npmjs.com/package/pikakit)
7
+ [![npm version](https://img.shields.io/badge/npm-v3.9.99-7c3aed?style=for-the-badge&logo=npm&logoColor=white&labelColor=18181b)](https://www.npmjs.com/package/pikakit)
8
8
  [![Skills](https://img.shields.io/badge/skills-51-06b6d4?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
9
9
  [![Agents](https://img.shields.io/badge/agents-21-f59e0b?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
10
10
  [![Workflows](https://img.shields.io/badge/workflows-18-10b981?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
@@ -396,7 +396,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
396
396
 
397
397
  <div align="center">
398
398
 
399
- **⚡ PikaKit v3.9.98**
399
+ **⚡ PikaKit v3.9.99**
400
400
 
401
401
  *Composable Skills · Coordinated Agents · Intelligent Execution*
402
402
 
@@ -178,6 +178,14 @@ export async function run(spec) {
178
178
  } else {
179
179
  // FAANG-Grade Categories (8 balanced categories)
180
180
  // NOTE: Order matters! Specialized categories FIRST, Core is fallback
181
+ //
182
+ // Explicit overrides for skills that get misclassified by substring matching
183
+ // e.g. "constitution" contains "ui", "engineering" contains "engine"
184
+ const SKILL_OVERRIDES = {
185
+ "code-constitution": "⚙️ Backend & Core",
186
+ "context-engineering": "⚙️ Backend & Core"
187
+ };
188
+
181
189
  const CATEGORY_KEYWORDS = {
182
190
  // Specialized domains
183
191
  "🎨 Frontend & UI": [
@@ -185,10 +193,10 @@ export async function run(spec) {
185
193
  "studio", "web-core", "design-system", "react-architect", "react"
186
194
  ],
187
195
  "🎮 Game Development": [
188
- "game", "development", "engine", "unity", "unreal", "godot", "phaser"
196
+ "game", "game-engine", "unity", "unreal", "godot", "phaser"
189
197
  ],
190
198
  "📱 Mobile": [
191
- "mobile", "first", "developer", "react-native", "flutter",
199
+ "mobile", "react-native", "flutter",
192
200
  "ios", "android", "swift", "kotlin"
193
201
  ],
194
202
  "🔒 Security & DevOps": [
@@ -202,7 +210,7 @@ export async function run(spec) {
202
210
  ],
203
211
  "🤖 AI & Agents": [
204
212
  "agent", "pattern", "auto-learn", "execution", "self-evolution",
205
- "lifecycle", "skill-forge", "intelligent", "routing"
213
+ "lifecycle", "skill-forge", "intelligent", "routing", "router"
206
214
  ],
207
215
  "📚 Docs & Planning": [
208
216
  "doc", "template", "plan", "project", "idea", "brainstorm",
@@ -219,6 +227,8 @@ export async function run(spec) {
219
227
 
220
228
  function categorizeSkill(skillName) {
221
229
  const lower = skillName.toLowerCase();
230
+ // Check explicit overrides first (handles substring false positives)
231
+ if (SKILL_OVERRIDES[lower]) return SKILL_OVERRIDES[lower];
222
232
  for (const [category, keywords] of Object.entries(CATEGORY_KEYWORDS)) {
223
233
  if (keywords.some(kw => lower.includes(kw))) {
224
234
  return category;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.98",
3
+ "version": "3.9.99",
4
4
  "description": "PikaKit — Install 51 skills, 18 workflows, 21 agents into your AI project. One command.",
5
5
  "license": "MIT",
6
6
  "author": "pikakit <pikakit@gmail.com>",