pikakit 3.9.98 → 3.9.100
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
|
-
[](https://www.npmjs.com/package/pikakit)
|
|
8
8
|
[](https://github.com/pikakit/agent-skills)
|
|
9
9
|
[](https://github.com/pikakit/agent-skills)
|
|
10
10
|
[](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.
|
|
399
|
+
**⚡ PikaKit v3.9.100**
|
|
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", "
|
|
196
|
+
"game", "game-engine", "unity", "unreal", "godot", "phaser"
|
|
189
197
|
],
|
|
190
198
|
"📱 Mobile": [
|
|
191
|
-
"mobile", "
|
|
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;
|
|
@@ -639,13 +649,24 @@ export async function run(spec) {
|
|
|
639
649
|
|
|
640
650
|
fs.rmSync(tmp, { recursive: true, force: true });
|
|
641
651
|
|
|
642
|
-
//
|
|
652
|
+
// Slash Commands (Workflows) reference table
|
|
643
653
|
stepLine();
|
|
654
|
+
const cmds = [
|
|
655
|
+
["/think", "Brainstorm ideas, analyze tradeoffs"],
|
|
656
|
+
["/plan", "Create implementation plan, task breakdown"],
|
|
657
|
+
["/build", "Build full-stack app with multi-agent coordination"],
|
|
658
|
+
["/fix", "Apply targeted fixes for specific bugs"],
|
|
659
|
+
["/diagnose", "Debug complex issues, find root cause"],
|
|
660
|
+
["/inspect", "Multi-layer code review & validation"],
|
|
661
|
+
["/validate", "Run test suite with coverage report"],
|
|
662
|
+
["/launch", "Deploy to production with zero downtime"],
|
|
663
|
+
["/autopilot", "Autonomous end-to-end pipeline execution"],
|
|
664
|
+
];
|
|
665
|
+
const cmdLines = cmds.map(([cmd, desc]) =>
|
|
666
|
+
` ${c.cyan(cmd.padEnd(12))} ${c.dim(desc)}`
|
|
667
|
+
).join("\n");
|
|
644
668
|
console.log(boxen(
|
|
645
|
-
`${c.cyan("
|
|
646
|
-
` ${c.dim("1.")} Use ${c.cyan("/build")} to create apps with multi-agent coordination\n` +
|
|
647
|
-
` ${c.dim("2.")} Use ${c.cyan("/autopilot")} for autonomous end-to-end execution\n` +
|
|
648
|
-
` ${c.dim("3.")} Use ${c.cyan("/think")} to brainstorm before coding`,
|
|
669
|
+
`${c.cyan("Slash Commands (Workflows)")}\n\n` + cmdLines,
|
|
649
670
|
{
|
|
650
671
|
padding: 1,
|
|
651
672
|
borderColor: "cyan",
|
package/package.json
CHANGED
|
Binary file
|