@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.js CHANGED
@@ -209,7 +209,7 @@ var GitHubSourceSchema = import_zod2.z.object({
209
209
  owner: import_zod2.z.string().min(1),
210
210
  /** Repository name, e.g. "skills" */
211
211
  repo: import_zod2.z.string().min(1),
212
- /** Folder path within the repo, e.g. "wix-cli/skills/wix-cli-dashboard-page" */
212
+ /** Path within the repo (file or directory), e.g. "skills/my-skill" or "agents/reviewer.md" */
213
213
  path: import_zod2.z.string().min(1),
214
214
  /** Git ref (branch, tag, or SHA), e.g. "master" or "v1.2.0" */
215
215
  ref: import_zod2.z.string().min(1)
@@ -1330,7 +1330,9 @@ var SkillWithLatestVersionSchema = SkillSchema.extend({
1330
1330
  var import_zod8 = require("zod");
1331
1331
  var SubAgentSchema = TargetSchema.extend({
1332
1332
  /** The full sub-agent markdown content (YAML frontmatter + body) */
1333
- subAgentMd: import_zod8.z.string()
1333
+ subAgentMd: import_zod8.z.string(),
1334
+ /** GitHub source reference for live content fetching (single .md file) */
1335
+ source: GitHubSourceSchema.optional()
1334
1336
  });
1335
1337
  var SubAgentInputBaseSchema = SubAgentSchema.omit({
1336
1338
  id: true,