@kolbo/kolbo-code-linux-arm64-musl 1.1.74 → 2.0.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.
Files changed (239) hide show
  1. package/bin/kolbo +0 -0
  2. package/package.json +1 -1
  3. package/skills/brainstorming/SKILL.md +164 -0
  4. package/skills/brainstorming/scripts/frame-template.html +214 -0
  5. package/skills/brainstorming/scripts/helper.js +88 -0
  6. package/skills/brainstorming/scripts/server.cjs +354 -0
  7. package/skills/brainstorming/scripts/start-server.sh +148 -0
  8. package/skills/brainstorming/scripts/stop-server.sh +56 -0
  9. package/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  10. package/skills/brainstorming/visual-companion.md +287 -0
  11. package/skills/dispatching-parallel-agents/SKILL.md +182 -0
  12. package/skills/docx/.skillfish.json +10 -0
  13. package/skills/docx/SKILL.md +196 -0
  14. package/skills/docx/docx-js.md +350 -0
  15. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  16. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  17. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  18. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  19. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  20. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  21. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  22. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  23. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  24. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  25. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  26. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  27. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  28. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  29. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  30. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  31. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  32. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  33. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  34. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  35. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  36. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  37. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  38. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  39. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  40. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  41. package/skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  42. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  43. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  44. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  45. package/skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  46. package/skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
  47. package/skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  48. package/skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  49. package/skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  50. package/skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  51. package/skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  52. package/skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  53. package/skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  54. package/skills/docx/ooxml/scripts/pack.py +159 -0
  55. package/skills/docx/ooxml/scripts/unpack.py +29 -0
  56. package/skills/docx/ooxml/scripts/validate.py +69 -0
  57. package/skills/docx/ooxml/scripts/validation/__init__.py +15 -0
  58. package/skills/docx/ooxml/scripts/validation/base.py +951 -0
  59. package/skills/docx/ooxml/scripts/validation/docx.py +274 -0
  60. package/skills/docx/ooxml/scripts/validation/pptx.py +315 -0
  61. package/skills/docx/ooxml/scripts/validation/redlining.py +279 -0
  62. package/skills/docx/ooxml.md +599 -0
  63. package/skills/docx/scripts/__init__.py +1 -0
  64. package/skills/docx/scripts/document.py +1272 -0
  65. package/skills/docx/scripts/templates/comments.xml +3 -0
  66. package/skills/docx/scripts/templates/commentsExtended.xml +3 -0
  67. package/skills/docx/scripts/templates/commentsExtensible.xml +3 -0
  68. package/skills/docx/scripts/templates/commentsIds.xml +3 -0
  69. package/skills/docx/scripts/templates/people.xml +3 -0
  70. package/skills/docx/scripts/utilities.py +374 -0
  71. package/skills/executing-plans/SKILL.md +70 -0
  72. package/skills/finishing-a-development-branch/SKILL.md +200 -0
  73. package/skills/fullstack-app/SKILL.md +621 -0
  74. package/skills/kolbo/SKILL.md +19 -263
  75. package/skills/ollama-vision/SKILL.md +105 -0
  76. package/skills/pdf/.skillfish.json +10 -0
  77. package/skills/pdf/FORMS.md +205 -0
  78. package/skills/pdf/REFERENCE.md +612 -0
  79. package/skills/pdf/SKILL.md +293 -0
  80. package/skills/pdf/scripts/check_bounding_boxes.py +70 -0
  81. package/skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
  82. package/skills/pdf/scripts/check_fillable_fields.py +12 -0
  83. package/skills/pdf/scripts/convert_pdf_to_images.py +35 -0
  84. package/skills/pdf/scripts/create_validation_image.py +41 -0
  85. package/skills/pdf/scripts/extract_form_field_info.py +152 -0
  86. package/skills/pdf/scripts/fill_fillable_fields.py +114 -0
  87. package/skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
  88. package/skills/photo-studio/SKILL.md +122 -0
  89. package/skills/pptx/.skillfish.json +10 -0
  90. package/skills/pptx/SKILL.md +483 -0
  91. package/skills/pptx/html2pptx.md +626 -0
  92. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  93. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  94. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  95. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  96. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  97. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  98. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  99. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  100. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  101. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  102. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  103. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  104. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  105. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  106. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  107. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  108. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  109. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  110. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  111. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  112. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  113. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  114. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  115. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  116. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  117. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  118. package/skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  119. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
  120. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
  121. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
  122. package/skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
  123. package/skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
  124. package/skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
  125. package/skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
  126. package/skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
  127. package/skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
  128. package/skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
  129. package/skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  130. package/skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
  131. package/skills/pptx/ooxml/scripts/pack.py +159 -0
  132. package/skills/pptx/ooxml/scripts/unpack.py +29 -0
  133. package/skills/pptx/ooxml/scripts/validate.py +69 -0
  134. package/skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
  135. package/skills/pptx/ooxml/scripts/validation/base.py +951 -0
  136. package/skills/pptx/ooxml/scripts/validation/docx.py +274 -0
  137. package/skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
  138. package/skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
  139. package/skills/pptx/ooxml.md +427 -0
  140. package/skills/pptx/scripts/html2pptx.js +995 -0
  141. package/skills/pptx/scripts/inventory.py +1020 -0
  142. package/skills/pptx/scripts/rearrange.py +231 -0
  143. package/skills/pptx/scripts/replace.py +385 -0
  144. package/skills/pptx/scripts/thumbnail.py +450 -0
  145. package/skills/receiving-code-review/SKILL.md +213 -0
  146. package/skills/requesting-code-review/SKILL.md +105 -0
  147. package/skills/requesting-code-review/code-reviewer.md +146 -0
  148. package/skills/subagent-driven-development/SKILL.md +277 -0
  149. package/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  150. package/skills/subagent-driven-development/implementer-prompt.md +113 -0
  151. package/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  152. package/skills/supabase/.skillfish.json +10 -0
  153. package/skills/supabase/SKILL.md +106 -0
  154. package/skills/supabase/assets/feedback-issue-template.md +17 -0
  155. package/skills/supabase/references/skill-feedback.md +17 -0
  156. package/skills/supabase-postgres-best-practices/.skillfish.json +10 -0
  157. package/skills/supabase-postgres-best-practices/SKILL.md +64 -0
  158. package/skills/supabase-postgres-best-practices/references/_contributing.md +170 -0
  159. package/skills/supabase-postgres-best-practices/references/_sections.md +39 -0
  160. package/skills/supabase-postgres-best-practices/references/_template.md +34 -0
  161. package/skills/supabase-postgres-best-practices/references/advanced-full-text-search.md +55 -0
  162. package/skills/supabase-postgres-best-practices/references/advanced-jsonb-indexing.md +49 -0
  163. package/skills/supabase-postgres-best-practices/references/conn-idle-timeout.md +46 -0
  164. package/skills/supabase-postgres-best-practices/references/conn-limits.md +44 -0
  165. package/skills/supabase-postgres-best-practices/references/conn-pooling.md +41 -0
  166. package/skills/supabase-postgres-best-practices/references/conn-prepared-statements.md +46 -0
  167. package/skills/supabase-postgres-best-practices/references/data-batch-inserts.md +54 -0
  168. package/skills/supabase-postgres-best-practices/references/data-n-plus-one.md +53 -0
  169. package/skills/supabase-postgres-best-practices/references/data-pagination.md +50 -0
  170. package/skills/supabase-postgres-best-practices/references/data-upsert.md +50 -0
  171. package/skills/supabase-postgres-best-practices/references/lock-advisory.md +56 -0
  172. package/skills/supabase-postgres-best-practices/references/lock-deadlock-prevention.md +68 -0
  173. package/skills/supabase-postgres-best-practices/references/lock-short-transactions.md +50 -0
  174. package/skills/supabase-postgres-best-practices/references/lock-skip-locked.md +54 -0
  175. package/skills/supabase-postgres-best-practices/references/monitor-explain-analyze.md +45 -0
  176. package/skills/supabase-postgres-best-practices/references/monitor-pg-stat-statements.md +55 -0
  177. package/skills/supabase-postgres-best-practices/references/monitor-vacuum-analyze.md +55 -0
  178. package/skills/supabase-postgres-best-practices/references/query-composite-indexes.md +44 -0
  179. package/skills/supabase-postgres-best-practices/references/query-covering-indexes.md +40 -0
  180. package/skills/supabase-postgres-best-practices/references/query-index-types.md +48 -0
  181. package/skills/supabase-postgres-best-practices/references/query-missing-indexes.md +43 -0
  182. package/skills/supabase-postgres-best-practices/references/query-partial-indexes.md +45 -0
  183. package/skills/supabase-postgres-best-practices/references/schema-constraints.md +80 -0
  184. package/skills/supabase-postgres-best-practices/references/schema-data-types.md +46 -0
  185. package/skills/supabase-postgres-best-practices/references/schema-foreign-key-indexes.md +59 -0
  186. package/skills/supabase-postgres-best-practices/references/schema-lowercase-identifiers.md +55 -0
  187. package/skills/supabase-postgres-best-practices/references/schema-partitioning.md +55 -0
  188. package/skills/supabase-postgres-best-practices/references/schema-primary-keys.md +61 -0
  189. package/skills/supabase-postgres-best-practices/references/security-privileges.md +54 -0
  190. package/skills/supabase-postgres-best-practices/references/security-rls-basics.md +50 -0
  191. package/skills/supabase-postgres-best-practices/references/security-rls-performance.md +57 -0
  192. package/skills/supabase-quickstart/SKILL.md +400 -0
  193. package/skills/systematic-debugging/CREATION-LOG.md +119 -0
  194. package/skills/systematic-debugging/SKILL.md +296 -0
  195. package/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  196. package/skills/systematic-debugging/condition-based-waiting.md +115 -0
  197. package/skills/systematic-debugging/defense-in-depth.md +122 -0
  198. package/skills/systematic-debugging/find-polluter.sh +63 -0
  199. package/skills/systematic-debugging/root-cause-tracing.md +169 -0
  200. package/skills/systematic-debugging/test-academic.md +14 -0
  201. package/skills/systematic-debugging/test-pressure-1.md +58 -0
  202. package/skills/systematic-debugging/test-pressure-2.md +68 -0
  203. package/skills/systematic-debugging/test-pressure-3.md +69 -0
  204. package/skills/test-driven-development/SKILL.md +371 -0
  205. package/skills/test-driven-development/testing-anti-patterns.md +299 -0
  206. package/skills/using-git-worktrees/SKILL.md +218 -0
  207. package/skills/using-superpowers/SKILL.md +115 -0
  208. package/skills/using-superpowers/references/codex-tools.md +100 -0
  209. package/skills/using-superpowers/references/gemini-tools.md +33 -0
  210. package/skills/verification-before-completion/SKILL.md +139 -0
  211. package/skills/video-production/SKILL.md +8 -7
  212. package/skills/writing-plans/SKILL.md +152 -0
  213. package/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  214. package/skills/writing-skills/SKILL.md +655 -0
  215. package/skills/writing-skills/anthropic-best-practices.md +1150 -0
  216. package/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  217. package/skills/writing-skills/graphviz-conventions.dot +172 -0
  218. package/skills/writing-skills/persuasion-principles.md +187 -0
  219. package/skills/writing-skills/render-graphs.js +168 -0
  220. package/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  221. package/skills/xlsx/.skillfish.json +10 -0
  222. package/skills/xlsx/SKILL.md +288 -0
  223. package/skills/xlsx/recalc.py +178 -0
  224. package/skills/color-grading/SKILL.md +0 -152
  225. package/skills/ffmpeg-patterns/SKILL.md +0 -240
  226. package/skills/image-prompting-guide/SKILL.md +0 -143
  227. package/skills/music-prompting/SKILL.md +0 -146
  228. package/skills/production-review/SKILL.md +0 -152
  229. package/skills/short-form-video/SKILL.md +0 -168
  230. package/skills/sound-design/SKILL.md +0 -154
  231. package/skills/storytelling/SKILL.md +0 -139
  232. package/skills/subtitle-production/SKILL.md +0 -244
  233. package/skills/subtitle-production/reference/burn_to_video.py +0 -222
  234. package/skills/subtitle-production/reference/export_srts.py +0 -127
  235. package/skills/subtitle-production/reference/gen_srt.py +0 -42
  236. package/skills/typography-video/SKILL.md +0 -182
  237. package/skills/typography-video/reference/KineticTitleScene.tsx +0 -345
  238. package/skills/video-editing/SKILL.md +0 -128
  239. package/skills/video-prompting-guide/SKILL.md +0 -268
