@elisym/sdk 0.25.4 → 0.25.5

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/dist/skills.d.cts CHANGED
@@ -459,10 +459,11 @@ interface SkillFrontmatter {
459
459
  */
460
460
  input_mime?: unknown;
461
461
  /**
462
- * Whether the skill ALSO accepts a text prompt alongside a file input
463
- * (`dynamic-script` only; meaningful only with `input_mime`). `'none'` = file
464
- * only, `'optional'` = file + optional note (default), `'required'` = needs both.
465
- * Discovery hint only; lets the web app show/hide its text box for file jobs.
462
+ * How the skill treats a text prompt alongside a file input (`dynamic-script`
463
+ * only; meaningful only with `input_mime`). `'none'` = file only, `'optional'` =
464
+ * file optional + instruction required (a generate-or-edit skill), `'required'` =
465
+ * needs both. Omitted = file required + optional note. Discovery hint only; lets
466
+ * the web app show/hide/gate its text box and file picker for file jobs.
466
467
  */
467
468
  input_text?: unknown;
468
469
  /**
@@ -518,9 +519,10 @@ interface ParsedSkill {
518
519
  */
519
520
  inputMime?: string;
520
521
  /**
521
- * Whether the skill also accepts a text prompt with a file input (mode
522
- * 'dynamic-script' only). Discovery hint; clients (the web app) gate their text
523
- * box on it. Default behavior when absent = file + optional text.
522
+ * How the skill treats a text prompt with a file input (mode 'dynamic-script'
523
+ * only). `'none'` = file only, `'optional'` = file optional + instruction
524
+ * required, `'required'` = both required. Discovery hint; clients (the web app)
525
+ * gate their text box and file picker on it. Absent = file required + optional text.
524
526
  */
525
527
  inputText?: 'required' | 'optional' | 'none';
526
528
  /** Optional per-skill rate limit (any mode). */
package/dist/skills.d.ts CHANGED
@@ -459,10 +459,11 @@ interface SkillFrontmatter {
459
459
  */
460
460
  input_mime?: unknown;
461
461
  /**
462
- * Whether the skill ALSO accepts a text prompt alongside a file input
463
- * (`dynamic-script` only; meaningful only with `input_mime`). `'none'` = file
464
- * only, `'optional'` = file + optional note (default), `'required'` = needs both.
465
- * Discovery hint only; lets the web app show/hide its text box for file jobs.
462
+ * How the skill treats a text prompt alongside a file input (`dynamic-script`
463
+ * only; meaningful only with `input_mime`). `'none'` = file only, `'optional'` =
464
+ * file optional + instruction required (a generate-or-edit skill), `'required'` =
465
+ * needs both. Omitted = file required + optional note. Discovery hint only; lets
466
+ * the web app show/hide/gate its text box and file picker for file jobs.
466
467
  */
467
468
  input_text?: unknown;
468
469
  /**
@@ -518,9 +519,10 @@ interface ParsedSkill {
518
519
  */
519
520
  inputMime?: string;
520
521
  /**
521
- * Whether the skill also accepts a text prompt with a file input (mode
522
- * 'dynamic-script' only). Discovery hint; clients (the web app) gate their text
523
- * box on it. Default behavior when absent = file + optional text.
522
+ * How the skill treats a text prompt with a file input (mode 'dynamic-script'
523
+ * only). `'none'` = file only, `'optional'` = file optional + instruction
524
+ * required, `'required'` = both required. Discovery hint; clients (the web app)
525
+ * gate their text box and file picker on it. Absent = file required + optional text.
524
526
  */
525
527
  inputText?: 'required' | 'optional' | 'none';
526
528
  /** Optional per-skill rate limit (any mode). */