@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/agent-store.cjs +2 -0
- package/dist/agent-store.cjs.map +1 -1
- package/dist/agent-store.js +2 -0
- package/dist/agent-store.js.map +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -7
- package/dist/index.d.ts +9 -7
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/node.cjs.map +1 -1
- package/dist/node.js.map +1 -1
- package/dist/skills.cjs.map +1 -1
- package/dist/skills.d.cts +9 -7
- package/dist/skills.d.ts +9 -7
- package/dist/skills.js.map +1 -1
- package/package.json +1 -1
package/dist/skills.d.cts
CHANGED
|
@@ -459,10 +459,11 @@ interface SkillFrontmatter {
|
|
|
459
459
|
*/
|
|
460
460
|
input_mime?: unknown;
|
|
461
461
|
/**
|
|
462
|
-
*
|
|
463
|
-
*
|
|
464
|
-
*
|
|
465
|
-
*
|
|
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
|
-
*
|
|
522
|
-
*
|
|
523
|
-
*
|
|
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
|
-
*
|
|
463
|
-
*
|
|
464
|
-
*
|
|
465
|
-
*
|
|
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
|
-
*
|
|
522
|
-
*
|
|
523
|
-
*
|
|
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). */
|