@clipform/mcp-server 1.22.2 → 1.23.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/dist/{chunk-ZDSVE6D3.js → chunk-4EXXG7OF.js} +1 -1
- package/dist/{chunk-ZDSVE6D3.js.map → chunk-4EXXG7OF.js.map} +1 -1
- package/dist/{chunk-H3DV5X53.js → chunk-M3G76QDR.js} +11 -8
- package/dist/{chunk-H3DV5X53.js.map → chunk-M3G76QDR.js.map} +1 -1
- package/dist/{chunk-LMGXTF23.js → chunk-UW6HXM2U.js} +6 -6
- package/dist/{chunk-LMGXTF23.js.map → chunk-UW6HXM2U.js.map} +1 -1
- package/dist/{chunk-G727XWN4.js → chunk-ZJJBZGO6.js} +2 -2
- package/dist/index.js +4 -4
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.js +4 -4
- package/package.json +1 -1
- /package/dist/{chunk-G727XWN4.js.map → chunk-ZJJBZGO6.js.map} +0 -0
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
WORKFLOW_TYPES,
|
|
3
3
|
getDiscoveryParams,
|
|
4
4
|
getSessionContextWithAuth
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-4EXXG7OF.js";
|
|
6
6
|
import {
|
|
7
7
|
__export
|
|
8
8
|
} from "./chunk-HCZI2UJ5.js";
|
|
@@ -4111,10 +4111,10 @@ function quizWorkflow(args, sessionContext, authMode = "oauth") {
|
|
|
4111
4111
|
- show_step_counter: true
|
|
4112
4112
|
- disable_back_navigation: true
|
|
4113
4113
|
4. **Add questions** with clipform_add_node (type: "choice"):
|
|
4114
|
-
- config: { choice: { show_answer_feedback: true } }
|
|
4115
|
-
- randomise_options: true in config
|
|
4114
|
+
- config: { choice: { show_answer_feedback: true }, randomise_options: true }
|
|
4116
4115
|
- score: 1 on correct option, score: 0 on wrong
|
|
4117
4116
|
- 3-4 wrong answers per question
|
|
4117
|
+
- **IMPORTANT: vary the position of the correct answer** - do NOT put it first every time. Spread correct answers across positions 1-4 so there's no guessable pattern (e.g. Q1=pos3, Q2=pos1, Q3=pos4, Q4=pos2...)
|
|
4118
4118
|
5. **Generate narration** with clipform_generate_tts - batch ALL questions in a single call (pass an array of items). Tease the question - do NOT reveal the answer or read options aloud. Keep each narration 5-15 seconds.
|
|
4119
4119
|
6. **Build video** for each question:
|
|
4120
4120
|
- clipform_search_media (kind: "image") - 3 images per question
|
|
@@ -4191,10 +4191,10 @@ function comprehensionQuizWorkflow(args, sessionContext, authMode = "oauth") {
|
|
|
4191
4191
|
- show_step_counter: true
|
|
4192
4192
|
- disable_back_navigation: true
|
|
4193
4193
|
6. **Add questions** with clipform_add_node (type: "choice"):
|
|
4194
|
-
- config: { choice: { show_answer_feedback: true } }
|
|
4195
|
-
- randomise_options: true in config
|
|
4194
|
+
- config: { choice: { show_answer_feedback: true }, randomise_options: true }
|
|
4196
4195
|
- score: 1 on correct option, score: 0 on wrong
|
|
4197
4196
|
- 3-4 wrong answers per question - make distractors plausible (things someone might guess without watching)
|
|
4197
|
+
- **IMPORTANT: vary the position of the correct answer** - do NOT put it first every time. Spread correct answers across positions 1-4 so there's no guessable pattern (e.g. Q1=pos3, Q2=pos1, Q3=pos4, Q4=pos2...)
|
|
4198
4198
|
7. **Generate narration** with clipform_generate_tts - batch ALL questions in a single call. Reference the video naturally: "If you watched closely, you'll know this one..." Keep each narration 5-10 seconds.
|
|
4199
4199
|
8. **Build video** for each question:
|
|
4200
4200
|
- clipform_search_media (kind: "image") - 3 images per question
|
|
@@ -4671,4 +4671,4 @@ export {
|
|
|
4671
4671
|
getWorkflowText,
|
|
4672
4672
|
registerPrompts
|
|
4673
4673
|
};
|
|
4674
|
-
//# sourceMappingURL=chunk-
|
|
4674
|
+
//# sourceMappingURL=chunk-UW6HXM2U.js.map
|