@clipform/mcp-server 1.11.0 → 1.12.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.
|
@@ -22277,7 +22277,9 @@ async function callInternalApi(path, options = {}) {
|
|
|
22277
22277
|
const headers = {
|
|
22278
22278
|
"Content-Type": "application/json"
|
|
22279
22279
|
};
|
|
22280
|
-
if (
|
|
22280
|
+
if (_apiKey) {
|
|
22281
|
+
headers["Authorization"] = `Bearer ${_apiKey}`;
|
|
22282
|
+
} else if (INTERNAL_SECRET) {
|
|
22281
22283
|
headers["Authorization"] = `Bearer ${INTERNAL_SECRET}`;
|
|
22282
22284
|
}
|
|
22283
22285
|
const fetchOptions = { method, headers };
|
|
@@ -24613,6 +24615,29 @@ Each question is a micro variable-reward event - the same dopamine loop that kee
|
|
|
24613
24615
|
|
|
24614
24616
|
For numeric questions (population, speed, weight), scale the real answer by random multipliers (0.3x to 3x) rounded to the same magnitude. Makes wrong answers plausible but clearly different.
|
|
24615
24617
|
|
|
24618
|
+
## Color Brain Questions (ColorSwatch composition)
|
|
24619
|
+
|
|
24620
|
+
Inspired by the Color Brain board game - every answer is identified by its colours. Show flat colour chips, ask "what has these colours?". Use the \`ColorSwatch\` composition for the question card.
|
|
24621
|
+
|
|
24622
|
+
**Colour palette constraint:** Swatches are solid flat chips. Only use clearly distinguishable basic colours: red, blue, green, yellow, white, black, orange, purple, pink, brown, grey. No navy vs blue, no teal vs cyan - they look the same as flat chips. The skill is picking subjects where a combo of basic colours is unique enough to identify.
|
|
24623
|
+
|
|
24624
|
+
**Question categories:**
|
|
24625
|
+
- Flags: "Which country's flag has these colours?" (pair with FlagReveal for answer)
|
|
24626
|
+
- Brand logos: red + yellow = McDonald's, red + white = Coca-Cola
|
|
24627
|
+
- Sports teams: red + white = Arsenal, red + blue + white = Barcelona
|
|
24628
|
+
- Superheroes/characters: red + blue = Spider-Man, yellow + black = Batman
|
|
24629
|
+
- Food: red + green = watermelon, yellow + brown = banana
|
|
24630
|
+
|
|
24631
|
+
**Difficulty scaling:**
|
|
24632
|
+
- Easy: iconic subjects with unique colour combos (Japan flag: red + white)
|
|
24633
|
+
- Medium: common subjects but colours shared with others (Italy vs Ireland: both green + white + one more)
|
|
24634
|
+
- Hard: obscure subjects or very common colour combos that fit many answers
|
|
24635
|
+
|
|
24636
|
+
**Design rules:**
|
|
24637
|
+
- 2-4 colours per question works best. 5+ gets messy and hard to distinguish.
|
|
24638
|
+
- If two answer options would produce identical swatches, don't use that question.
|
|
24639
|
+
- Pair with a reveal composition (FlagReveal, image, or text) for the answer.
|
|
24640
|
+
|
|
24616
24641
|
## Narration Style
|
|
24617
24642
|
|
|
24618
24643
|
You're a quiz master, not a question reader. Each question's narration should:
|
|
@@ -25014,4 +25039,4 @@ export {
|
|
|
25014
25039
|
setApiKey,
|
|
25015
25040
|
createServer
|
|
25016
25041
|
};
|
|
25017
|
-
//# sourceMappingURL=chunk-
|
|
25042
|
+
//# sourceMappingURL=chunk-P6TIRFDL.js.map
|