@lmzhen/dsh-evolution-core 0.1.0-rc.60 → 0.1.0-rc.61

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/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -1964,7 +1964,7 @@ function authoringFeedback(frontmatter) {
1964
1964
  const over60 = description.length > 60;
1965
1965
  const hasColon = description.includes(":");
1966
1966
  const lines = [];
1967
- lines.push(over60 ? `Description is ${description.length}/60 characters — exceeds the 60-char authoring bar (Hermes skill-authoring standard).` : `Description ${description.length}/60 characters — within the authoring bar.`);
1967
+ lines.push(over60 ? `Description is ${description.length}/60 characters — exceeds the 60-char authoring bar (Hermes standard; the catalog truncates at the configured platform cap).` : `Description ${description.length}/60 characters — within the authoring bar.`);
1968
1968
  if (hasColon) lines.push("Description contains a colon — wrap the whole value in double quotes.");
1969
1969
  return {
1970
1970
  descriptionChars: description.length,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-core",
3
3
  "description": "Shared stores, prompts, signals and lifecycle logic for the dsh-evolution plugin family (community build)",
4
- "version": "0.1.0-rc.60",
4
+ "version": "0.1.0-rc.61",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },