pikakit 3.9.90 → 3.9.92
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 +2 -2
- package/bin/lib/ui.js +5 -9
- package/package.json +1 -1
- package/packages/pikakit-extension/pikakit.vsix +0 -0
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)
|
|
@@ -418,7 +418,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
|
|
|
418
418
|
|
|
419
419
|
<div align="center">
|
|
420
420
|
|
|
421
|
-
**⚡ PikaKit v3.9.
|
|
421
|
+
**⚡ PikaKit v3.9.92**
|
|
422
422
|
|
|
423
423
|
*Composable Skills · Coordinated Agents · Intelligent Execution*
|
|
424
424
|
|
package/bin/lib/ui.js
CHANGED
|
@@ -154,17 +154,13 @@ export function brandedIntro(version, status = "") {
|
|
|
154
154
|
// Split banner and filter to get content lines only
|
|
155
155
|
const bannerLines = PIKAKIT_BANNER.split('\n').filter(line => line.trim() !== '');
|
|
156
156
|
|
|
157
|
-
// Print all lines
|
|
158
|
-
for (
|
|
159
|
-
console.log(pikaGradient(
|
|
157
|
+
// Print all banner lines with gradient
|
|
158
|
+
for (const line of bannerLines) {
|
|
159
|
+
console.log(pikaGradient(line));
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
//
|
|
163
|
-
|
|
164
|
-
console.log(pikaGradient(lastLine) + ` ${c.dim(`v${version}`)}`);
|
|
165
|
-
|
|
166
|
-
// Stats tagline
|
|
167
|
-
console.log(c.dim(` 67 Skills · 26 Agents · 26 Workflows`));
|
|
162
|
+
// Version + stats tagline centered under banner
|
|
163
|
+
console.log(c.dim(`v${version} · 67 Skills · 26 Agents · 26 Workflows`));
|
|
168
164
|
|
|
169
165
|
if (status) {
|
|
170
166
|
console.log(`${c.dim(status)}`);
|
package/package.json
CHANGED
|
Binary file
|