@agent-nexus/csreg 0.1.15 → 0.1.16

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.
@@ -94,8 +94,8 @@ function validateManifest(manifest) {
94
94
  }
95
95
  if (!manifest.description || typeof manifest.description !== "string") {
96
96
  errors.push('Missing "description" field. Claude uses this to decide when to invoke the skill.');
97
- } else if (manifest.description.length > 1024) {
98
- errors.push('"description" must be at most 1024 characters.');
97
+ } else if (manifest.description.length > 5e3) {
98
+ errors.push('"description" must be at most 5000 characters.');
99
99
  }
100
100
  if (manifest.version !== void 0) {
101
101
  const semverRegex = /^\d+\.\d+\.\d+(-[a-zA-Z0-9.]+)?(\+[a-zA-Z0-9.]+)?$/;
package/dist/index.js CHANGED
@@ -19,7 +19,7 @@ import {
19
19
  success,
20
20
  validateCommand,
21
21
  warn
22
- } from "./chunk-K2BDEOOF.js";
22
+ } from "./chunk-EJMLPDX6.js";
23
23
 
24
24
  // src/index.ts
25
25
  import { Command as Command11 } from "commander";
@@ -288,7 +288,7 @@ $2`
288
288
  info(`Updated version to ${newVersion}`);
289
289
  }
290
290
  }
291
- const { pushCommand: pushCommand2 } = await import("./push-IUV2SDXE.js");
291
+ const { pushCommand: pushCommand2 } = await import("./push-VX47YMLM.js");
292
292
  await pushCommand2.parseAsync([dir], { from: "user" });
293
293
  } catch (err) {
294
294
  handleError(err);
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  pushCommand
3
- } from "./chunk-K2BDEOOF.js";
3
+ } from "./chunk-EJMLPDX6.js";
4
4
  export {
5
5
  pushCommand
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-nexus/csreg",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "CLI for Claude Skills Registry",
5
5
  "license": "MIT",
6
6
  "type": "module",