@vibe-agent-toolkit/agent-schema 0.1.32 → 0.1.33-rc.2

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.
@@ -8,7 +8,7 @@ import { z } from 'zod';
8
8
  /**
9
9
  * Skill name pattern: kebab-case segments, optionally colon-namespaced as {plugin}:{skill}.
10
10
  *
11
- * Examples: "my-skill", "vibe-agent-toolkit:resources"
11
+ * Examples: "my-skill", "vibe-agent-toolkit:vat-audit"
12
12
  *
13
13
  * The colon namespace is intentional design — it is the `{plugin-name}:{sub-skill}` separator
14
14
  * used both in SKILL.md frontmatter and in vat.skills[].name in package.json.
@@ -8,7 +8,7 @@ import { z } from 'zod';
8
8
  /**
9
9
  * Skill name pattern: kebab-case segments, optionally colon-namespaced as {plugin}:{skill}.
10
10
  *
11
- * Examples: "my-skill", "vibe-agent-toolkit:resources"
11
+ * Examples: "my-skill", "vibe-agent-toolkit:vat-audit"
12
12
  *
13
13
  * The colon namespace is intentional design — it is the `{plugin-name}:{sub-skill}` separator
14
14
  * used both in SKILL.md frontmatter and in vat.skills[].name in package.json.
@@ -19,7 +19,7 @@ import { z } from 'zod';
19
19
  // eslint-disable-next-line security/detect-unsafe-regex -- simple pattern for skill names, max length enforced externally
20
20
  export const SKILL_NAME_REGEX = /^[a-z0-9]+(-[a-z0-9]+)*(:[a-z0-9]+(-[a-z0-9]+)*)?$/;
21
21
  export const SKILL_NAME_REGEX_MESSAGE = 'Skill name must be lowercase kebab-case, optionally namespaced as {plugin}:{skill} ' +
22
- '(e.g. "my-skill" or "vibe-agent-toolkit:resources")';
22
+ '(e.g. "my-skill" or "vibe-agent-toolkit:vat-audit")';
23
23
  /**
24
24
  * Packaging options for skill distribution
25
25
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibe-agent-toolkit/agent-schema",
3
- "version": "0.1.32",
3
+ "version": "0.1.33-rc.2",
4
4
  "description": "JSON Schema definitions and TypeScript types for VAT agent manifest format",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,7 +37,7 @@
37
37
  "zod-to-json-schema": "^3.23.5"
38
38
  },
39
39
  "devDependencies": {
40
- "@vibe-agent-toolkit/utils": "0.1.32",
40
+ "@vibe-agent-toolkit/utils": "0.1.33-rc.2",
41
41
  "tsx": "^4.21.0",
42
42
  "typescript": "^5.9.3",
43
43
  "vitest": "^3.2.4"