pikakit 3.9.89 → 3.9.91

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.89-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.91-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-67-06b6d4?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
9
9
  [![Agents](https://img.shields.io/badge/agents-26-f59e0b?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
10
10
  [![Workflows](https://img.shields.io/badge/workflows-25-10b981?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
@@ -418,7 +418,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
418
418
 
419
419
  <div align="center">
420
420
 
421
- **⚡ PikaKit v3.9.89**
421
+ **⚡ PikaKit v3.9.91**
422
422
 
423
423
  *Composable Skills · Coordinated Agents · Intelligent Execution*
424
424
 
package/bin/lib/ui.js CHANGED
@@ -14,15 +14,16 @@ export { intro, outro, multiselect, select, confirm, isCancel, cancel, text };
14
14
 
15
15
  // --- ASCII Art Banner ---
16
16
  const PIKAKIT_BANNER = `
17
- ____ _ _ _ ___ _
18
- | _ \\(_) | ____ _| |/ (_) |_
19
- | |_) | | |/ / _\` | ' /| | __|
20
- | __/| | < (_| | . \\| | |_
21
- |_| |_|_|\\_\\__,_|_|\\_\\_|\\__|
17
+ ██████╗ ██╗██╗ ██╗ █████╗ ██╗ ██╗██╗████████╗
18
+ ██╔══██╗██║██║ ██╔╝██╔══██╗██║ ██╔╝██║╚══██╔══╝
19
+ ██████╔╝██║█████╔╝ ███████║█████╔╝ ██║ ██║
20
+ ██╔═══╝ ██║██╔═██╗ ██╔══██║██╔═██╗ ██║ ██║
21
+ ██║ ██║██║ ██╗██║ ██║██║ ██╗██║ ██║
22
+ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝
22
23
  `;
23
24
 
24
- // Custom gradient: whitegray (like vercel style)
25
- const pikaGradient = gradient(['#ffffff', '#bbbbbb', '#888888', '#555555']);
25
+ // Vibrant gradient: cyanindigo → magenta (premium, FAANG-grade)
26
+ const pikaGradient = gradient(['#00DCFF', '#6C63FF', '#E040FB']);
26
27
 
27
28
  /**
28
29
  * Create a spinner (uses @clack/prompts spinner to avoid rendering conflicts)
@@ -153,15 +154,13 @@ export function brandedIntro(version, status = "") {
153
154
  // Split banner and filter to get content lines only
154
155
  const bannerLines = PIKAKIT_BANNER.split('\n').filter(line => line.trim() !== '');
155
156
 
156
- // Print all lines except the last with gradient
157
- for (let i = 0; i < bannerLines.length - 1; i++) {
158
- console.log(pikaGradient(bannerLines[i]));
157
+ // Print all banner lines with gradient
158
+ for (const line of bannerLines) {
159
+ console.log(pikaGradient(line));
159
160
  }
160
161
 
161
- // Last line: gradient ASCII + dim version (aligned at bottom)
162
- const lastLine = bannerLines[bannerLines.length - 1];
163
- console.log(pikaGradient(lastLine) + ` ${c.dim(`v${version}`)}`);
164
-
162
+ // Version + stats tagline centered under banner
163
+ console.log(c.dim(` v${version} · 67 Skills · 26 Agents · 26 Workflows`));
165
164
 
166
165
  if (status) {
167
166
  console.log(`${c.dim(status)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.89",
3
+ "version": "3.9.91",
4
4
  "description": "PikaKit — Install 67 skills, 25 workflows, 26 agents into your AI project. One command.",
5
5
  "license": "MIT",
6
6
  "author": "pikakit <pikakit@gmail.com>",