claudekit-cli 3.36.0-dev.7 → 3.36.0-dev.8

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.
Files changed (2) hide show
  1. package/dist/index.js +8 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -50790,11 +50790,15 @@ async function parseSkillMd(skillMdPath) {
50790
50790
  logger.verbose(`Skipping ${skillMdPath}: cannot determine skill directory`);
50791
50791
  return null;
50792
50792
  }
50793
+ const metadata = data.metadata && typeof data.metadata === "object" ? data.metadata : undefined;
50794
+ const version = metadata?.version ?? data.version;
50795
+ const author = metadata?.author;
50793
50796
  return {
50794
50797
  name: dirName,
50795
50798
  displayName: data.name,
50796
50799
  description: data.description || "",
50797
- version: data.version,
50800
+ version: version != null ? String(version) : undefined,
50801
+ author: author != null ? String(author) : undefined,
50798
50802
  license: data.license,
50799
50803
  path: skillDir
50800
50804
  };
@@ -52382,6 +52386,8 @@ async function scanSkills() {
52382
52386
  isAvailable: true,
52383
52387
  sourcePath: entryPath,
52384
52388
  sourceAgent: "claude-code",
52389
+ version: frontmatter?.metadata?.version != null ? String(frontmatter.metadata.version) : frontmatter?.version != null ? String(frontmatter.version) : undefined,
52390
+ author: frontmatter?.metadata?.author != null ? String(frontmatter.metadata.author) : undefined,
52385
52391
  kit: meta?.kit,
52386
52392
  installedVersion: meta?.installedVersion,
52387
52393
  sourceTimestamp: meta?.sourceTimestamp,
@@ -54816,7 +54822,7 @@ var package_default;
54816
54822
  var init_package = __esm(() => {
54817
54823
  package_default = {
54818
54824
  name: "claudekit-cli",
54819
- version: "3.36.0-dev.7",
54825
+ version: "3.36.0-dev.8",
54820
54826
  description: "CLI tool for bootstrapping and updating ClaudeKit projects",
54821
54827
  type: "module",
54822
54828
  repository: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claudekit-cli",
3
- "version": "3.36.0-dev.7",
3
+ "version": "3.36.0-dev.8",
4
4
  "description": "CLI tool for bootstrapping and updating ClaudeKit projects",
5
5
  "type": "module",
6
6
  "repository": {