pikakit 1.0.4 → 1.0.5
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/bin/lib/commands/install.js +21 -0
- package/package.json +1 -1
|
@@ -814,6 +814,27 @@ export async function run(spec) {
|
|
|
814
814
|
|
|
815
815
|
// Python dependencies no longer needed - all scripts migrated to JS
|
|
816
816
|
|
|
817
|
+
// Final Quick Start Guide
|
|
818
|
+
stepLine();
|
|
819
|
+
console.log(boxen(
|
|
820
|
+
`${c.cyan("Quick Start Commands:")}\n\n` +
|
|
821
|
+
`${c.green("Option 1:")} ${c.white("npm run kit")} ${c.dim("// npm scripts")}\n` +
|
|
822
|
+
`${c.green("Option 2:")} ${c.white("npx kit")} ${c.dim("// npx")}\n` +
|
|
823
|
+
`${c.green("Option 3:")} ${c.white(".\\\\kit")} ${c.dim("// PowerShell direct")}\n\n` +
|
|
824
|
+
(installAutoLearn ?
|
|
825
|
+
`${c.cyan("Agent Commands:")}\n` +
|
|
826
|
+
`${c.white("npm run agent")} ${c.dim("or")} ${c.white("npx agent")} ${c.dim("or")} ${c.white(".\\\\agent")}\n\n` : "") +
|
|
827
|
+
`${c.yellow("Note:")} Windows PowerShell requires ${c.white(".\\\\")}\n` +
|
|
828
|
+
`prefix to run scripts from current directory.`,
|
|
829
|
+
{
|
|
830
|
+
padding: 1,
|
|
831
|
+
borderColor: "cyan",
|
|
832
|
+
borderStyle: "round",
|
|
833
|
+
title: c.cyan("⚡ Get Started"),
|
|
834
|
+
titleAlignment: "left"
|
|
835
|
+
}
|
|
836
|
+
).split("\\n").map(l => `${c.gray(S.branch)} ${l}`).join("\\n"));
|
|
837
|
+
|
|
817
838
|
stepLine();
|
|
818
839
|
console.log(` ${c.cyan("Done!")}`);
|
|
819
840
|
console.log();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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>",
|