pikakit 3.9.95 → 3.9.96

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.95-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.96-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-51-06b6d4?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
9
9
  [![Agents](https://img.shields.io/badge/agents-21-f59e0b?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
10
10
  [![Workflows](https://img.shields.io/badge/workflows-18-10b981?style=for-the-badge&labelColor=18181b)](https://github.com/pikakit/agent-skills)
@@ -396,7 +396,7 @@ UNLICENSED — See [LICENSE](LICENSE) for details.
396
396
 
397
397
  <div align="center">
398
398
 
399
- **⚡ PikaKit v3.9.95**
399
+ **⚡ PikaKit v3.9.96**
400
400
 
401
401
  *Composable Skills · Coordinated Agents · Intelligent Execution*
402
402
 
@@ -31,7 +31,7 @@ export async function run(skillName) {
31
31
  const m = parseSkillMdFrontmatter(smp);
32
32
  console.log(`${c.gray(S.branch)} ${c.cyan("SKILL.md Frontmatter:")}`);
33
33
  console.log(`${c.gray(S.branch)} Name: ${m.name || c.dim("(not set)")}`);
34
- console.log(`${c.gray(S.branch)} Description: ${m.description ? m.description.substring(0, 60) : c.red("(MISSING)")}`);
34
+ console.log(`${c.gray(S.branch)} Description: ${m.summary ? m.summary.substring(0, 60) : c.red("(MISSING)")}`);
35
35
  if (m.tags) console.log(`${c.gray(S.branch)} Tags: ${m.tags.join(", ")}`);
36
36
  stepLine();
37
37
  }
@@ -58,7 +58,7 @@ export async function run(skillName) {
58
58
  let score = 0;
59
59
  if (fs.existsSync(smp)) score += 20;
60
60
  const m = parseSkillMdFrontmatter(smp);
61
- if (m.description) score += 25;
61
+ if (m.summary) score += 25;
62
62
  if (m.tags && m.tags.length > 0) score += 10;
63
63
  if (structure.hasResources || structure.hasExamples || structure.hasScripts) score += 20;
64
64
  if (fs.existsSync(path.join(skillDir, ".skill-source.json"))) score += 10;
@@ -143,7 +143,7 @@ export async function run(spec) {
143
143
  skillsInRepo.push({
144
144
  title: e, // Only show folder name
145
145
  value: e,
146
- description: m.description || "",
146
+ description: m.summary || "",
147
147
  selected: singleSkill ? e === singleSkill : true,
148
148
  _path: sp
149
149
  });
@@ -45,8 +45,8 @@ export async function run(skillName) {
45
45
  errors.push("Missing SKILL.md");
46
46
  } else {
47
47
  const m = parseSkillMdFrontmatter(smp);
48
- if (!m.description) errors.push("Missing description");
49
- else if (m.description.length < 50) warnings.push("Description too short");
48
+ if (!m.summary) errors.push("Missing description");
49
+ else if (m.summary.length < 50) warnings.push("Description too short");
50
50
  }
51
51
 
52
52
  const status = errors.length > 0 ? c.red("FAIL") : warnings.length > 0 ? c.yellow("WARN") : c.green("PASS");
package/bin/lib/skills.js CHANGED
@@ -106,7 +106,7 @@ export function getInstalledSkills() {
106
106
  path: dir,
107
107
  ...meta,
108
108
  hasSkillMd,
109
- description: skillMeta.description || meta.description || "",
109
+ description: skillMeta.summary || meta.description || "",
110
110
  tags: skillMeta.tags || [],
111
111
  author: skillMeta.author || meta.publisher || "",
112
112
  version: skillMeta.version || meta.ref || "unknown",
package/bin/lib/types.js CHANGED
@@ -21,7 +21,7 @@
21
21
  * @property {string} name - Skill folder name
22
22
  * @property {string} path - Absolute path to skill
23
23
  * @property {boolean} hasSkillMd - Has SKILL.md file
24
- * @property {string} description - From SKILL.md frontmatter
24
+ * @property {string} description - From SKILL.md frontmatter (resolved from summary)
25
25
  * @property {string[]} tags - From SKILL.md frontmatter
26
26
  * @property {string} author - Author or publisher
27
27
  * @property {string} version - Version or ref
@@ -37,7 +37,7 @@
37
37
  /**
38
38
  * @typedef {Object} SkillMeta
39
39
  * @property {string} [name]
40
- * @property {string} [description]
40
+ * @property {string} [summary]
41
41
  * @property {string} [version]
42
42
  * @property {string} [author]
43
43
  * @property {string[]} [tags]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "3.9.95",
3
+ "version": "3.9.96",
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>",