@wix/evalforge-types 0.49.0 → 0.50.0

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.
package/build/index.mjs CHANGED
@@ -19,7 +19,7 @@ var GitHubSourceSchema = z2.object({
19
19
  owner: z2.string().min(1),
20
20
  /** Repository name, e.g. "skills" */
21
21
  repo: z2.string().min(1),
22
- /** Folder path within the repo, e.g. "wix-cli/skills/wix-cli-dashboard-page" */
22
+ /** Path within the repo (file or directory), e.g. "skills/my-skill" or "agents/reviewer.md" */
23
23
  path: z2.string().min(1),
24
24
  /** Git ref (branch, tag, or SHA), e.g. "master" or "v1.2.0" */
25
25
  ref: z2.string().min(1)
@@ -1140,7 +1140,9 @@ var SkillWithLatestVersionSchema = SkillSchema.extend({
1140
1140
  import { z as z8 } from "zod";
1141
1141
  var SubAgentSchema = TargetSchema.extend({
1142
1142
  /** The full sub-agent markdown content (YAML frontmatter + body) */
1143
- subAgentMd: z8.string()
1143
+ subAgentMd: z8.string(),
1144
+ /** GitHub source reference for live content fetching (single .md file) */
1145
+ source: GitHubSourceSchema.optional()
1144
1146
  });
1145
1147
  var SubAgentInputBaseSchema = SubAgentSchema.omit({
1146
1148
  id: true,