pikakit 1.0.5 → 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 CHANGED
@@ -1,10 +1,10 @@
1
1
  # PikaKit
2
2
 
3
- > **CLI installer for Agent Skill Kit - FAANG-grade AI skills, workflows, and agents**
3
+ > **CLI installer for PikaKit - FAANG-grade AI skills, workflows, and agents**
4
4
 
5
5
  [![npm](https://img.shields.io/badge/npm-pikakit-CB3837?style=flat&logo=npm)](https://www.npmjs.com/package/pikakit)
6
6
  [![version](https://img.shields.io/badge/version-1.0.0-7c3aed?style=flat&colorA=18181b)](https://www.npmjs.com/package/pikakit)
7
- [![JavaScript](https://img.shields.io/badge/100%25-JavaScript-F7DF1E?style=flat&colorA=18181b&logo=javascript)](https://github.com/agentskillkit/pikakit)
7
+ [![JavaScript](https://img.shields.io/badge/100%25-JavaScript-F7DF1E?style=flat&colorA=18181b&logo=javascript)](https://github.com/pikakit/pikakit)
8
8
  [![license](https://img.shields.io/badge/license-MIT-7c3aed?style=flat&colorA=18181b)](LICENSE)
9
9
 
10
10
  ---
@@ -12,7 +12,7 @@
12
12
  ## ⚡ Installation
13
13
 
14
14
  ```bash
15
- npx -y pikakit agentskillkit/agent-skills
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. Fetches Skills from GitHub
34
+ ### 1. Add Skills from GitHub
35
35
 
36
36
  ```bash
37
- npx -y pikakit <owner>/<repo>
37
+ npx pikakit add <owner>/<repo>
38
38
 
39
39
  # Examples:
40
- npx pikakit agentskillkit/agent-skills # Official skills
41
- npx pikakit myteam/company-skills # Custom 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
- │ 🛠️ Agent Skill Kit Installer │
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 -y pikakit agentskillkit/agent-skills
129
+ npx pikakit add pikakit/agent-skills
130
130
  ```
131
131
 
132
132
  ### Install to Global Location
133
133
 
134
134
  ```bash
135
- npx -y pikakit agentskillkit/agent-skills --global
135
+ npx pikakit add pikakit/agent-skills --global
136
136
  ```
137
137
 
138
138
  ### Force Reinstall
139
139
 
140
140
  ```bash
141
- npx -y pikakit agentskillkit/agent-skills --force
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/agentskillkit/agent-skills) | Main skills repository |
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/agentskillkit/pikakit.git
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 install agentskillkit/agent-skills
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/agentskillkit/pikakit) • [npm](https://www.npmjs.com/package/pikakit) • [Issues](https://github.com/agentskillkit/pikakit/issues)**
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
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Agent Skill Kit CLI - Main Entry Point
3
+ * PikaKit CLI - Main Entry Point
4
4
  * Using .mjs extension for Windows npx compatibility
5
5
  */
6
6
  import('./kit.mjs');
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
- install: { module: "./lib/commands/install.js", hasParam: true, aliases: ["add", "i"] },
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
 
@@ -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 agentskillkit/agent-skills"));
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 agentskillkit/agent-skills#react-patterns"));
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: "← Back", hint: "Return to topics" }
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 agentskillkit/agent-skills"));
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("→ Current Project (local .agent/)"));
146
- step(" " + c.dim("→ Global System (available everywhere)"));
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"));
@@ -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("agentskillkit/agent-skills");
34
- expect(result.org).toBe("agentskillkit");
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("agentskillkit/agent-skills#react-patterns");
42
- expect(result.org).toBe("agentskillkit");
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("agentskillkit/agent-skills#react-patterns@v1.0.0");
49
- expect(result.org).toBe("agentskillkit");
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");
@@ -1,6 +1,6 @@
1
- # Agent Skill Kit CLI
1
+ # PikaKit CLI
2
2
 
3
- The intelligent CLI engine for Agent Skill Kit, featuring:
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 [Agent Skill Kit](https://github.com/agentskillskit/agent-skills) repository.
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
- 🤖 Agent Skill Kit CLI v${VERSION}
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/agentskillkit/agent-skills
113
+ 💡 Docs: https://github.com/pikakit/agent-skills
114
114
  `);
115
115
  }
116
116
 
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * Dashboard Server - Local web server for Auto-Learn Dashboard
4
4
  *
5
- * Bundled with Agent Skill Kit CLI
5
+ * Bundled with PikaKit CLI
6
6
  *
7
7
  * Serves:
8
8
  * - Static dashboard HTML
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @fileoverview Backup and Restore for Agent Skill Kit
2
+ * @fileoverview Backup and Restore for PikaKit
3
3
  * Protects lessons before changes
4
4
  */
5
5
 
@@ -29,7 +29,7 @@ export function generatePowerShellCompletion() {
29
29
  const commands = COMMANDS.map(c => `'${c.name}'`).join(", ");
30
30
 
31
31
  return `
32
- # Agent Skill Kit PowerShell Completion
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 "Agent Skill Kit completion loaded" -ForegroundColor Green
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
- # Agent Skill Kit Bash Completion
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 "Agent Skill Kit completion loaded"
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
- # Agent Skill Kit Zsh Completion
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 "Agent Skill Kit completion loaded"
102
+ echo "PikaKit completion loaded"
103
103
  `;
104
104
  }
105
105
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @fileoverview Export and Import for Agent Skill Kit
2
+ * @fileoverview Export and Import for PikaKit
3
3
  * Share settings between projects
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @fileoverview Ignore patterns parser for Agent Skill Kit
2
+ * @fileoverview Ignore patterns parser for PikaKit
3
3
  * Supports .agentignore file with glob patterns
4
4
  */
5
5
 
@@ -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 = `# Agent Skill Kit - Lessons Learned
92
+ const initialLessons = `# PikaKit - Lessons Learned
93
93
  # Project Type: ${projectType}
94
94
  # Created: ${new Date().toISOString()}
95
95
 
@@ -117,7 +117,7 @@ The AI agent will modify the appropriate \`.agent/skills/*/SKILL.md\` file.
117
117
 
118
118
  ---
119
119
 
120
- *Generated by Agent Skill Kit v2.1.0*
120
+ *Generated by PikaKit v2.1.0*
121
121
  `;
122
122
  }
123
123
 
@@ -498,7 +498,7 @@ Options:
498
498
  }
499
499
 
500
500
  // Show Clack-based summary (consistent with CLI)
501
- p.intro(pc.cyan(`🧠 Agent Skill Kit v${VERSION}`));
501
+ p.intro(pc.cyan(`🧠 PikaKit v${VERSION}`));
502
502
 
503
503
  // Save updated hit counts
504
504
  saveKnowledge(db);
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @fileoverview Settings management for Agent Skill Kit
2
+ * @fileoverview Settings management for PikaKit
3
3
  * Handles Auto-Learning and Auto-Updating preferences
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Clack UI Helpers - Agent Skill Kit
2
+ * Clack UI Helpers - PikaKit
3
3
  * Reusable UI patterns for consistent CLI experience
4
4
  */
5
5
 
@@ -28,7 +28,7 @@ export const ICONS = {
28
28
  * Show app header
29
29
  */
30
30
  export function showHeader() {
31
- p.intro(`${ICONS.brain} Agent Skill Kit v${VERSION}`);
31
+ p.intro(`${ICONS.brain} PikaKit v${VERSION}`);
32
32
  }
33
33
 
34
34
  /**
@@ -98,7 +98,7 @@ export async function runCompletionUI() {
98
98
  ? fs.readFileSync(profilePath, "utf8")
99
99
  : "";
100
100
 
101
- if (existing.includes("Agent Skill Kit")) {
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("📖 Agent Skill Kit - Quick Guide"));
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 Agent Skill Kit for this ${projectType} project?`
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 Agent Skill Kit
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
- │ 🧠 Agent Skill Kit
27
+ │ 🧠 PikaKit
28
28
  │ v${VERSION} │
29
29
  ╰─────────────────────────╯
30
30
  `;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @fileoverview Intelligent Routing UI for Agent Skill Kit
2
+ * @fileoverview Intelligent Routing UI for PikaKit
3
3
  * FAANG-level professional agent display with Clack UI
4
4
  */
5
5
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agentskillskit-cli",
3
3
  "version": "3.2.4",
4
- "description": "CLI for Agent Skill Kit",
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": "Agent Skill Kit Authors",
28
+ "author": "PikaKit Authors",
29
29
  "license": "MIT",
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "https://github.com/agentskillkit/agent-skills.git",
32
+ "url": "https://github.com/pikakit/agent-skills.git",
33
33
  "directory": "packages/cli"
34
34
  },
35
35
  "keywords": [
@@ -1,10 +1,10 @@
1
- # Agent Skill Kit - New Architecture
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 Agent Skill Kit, following FAANG best practices for maintainability, testability, and scalability.
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 Agent Skill Kit* ',
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
- # Agent Skill Kit CLI
1
+ # PikaKit CLI
2
2
 
3
- The intelligent CLI engine for Agent Skill Kit, featuring:
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 [Agent Skill Kit](https://github.com/agentskillskit/agent-skills) repository.
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
- 🤖 Agent Skill Kit CLI v${VERSION}
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/agentskillkit/agent-skills
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 Agent Skill Kit",
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": "Agent Skill Kit Authors",
28
+ "author": "PikaKit Authors",
29
29
  "license": "MIT",
30
30
  "repository": {
31
31
  "type": "git",
32
- "url": "https://github.com/agentskillkit/agent-skills.git",
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.5",
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": "agentskillkit <agentskillkit@gmail.com>",
7
- "homepage": "https://github.com/agentskillkit/pikakit",
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/agentskillkit/pikakit.git"
10
+ "url": "https://github.com/pikakit/pikakit.git"
11
11
  },
12
12
  "bugs": {
13
- "url": "https://github.com/agentskillkit/pikakit/issues"
13
+ "url": "https://github.com/pikakit/pikakit/issues"
14
14
  },
15
15
  "type": "module",
16
16
  "bin": {