pikakit 1.0.4 → 1.0.6
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 +15 -15
- package/bin/cli.mjs +1 -1
- package/bin/kit.mjs +1 -1
- package/bin/lib/commands/help.js +7 -7
- package/bin/lib/commands/install.js +21 -0
- package/bin/lib/helpers.test.js +7 -7
- package/lib/agent-cli/README.md +3 -3
- package/lib/agent-cli/bin/agent.js +2 -2
- package/lib/agent-cli/dashboard/dashboard_server.js +1 -1
- package/lib/agent-cli/lib/backup.js +1 -1
- package/lib/agent-cli/lib/completion.js +6 -6
- package/lib/agent-cli/lib/export.js +1 -1
- package/lib/agent-cli/lib/ignore.js +1 -1
- package/lib/agent-cli/lib/init.js +1 -1
- package/lib/agent-cli/lib/proposals.js +1 -1
- package/lib/agent-cli/lib/recall.js +1 -1
- package/lib/agent-cli/lib/settings.js +1 -1
- package/lib/agent-cli/lib/ui/clack-helpers.js +1 -1
- package/lib/agent-cli/lib/ui/common.js +1 -1
- package/lib/agent-cli/lib/ui/completion-ui.js +1 -1
- package/lib/agent-cli/lib/ui/help-ui.js +1 -1
- package/lib/agent-cli/lib/ui/init-ui.js +1 -1
- package/lib/agent-cli/lib/ui/pretty.js +2 -2
- package/lib/agent-cli/lib/ui/routing-ui.js +1 -1
- package/lib/agent-cli/package.json +3 -3
- package/lib/agent-cli/src/README.md +2 -2
- package/lib/agent-cli/src/presentation/formatters/skill-formatter.js +1 -1
- package/lib/agentskillskit-cli/README.md +3 -3
- package/lib/agentskillskit-cli/ag-smart.js +2 -2
- package/lib/agentskillskit-cli/package.json +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# PikaKit
|
|
2
2
|
|
|
3
|
-
> **CLI installer for
|
|
3
|
+
> **CLI installer for PikaKit - FAANG-grade AI skills, workflows, and agents**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/pikakit)
|
|
6
6
|
[](https://www.npmjs.com/package/pikakit)
|
|
7
|
-
[](https://github.com/
|
|
7
|
+
[](https://github.com/pikakit/pikakit)
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
|
|
10
10
|
---
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
## ⚡ Installation
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npx
|
|
15
|
+
npx pikakit add pikakit/agent-skills
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
**That's it!** One command installs everything:
|
|
@@ -31,21 +31,21 @@ npx -y pikakit agentskillkit/agent-skills
|
|
|
31
31
|
|
|
32
32
|
## 🎯 What This CLI Does
|
|
33
33
|
|
|
34
|
-
### 1.
|
|
34
|
+
### 1. Add Skills from GitHub
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
|
-
npx
|
|
37
|
+
npx pikakit add <owner>/<repo>
|
|
38
38
|
|
|
39
39
|
# Examples:
|
|
40
|
-
npx pikakit
|
|
41
|
-
npx pikakit myteam/company-skills
|
|
40
|
+
npx pikakit add pikakit/agent-skills # Official skills
|
|
41
|
+
npx pikakit add myteam/company-skills # Custom skills
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
### 2. Interactive Installation
|
|
45
45
|
|
|
46
46
|
```
|
|
47
47
|
┌───────────────────────────────────────────┐
|
|
48
|
-
│ 🛠️
|
|
48
|
+
│ 🛠️ PikaKit Installer │
|
|
49
49
|
├───────────────────────────────────────────┤
|
|
50
50
|
│ ◆ Select skills to install │
|
|
51
51
|
│ ◆ Choose install scope │
|
|
@@ -126,19 +126,19 @@ agent watch # Real-time monitor
|
|
|
126
126
|
### Install Official Skills
|
|
127
127
|
|
|
128
128
|
```bash
|
|
129
|
-
npx
|
|
129
|
+
npx pikakit add pikakit/agent-skills
|
|
130
130
|
```
|
|
131
131
|
|
|
132
132
|
### Install to Global Location
|
|
133
133
|
|
|
134
134
|
```bash
|
|
135
|
-
npx
|
|
135
|
+
npx pikakit add pikakit/agent-skills --global
|
|
136
136
|
```
|
|
137
137
|
|
|
138
138
|
### Force Reinstall
|
|
139
139
|
|
|
140
140
|
```bash
|
|
141
|
-
npx
|
|
141
|
+
npx pikakit add pikakit/agent-skills --force
|
|
142
142
|
```
|
|
143
143
|
|
|
144
144
|
---
|
|
@@ -193,7 +193,7 @@ npm install # Node.js dependencies
|
|
|
193
193
|
|
|
194
194
|
| Package | Purpose |
|
|
195
195
|
|---------|---------|
|
|
196
|
-
| [agent-skills](https://github.com/
|
|
196
|
+
| [agent-skills](https://github.com/pikakit/agent-skills) | Main skills repository |
|
|
197
197
|
| [pikakit](https://www.npmjs.com/package/pikakit) | This CLI installer |
|
|
198
198
|
|
|
199
199
|
---
|
|
@@ -213,14 +213,14 @@ npm install # Node.js dependencies
|
|
|
213
213
|
|
|
214
214
|
```bash
|
|
215
215
|
# Clone
|
|
216
|
-
git clone https://github.com/
|
|
216
|
+
git clone https://github.com/pikakit/pikakit.git
|
|
217
217
|
cd pikakit
|
|
218
218
|
|
|
219
219
|
# Install dependencies
|
|
220
220
|
npm install
|
|
221
221
|
|
|
222
222
|
# Run locally
|
|
223
|
-
node bin/cli.mjs
|
|
223
|
+
node bin/cli.mjs add pikakit/agent-skills
|
|
224
224
|
```
|
|
225
225
|
|
|
226
226
|
---
|
|
@@ -236,4 +236,4 @@ MIT - Free for all projects.
|
|
|
236
236
|
|
|
237
237
|
---
|
|
238
238
|
|
|
239
|
-
**[GitHub](https://github.com/
|
|
239
|
+
**[GitHub](https://github.com/pikakit/pikakit) • [npm](https://www.npmjs.com/package/pikakit) • [Issues](https://github.com/pikakit/pikakit/issues)**
|
package/bin/cli.mjs
CHANGED
package/bin/kit.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import { command, params, VERSION } from "./lib/config.js";
|
|
|
9
9
|
// --- Command Registry ---
|
|
10
10
|
const COMMANDS = {
|
|
11
11
|
// Installation
|
|
12
|
-
|
|
12
|
+
add: { module: "./lib/commands/install.js", hasParam: true, aliases: ["install", "i"] },
|
|
13
13
|
uninstall: { module: "./lib/commands/uninstall.js", hasParam: true, aliases: ["remove", "rm"] },
|
|
14
14
|
update: { module: "./lib/commands/update.js", hasParam: true },
|
|
15
15
|
|
package/bin/lib/commands/help.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
2
|
* @fileoverview Help command
|
|
3
3
|
*/
|
|
4
4
|
|
|
@@ -69,11 +69,11 @@ async function showCommands() {
|
|
|
69
69
|
stepLine();
|
|
70
70
|
|
|
71
71
|
step(c.cyan("<org/repo>") + c.dim(" Install all skills from repository"));
|
|
72
|
-
step(c.dim("Example: kit
|
|
72
|
+
step(c.dim("Example: kit pikakit/agent-skills"));
|
|
73
73
|
stepLine();
|
|
74
74
|
|
|
75
75
|
step(c.cyan("<org/repo#skill>") + c.dim(" Install specific skill"));
|
|
76
|
-
step(c.dim("Example: kit
|
|
76
|
+
step(c.dim("Example: kit pikakit/agent-skills#react-patterns"));
|
|
77
77
|
stepLine();
|
|
78
78
|
|
|
79
79
|
step(c.cyan("list") + c.dim(" List installed skills"));
|
|
@@ -101,7 +101,7 @@ async function showCommands() {
|
|
|
101
101
|
{ value: "uninstall", label: "uninstall", hint: "Interactive removal" },
|
|
102
102
|
{ value: "lock", label: "lock", hint: "Generate lockfile" },
|
|
103
103
|
{ value: "init", label: "init", hint: "Initialize directory" },
|
|
104
|
-
{ value: "none", label: "
|
|
104
|
+
{ value: "none", label: "← Back", hint: "Return to topics" }
|
|
105
105
|
]
|
|
106
106
|
});
|
|
107
107
|
|
|
@@ -138,12 +138,12 @@ function showQuickStart() {
|
|
|
138
138
|
stepLine();
|
|
139
139
|
|
|
140
140
|
step(c.bold("1. Install skills"));
|
|
141
|
-
step(" " + c.cyan("kit
|
|
141
|
+
step(" " + c.cyan("kit pikakit/agent-skills"));
|
|
142
142
|
stepLine();
|
|
143
143
|
|
|
144
144
|
step(c.bold("2. Choose scope"));
|
|
145
|
-
step(" " + c.dim("
|
|
146
|
-
step(" " + c.dim("
|
|
145
|
+
step(" " + c.dim("→ Current Project (local .agent/)"));
|
|
146
|
+
step(" " + c.dim("→ Global System (available everywhere)"));
|
|
147
147
|
stepLine();
|
|
148
148
|
|
|
149
149
|
step(c.bold("3. Check installation"));
|
|
@@ -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/bin/lib/helpers.test.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
2
|
* @fileoverview Tests for helpers.js
|
|
3
3
|
*/
|
|
4
4
|
import { describe, it, expect } from "vitest";
|
|
@@ -30,23 +30,23 @@ describe("formatDate", () => {
|
|
|
30
30
|
|
|
31
31
|
describe("parseSkillSpec", () => {
|
|
32
32
|
it("parses org/repo format", () => {
|
|
33
|
-
const result = parseSkillSpec("
|
|
34
|
-
expect(result.org).toBe("
|
|
33
|
+
const result = parseSkillSpec("pikakit/agent-skills");
|
|
34
|
+
expect(result.org).toBe("pikakit");
|
|
35
35
|
expect(result.repo).toBe("agent-skills");
|
|
36
36
|
expect(result.skill).toBeUndefined();
|
|
37
37
|
expect(result.ref).toBeUndefined();
|
|
38
38
|
});
|
|
39
39
|
|
|
40
40
|
it("parses org/repo#skill format", () => {
|
|
41
|
-
const result = parseSkillSpec("
|
|
42
|
-
expect(result.org).toBe("
|
|
41
|
+
const result = parseSkillSpec("pikakit/agent-skills#react-patterns");
|
|
42
|
+
expect(result.org).toBe("pikakit");
|
|
43
43
|
expect(result.repo).toBe("agent-skills");
|
|
44
44
|
expect(result.skill).toBe("react-patterns");
|
|
45
45
|
});
|
|
46
46
|
|
|
47
47
|
it("parses org/repo#skill@ref format", () => {
|
|
48
|
-
const result = parseSkillSpec("
|
|
49
|
-
expect(result.org).toBe("
|
|
48
|
+
const result = parseSkillSpec("pikakit/agent-skills#react-patterns@v1.0.0");
|
|
49
|
+
expect(result.org).toBe("pikakit");
|
|
50
50
|
expect(result.repo).toBe("agent-skills");
|
|
51
51
|
expect(result.skill).toBe("react-patterns");
|
|
52
52
|
expect(result.ref).toBe("v1.0.0");
|
package/lib/agent-cli/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# PikaKit CLI
|
|
2
2
|
|
|
3
|
-
The intelligent CLI engine for
|
|
3
|
+
The intelligent CLI engine for PikaKit, featuring:
|
|
4
4
|
- **Routing Engine**: Semantic routing validation
|
|
5
5
|
- **Audit System**: Skill usage auditing and metrics
|
|
6
6
|
- **Interactive Mode**: Smart interactive agent interface
|
|
@@ -18,4 +18,4 @@ agent
|
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Documentation
|
|
21
|
-
See the main [
|
|
21
|
+
See the main [PikaKit](https://github.com/agentskillskit/agent-skills) repository.
|
|
@@ -52,7 +52,7 @@ function run(script, args = [], baseDir = SCRIPTS_DIR) {
|
|
|
52
52
|
|
|
53
53
|
function printHelp() {
|
|
54
54
|
console.log(`
|
|
55
|
-
🤖
|
|
55
|
+
🤖 PikaKit CLI v${VERSION}
|
|
56
56
|
|
|
57
57
|
Usage: agent <command> [options]
|
|
58
58
|
|
|
@@ -110,7 +110,7 @@ ${"─".repeat(50)}
|
|
|
110
110
|
help, --help Show this help message
|
|
111
111
|
--version Show version number
|
|
112
112
|
|
|
113
|
-
💡 Docs: https://github.com/
|
|
113
|
+
💡 Docs: https://github.com/pikakit/agent-skills
|
|
114
114
|
`);
|
|
115
115
|
}
|
|
116
116
|
|
|
@@ -29,7 +29,7 @@ export function generatePowerShellCompletion() {
|
|
|
29
29
|
const commands = COMMANDS.map(c => `'${c.name}'`).join(", ");
|
|
30
30
|
|
|
31
31
|
return `
|
|
32
|
-
#
|
|
32
|
+
# PikaKit PowerShell Completion
|
|
33
33
|
# Add to your $PROFILE
|
|
34
34
|
|
|
35
35
|
Register-ArgumentCompleter -Native -CommandName agent -ScriptBlock {
|
|
@@ -49,7 +49,7 @@ ${COMMANDS.map(c => ` @{ Name = '${c.name}'; Description = '${c.descripti
|
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
Write-Host "
|
|
52
|
+
Write-Host "PikaKit completion loaded" -ForegroundColor Green
|
|
53
53
|
`;
|
|
54
54
|
}
|
|
55
55
|
|
|
@@ -61,7 +61,7 @@ export function generateBashCompletion() {
|
|
|
61
61
|
const commands = COMMANDS.map(c => c.name).join(" ");
|
|
62
62
|
|
|
63
63
|
return `
|
|
64
|
-
#
|
|
64
|
+
# PikaKit Bash Completion
|
|
65
65
|
# Add to ~/.bashrc or ~/.bash_completion
|
|
66
66
|
|
|
67
67
|
_agent_completions() {
|
|
@@ -73,7 +73,7 @@ _agent_completions() {
|
|
|
73
73
|
|
|
74
74
|
complete -F _agent_completions agent
|
|
75
75
|
|
|
76
|
-
echo "
|
|
76
|
+
echo "PikaKit completion loaded"
|
|
77
77
|
`;
|
|
78
78
|
}
|
|
79
79
|
|
|
@@ -85,7 +85,7 @@ export function generateZshCompletion() {
|
|
|
85
85
|
return `
|
|
86
86
|
#compdef agent
|
|
87
87
|
|
|
88
|
-
#
|
|
88
|
+
# PikaKit Zsh Completion
|
|
89
89
|
# Add to ~/.zshrc or place in $fpath
|
|
90
90
|
|
|
91
91
|
_agent() {
|
|
@@ -99,7 +99,7 @@ ${COMMANDS.map(c => ` '${c.name}:${c.description}'`).join("\n")}
|
|
|
99
99
|
|
|
100
100
|
compdef _agent agent
|
|
101
101
|
|
|
102
|
-
echo "
|
|
102
|
+
echo "PikaKit completion loaded"
|
|
103
103
|
`;
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -89,7 +89,7 @@ export function initProject(options = {}) {
|
|
|
89
89
|
|
|
90
90
|
// Create lessons-learned.yaml
|
|
91
91
|
if (!fs.existsSync(LESSONS_PATH)) {
|
|
92
|
-
const initialLessons = `#
|
|
92
|
+
const initialLessons = `# PikaKit - Lessons Learned
|
|
93
93
|
# Project Type: ${projectType}
|
|
94
94
|
# Created: ${new Date().toISOString()}
|
|
95
95
|
|
|
@@ -98,7 +98,7 @@ export async function runCompletionUI() {
|
|
|
98
98
|
? fs.readFileSync(profilePath, "utf8")
|
|
99
99
|
: "";
|
|
100
100
|
|
|
101
|
-
if (existing.includes("
|
|
101
|
+
if (existing.includes("PikaKit")) {
|
|
102
102
|
p.note("Completion already installed!", pc.yellow("Skipped"));
|
|
103
103
|
return;
|
|
104
104
|
}
|
|
@@ -11,7 +11,7 @@ export async function runHelpUI() {
|
|
|
11
11
|
// Clear terminal và reset cursor về top-left
|
|
12
12
|
process.stdout.write('\x1Bc'); // Full terminal reset
|
|
13
13
|
|
|
14
|
-
p.intro(pc.cyan("📖
|
|
14
|
+
p.intro(pc.cyan("📖 PikaKit - Quick Guide"));
|
|
15
15
|
|
|
16
16
|
console.log(`
|
|
17
17
|
${pc.bold(pc.yellow("🎯 HOW IT WORKS"))}
|
|
@@ -15,7 +15,7 @@ export async function runInitUI() {
|
|
|
15
15
|
p.note(`Detected project type: ${pc.cyan(projectType)}`, "Detection");
|
|
16
16
|
|
|
17
17
|
const confirm = await p.confirm({
|
|
18
|
-
message: `Initialize
|
|
18
|
+
message: `Initialize PikaKit for this ${projectType} project?`
|
|
19
19
|
});
|
|
20
20
|
|
|
21
21
|
if (p.isCancel(confirm) || !confirm) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @fileoverview Pretty output formatting for
|
|
2
|
+
* @fileoverview Pretty output formatting for PikaKit
|
|
3
3
|
* Creates branded, friendly CLI messages
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -24,7 +24,7 @@ const brand = {
|
|
|
24
24
|
/** Simple ASCII logo */
|
|
25
25
|
const LOGO = `
|
|
26
26
|
╭─────────────────────────╮
|
|
27
|
-
│ 🧠
|
|
27
|
+
│ 🧠 PikaKit │
|
|
28
28
|
│ v${VERSION} │
|
|
29
29
|
╰─────────────────────────╯
|
|
30
30
|
`;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentskillskit-cli",
|
|
3
3
|
"version": "3.2.4",
|
|
4
|
-
"description": "CLI for
|
|
4
|
+
"description": "CLI for PikaKit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/config.js",
|
|
7
7
|
"bin": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"vitest": "^1.6.0"
|
|
27
27
|
},
|
|
28
|
-
"author": "
|
|
28
|
+
"author": "PikaKit Authors",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/pikakit/agent-skills.git",
|
|
33
33
|
"directory": "packages/cli"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
#
|
|
1
|
+
# PikaKit - New Architecture
|
|
2
2
|
|
|
3
3
|
> **Status:** 🚧 In Progress - Migrating to FAANG-style layered architecture
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
This directory contains the new **layered architecture** for
|
|
7
|
+
This directory contains the new **layered architecture** for PikaKit, following FAANG best practices for maintainability, testability, and scalability.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
@@ -224,7 +224,7 @@ export class SkillFormatter {
|
|
|
224
224
|
return [
|
|
225
225
|
'---',
|
|
226
226
|
'',
|
|
227
|
-
'*Auto-generated from
|
|
227
|
+
'*Auto-generated from PikaKit* ',
|
|
228
228
|
`*Source: \`.agent/knowledge/mistakes.yaml\` + \`improvements.yaml\`* `,
|
|
229
229
|
`*Generated: ${timestamp}*`
|
|
230
230
|
].join('\n');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# PikaKit CLI
|
|
2
2
|
|
|
3
|
-
The intelligent CLI engine for
|
|
3
|
+
The intelligent CLI engine for PikaKit, featuring:
|
|
4
4
|
- **Routing Engine**: Semantic routing validation
|
|
5
5
|
- **Audit System**: Skill usage auditing and metrics
|
|
6
6
|
- **Interactive Mode**: Smart interactive agent interface
|
|
@@ -18,4 +18,4 @@ agent
|
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
## Documentation
|
|
21
|
-
See the main [
|
|
21
|
+
See the main [PikaKit](https://github.com/agentskillskit/agent-skills) repository.
|
|
@@ -50,7 +50,7 @@ function run(script, args = [], baseDir = SCRIPTS_DIR) {
|
|
|
50
50
|
|
|
51
51
|
function printHelp() {
|
|
52
52
|
console.log(`
|
|
53
|
-
🤖
|
|
53
|
+
🤖 PikaKit CLI v${VERSION}
|
|
54
54
|
|
|
55
55
|
Usage: agent <command> [options]
|
|
56
56
|
|
|
@@ -100,7 +100,7 @@ ${"─".repeat(50)}
|
|
|
100
100
|
help, --help Show this help message
|
|
101
101
|
--version Show version number
|
|
102
102
|
|
|
103
|
-
💡 Docs: https://github.com/
|
|
103
|
+
💡 Docs: https://github.com/pikakit/agent-skills
|
|
104
104
|
`);
|
|
105
105
|
}
|
|
106
106
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentskillskit-cli",
|
|
3
3
|
"version": "3.2.0",
|
|
4
|
-
"description": "CLI for
|
|
4
|
+
"description": "CLI for PikaKit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/config.js",
|
|
7
7
|
"bin": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"vitest": "^1.6.0"
|
|
27
27
|
},
|
|
28
|
-
"author": "
|
|
28
|
+
"author": "PikaKit Authors",
|
|
29
29
|
"license": "MIT",
|
|
30
30
|
"repository": {
|
|
31
31
|
"type": "git",
|
|
32
|
-
"url": "https://github.com/
|
|
32
|
+
"url": "https://github.com/pikakit/agent-skills.git",
|
|
33
33
|
"directory": "packages/cli"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "
|
|
7
|
-
"homepage": "https://github.com/
|
|
6
|
+
"author": "pikakit <pikakit@gmail.com>",
|
|
7
|
+
"homepage": "https://github.com/pikakit/pikakit",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/
|
|
10
|
+
"url": "https://github.com/pikakit/pikakit.git"
|
|
11
11
|
},
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/
|
|
13
|
+
"url": "https://github.com/pikakit/pikakit/issues"
|
|
14
14
|
},
|
|
15
15
|
"type": "module",
|
|
16
16
|
"bin": {
|