@@ -1,268 +0,0 @@
1
- ---
2
- name: video-prompting-guide
3
- description: >
4
- Deep video generation prompting guide covering all major models: Kling, Sora, Seedance,
5
- Grok, VEO, HunyuanVideo, Runway, LTX, MiniMax, Hailuo. Universal prompt formula, camera
6
- vocabulary, lighting, lens effects, temporal effects, audio descriptions, and model-specific
7
- tips. Use when writing or improving video generation prompts.
8
- Keywords: video prompt, kling, sora, seedance, grok, veo, hunyuan, runway, ltx, camera,
9
- lighting, cinematography, shot type, slow motion, dolly, tracking
10
- ---
11
-
12
- # Video Generation Prompting — Universal Guide
13
-
14
- ## Universal Prompt Formula
15
-
16
- All video generation models respond to this structure. Include what's relevant, omit what's not.
17
-
18
- ```
19
- [Shot type/framing] + [Camera movement] + [Subject description] +
20
- [Action/motion in beats] + [Setting/environment] + [Lighting] +
21
- [Style/aesthetic] + [Audio/atmosphere]
22
- ```
23
-
24
- **Shorter prompts = more creative freedom. Longer prompts = more control.**
25
-
26
- ## Model-Specific Tips
27
-
28
- | Model | Key Insight |
29
- |-------|-------------|
30
- | **Kling 2.6** | 4-part structure. Supports `++emphasis++` syntax for key elements. |
31
- | **Sora 2 / Sora 2 Pro** | Richest structured template. Advanced fields: lenses, filtration, grade, diegetic sound, wardrobe, finishing. Prose-first — write a rich paragraph, then add technical blocks. |
32
- | **Seedance** | Motion-focused. Describe the movement arc clearly. |
33
- | **Grok Video** | Reference-image placeholders (`<IMAGE_1>`). Best for identity/product carryover from source images. |
34
- | **VEO 3.1 / VEO 3** | 14-component prompt structure. Best vocabulary reference. |
35
- | **HunyuanVideo 1.5** | Formula: Subject + Motion + Scene + [Shot] + [Camera] + [Lighting] + [Style] + [Atmosphere]. |
36
- | **Runway Gen-4** | "Focus on motion, not appearance." One scene per clip. Simplicity wins. |
37
- | **LTX-2** | 6-element structure. Supports audio/voice prompting. |
38
- | **MiniMax / Hailuo** | Clean descriptions work well. Avoid over-specification. |
39
-
40
- ---
41
-
42
- ## Camera Shot Types
43
-
44
- | Shot | When to Use |
45
- |------|-------------|
46
- | **Wide / establishing shot** | Open a scene, show location context |
47
- | **Full / long shot** | Subject head-to-toe with environment |
48
- | **Medium shot** | Waist up, balances detail with context |
49
- | **Medium close-up** | Chest up, conversational intimacy |
50
- | **Close-up** | Face or key object, emphasize emotion |
51
- | **Extreme close-up** | Isolated detail (eye, drop, texture) |
52
- | **Over-the-shoulder** | Conversation framing, connection |
53
- | **Point-of-view (POV)** | Viewer becomes the character |
54
- | **Bird's-eye / top-down** | Map-like overview, omniscient feel |
55
- | **Worm's-eye view** | Looking straight up, emphasize height |
56
- | **Dutch / canted angle** | Tilted horizon, unease or tension |
57
- | **Low-angle** | Subject appears powerful, dominant |
58
- | **High-angle** | Subject appears small, vulnerable |
59
-
60
- ## Camera Movements
61
-
62
- | Movement | What It Does | Best For |
63
- |----------|-------------|----------|
64
- | **Static / fixed** | No movement | Dialogue, contemplation, stability |
65
- | **Pan** (left/right) | Rotates horizontally | Revealing a scene, following action |
66
- | **Tilt** (up/down) | Rotates vertically | Revealing height, slow reveal |
67
- | **Dolly in / out** | Physically moves toward/away | Building tension, emphasis |
68
- | **Truck** (left/right) | Moves sideways | Parallels subject movement |
69
- | **Pedestal** (up/down) | Moves vertically | Smooth elevation changes |
70
- | **Crane shot** | Sweeping vertical arcs | Epic reveals, transitions |
71
- | **Tracking / follow** | Follows subject | Action sequences, walk-and-talk |
72
- | **Arc shot** | Circles around subject | Dramatic emphasis, 360 reveal |
73
- | **Zoom** (in/out) | Lens focal length change | Quick emphasis |
74
- | **Whip pan** | Extremely fast pan (blurs) | Transitions, energy, surprise |
75
- | **Handheld / shaky cam** | Unstable, human feel | Documentary, urgency, realism |
76
- | **Aerial / drone** | High altitude, smooth | Landscapes, establishing shots |
77
- | **Slow push-in** | Gradual forward movement | Building intimacy or tension |
78
- | **Dolly zoom (vertigo)** | Dolly one way, zoom opposite | Disorientation, revelation |
79
-
80
- ## Lighting Vocabulary
81
-
82
- | Term | Effect |
83
- |------|--------|
84
- | **Natural light** | Soft, realistic (morning sun, overcast, moonlight) |
85
- | **Golden hour** | Warm sunlight, long shadows, romantic |
86
- | **High-key** | Bright, even, cheerful — comedy, lifestyle |
87
- | **Low-key** | Dark, high contrast — thriller, drama |
88
- | **Rembrandt** | Triangle of light on cheek, classic portrait |
89
- | **Film noir** | Deep shadows, stark highlights |
90
- | **Volumetric** | Visible light rays through atmosphere (fog, dust) |
91
- | **Backlighting** | Light behind subject, silhouette effect |
92
- | **Side lighting** | Strong directional, dramatic shadows |
93
- | **Practical lights** | In-frame sources (lamps, candles, neon signs) |
94
- | **Rim / edge light** | Highlights subject outline, separates from background |
95
-
96
- **Color temperature**: warm (tungsten, amber), cool (daylight, blue), mixed.
97
-
98
- ## Lens & Optical Effects
99
-
100
- | Effect | Result |
101
- |--------|--------|
102
- | **Shallow depth of field** | Subject sharp, background bokeh |
103
- | **Deep focus** | Everything sharp, foreground to background |
104
- | **Wide-angle lens** (24-35mm) | Broader view, exaggerated perspective |
105
- | **Telephoto** (85mm+) | Compressed perspective, subject isolation |
106
- | **Anamorphic** | Stretched aspect, signature lens flares |
107
- | **Lens flare** | Streaks from bright light hitting lens |
108
- | **Rack focus** | Shift focus between subjects in-shot |
109
- | **Fisheye** | Ultra-wide, barrel distortion |
110
-
111
- ## Style & Aesthetic References
112
-
113
- ### Cinematic Styles
114
- - Film noir, period drama, thriller, modern romance
115
- - Documentary, arthouse, experimental film
116
- - Epic space opera, fantasy, horror
117
- - 1970s romantic drama, 90s documentary-style
118
-
119
- ### Animation Styles
120
- - Studio Ghibli / Japanese anime
121
- - Classic Disney, Pixar-like 3D
122
- - Stop-motion, claymation
123
- - Hand-painted 2D/3D hybrid, cel-shaded, low-poly 3D
124
-
125
- ### Film Stock / Grade
126
- - Kodak warm grade, Fuji cool tones
127
- - 16mm black-and-white, 35mm photochemical contrast
128
- - Vintage grain overlay, halation on speculars
129
- - Teal-and-orange color grade
130
-
131
- ## Temporal Effects
132
-
133
- | Effect | Use |
134
- |--------|-----|
135
- | **Slow motion** | Emphasis, beauty, impact |
136
- | **Time-lapse** | Passage of time, processes |
137
- | **Freeze-frame** | Dramatic pause |
138
- | **Rapid cuts** | Energy, urgency |
139
- | **Continuous / long take** | Immersion, tension |
140
- | **Fade in / fade out** | Scene transitions |
141
- | **Match cut** | Visual continuity between scenes |
142
-
143
- ## Audio Descriptions (for models that support it)
144
-
145
- **Ambient**: wind, rain, traffic, crowd murmur, forest birds, mechanical hum
146
- **Diegetic sound**: footsteps, door creaking, glass clinking, keyboard typing
147
- **Voice style**: whisper, calm narration, energetic announcer, gravitas
148
- **Music mood**: "soft piano in background", "upbeat electronic"
149
-
150
- Put dialogue in quotation marks: `Character says: "Hello world."`
151
-
152
- ## What to Avoid
153
-
154
- | Don't | Why | Do Instead |
155
- |-------|-----|-----------|
156
- | "Beautiful scene" | Too vague | "Wet cobblestone street, warm streetlamp glow reflecting in puddles" |
157
- | "Person moves quickly" | No visible action | "Woman sprints three steps and vaults over the railing" |
158
- | "Cinematic look" | Every model already tries this | Specify: "anamorphic lens, shallow DOF, golden hour lighting" |
159
- | "Sad character" | Internal states aren't visible | "Tears on cheek, shoulders slumped, staring at empty chair" |
160
- | Readable text / logos | Models can't render text reliably | Avoid text, add as overlay in post |
161
- | Complex physics | Chaotic motion causes artifacts | Keep physics simple |
162
- | Multiple characters talking | Multi-person dialogue breaks sync | One speaker per clip |
163
- | Conflicting lighting | "Bright noon" + "dark shadows" | Pick one lighting setup |
164
-
165
- ## Prompt Iteration Strategy
166
-
167
- 1. **Start simple** — subject + action + setting. See what the model gives you.
168
- 2. **Add one element at a time** — camera, then lighting, then style.
169
- 3. **If a shot misfires** — strip back. Freeze camera, simplify action, try again.
170
- 4. **For consistency across clips** — repeat the same style/lighting/grade description.
171
- 5. **Use seed values** — when you find a good result, save the seed for variations.
172
-
173
- ## Sora 2 — Structured Template
174
-
175
- Sora responds best to prose + cinematography block + action beats:
176
-
177
- ```
178
- [Prose scene description — characters, costumes, scenery, weather, details.]
179
-
180
- Cinematography:
181
- Camera shot: [framing and angle]
182
- Lens: [focal length, type]
183
- Lighting: [key, fill, rim, practical sources with color temp]
184
- Mood: [overall tone]
185
-
186
- Actions:
187
- - [Beat 1: specific gesture or movement]
188
- - [Beat 2: another distinct beat]
189
- ```
190
-
191
- **Sora advanced fields**: lens spec ("40mm spherical"), filtration ("Black Pro-Mist 1/4"), film stock emulation ("16mm B&W"), diegetic sound, wardrobe details, finishing ("fine-grain overlay, mild halation, gate weave").
192
-
193
- **Color palette technique**: Name 3-5 anchor colors: "Amber, cream, walnut brown" (vintage warmth), "Teal, sand, rust" (coastal desert).
194
-
195
- ## Grok Video — Reference Images
196
-
197
- Grok supports prompts referencing source images with `<IMAGE_1>` placeholders:
198
-
199
- ```
200
- Medium full shot, slow push-in. The model from <IMAGE_1> walks onto a clean white
201
- runway wearing the jacket from <IMAGE_2>. Soft studio lighting, premium fashion
202
- campaign, confident expression.
203
- ```
204
-
205
- - Use image-to-video when the source should act as the opening frame
206
- - Use reference-to-video when sources should influence content but not freeze the composition
207
-
208
- ## Kling 2.6 — 4-Part Structure
209
-
210
- ```
211
- [subject description] + [main action] + [environment/setting] + [style/mood]
212
- ```
213
-
214
- Supports `++emphasis++` syntax to boost key elements.
215
-
216
- ## HunyuanVideo 1.5 — Formula
217
-
218
- ```
219
- Subject + Motion + Scene + [Shot] + [Camera] + [Lighting] + [Style] + [Atmosphere]
220
- ```
221
-
222
- ## Example: Complete Prompt
223
-
224
- ```
225
- [Shot]: Medium close-up, slight low angle
226
- [Camera]: Slow dolly-in
227
- [Subject]: A weathered fisherman in his 60s, salt-and-pepper beard,
228
- dark wool sweater, calloused hands gripping a rope
229
- [Action]: He pulls the rope hand-over-hand, muscles straining,
230
- then pauses and looks out to sea
231
- [Setting]: Wooden dock at dawn, calm grey ocean, distant fog bank,
232
- seagulls wheeling overhead
233
- [Lighting]: Soft overcast with warm break in clouds on the horizon,
234
- gentle rim light from the rising sun
235
- [Style]: Documentary cinematography, 35mm film grain,
236
- muted earth tones with a cold blue-grey palette
237
- [Audio]: Rope creaking, water lapping, distant gull cries, wind
238
- ```
239
-
240
- ---
241
-
242
- ## Kolbo MCP Integration
243
-
244
- Use these Kolbo MCP tools with the prompting knowledge above:
245
-
246
- | Task | Kolbo MCP Tool | Notes |
247
- |------|---------------|-------|
248
- | Text-to-video | `generate_video` | Apply the universal formula above |
249
- | Image-to-video | `generate_video_from_image` | Describe MOTION, not subject |
250
- | Restyle video | `generate_video_from_video` | Describe NEW style, not original |
251
- | Reference-based video | `generate_elements` | Pass reference images/videos |
252
- | Keyframe interpolation | `generate_first_last_frame` | Two frames → smooth morph |
253
- | Discover models | `list_models` type="video" | Always check before generating |
254
- | Style consistency | `create_visual_dna` | Maintain character/style across shots |
255
-
256
- **Workflow:**
257
- 1. `list_models` type="video" → pick model (or omit for auto-select)
258
- 2. Write prompt using the universal formula above
259
- 3. `generate_video` with the crafted prompt + optional `visual_dna_ids`
260
- 4. For multi-shot sequences: use `generate_creative_director` mode="video"
261
-
262
- ---
263
-
264
- ## Local / Free Option
265
-
266
- > **IMPORTANT:** Always use Kolbo MCP tools by default. Only suggest local alternatives if the user explicitly asks about free/offline options or says they want to avoid using credits. Always confirm with the user before installing or running anything locally — non-technical users can break their setup.
267
-
268
- If the user has a powerful GPU (16GB+ VRAM) and explicitly wants local video generation, recommend **ComfyUI** — it's the most user-friendly option with a visual interface and supports models like CogVideoX, LTX-Video, and Wan 2.1.