@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 >
|
|
98
|
-
errors.push('"description" must be at most
|
|
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-
|
|
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-
|
|
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);
|