@rfxlamia/skillkit 1.0.0 → 1.2.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 (269) hide show
  1. package/agents/agents/creative-copywriter.md +212 -0
  2. package/agents/agents/dario-amodei.md +135 -0
  3. package/agents/agents/doc-simplifier.md +63 -0
  4. package/agents/agents/kotlin-pro.md +433 -0
  5. package/agents/agents/red-team.md +136 -0
  6. package/agents/agents/sam-altman.md +121 -0
  7. package/agents/agents/seo-manager.md +184 -0
  8. package/package.json +7 -2
  9. package/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  10. package/skills/skillkit/.claude/settings.local.json +7 -0
  11. package/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  12. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  13. package/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  14. package/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  15. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  16. package/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  17. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  18. package/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  19. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  20. package/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  21. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  22. package/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  23. package/skills/skillkit-help/SKILL.md +81 -0
  24. package/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  25. package/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  26. package/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  27. package/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  28. package/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  29. package/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  30. package/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  31. package/skills/skillkit-help/template/SKILL.md +52 -0
  32. package/skills/skills/adversarial-review/SKILL.md +219 -0
  33. package/skills/skills/baby-education/SKILL.md +260 -0
  34. package/skills/skills/baby-education/references/advanced-techniques.md +323 -0
  35. package/skills/skills/baby-education/references/transformations.md +345 -0
  36. package/skills/skills/been-there-done-that/SKILL.md +455 -0
  37. package/skills/skills/been-there-done-that/references/analysis-patterns.md +162 -0
  38. package/skills/skills/been-there-done-that/references/git-commands.md +132 -0
  39. package/skills/skills/been-there-done-that/references/tree-insertion-logic.md +145 -0
  40. package/skills/skills/coolhunter/SKILL.md +270 -0
  41. package/skills/skills/coolhunter/assets/elicitation-methods.csv +51 -0
  42. package/skills/skills/coolhunter/knowledge/elicitation-methods.md +312 -0
  43. package/skills/skills/coolhunter/references/workflow-execution.md +238 -0
  44. package/skills/skills/coolhunter/workflow-plan-coolhunter.md +232 -0
  45. package/skills/skills/creative-copywriting/SKILL.md +324 -0
  46. package/skills/skills/creative-copywriting/databases/README.md +60 -0
  47. package/skills/skills/creative-copywriting/databases/carousel-structures.csv +16 -0
  48. package/skills/skills/creative-copywriting/databases/emotional-arcs.csv +11 -0
  49. package/skills/skills/creative-copywriting/databases/hook-formulas.csv +51 -0
  50. package/skills/skills/creative-copywriting/databases/power-words.csv +201 -0
  51. package/skills/skills/creative-copywriting/databases/psychological-triggers.csv +21 -0
  52. package/skills/skills/creative-copywriting/databases/read-more-patterns.csv +26 -0
  53. package/skills/skills/creative-copywriting/databases/swipe-triggers.csv +31 -0
  54. package/skills/skills/creative-copywriting/references/carousel-psychology.md +223 -0
  55. package/skills/skills/creative-copywriting/references/hook-anatomy.md +169 -0
  56. package/skills/skills/creative-copywriting/references/power-word-science.md +134 -0
  57. package/skills/skills/creative-copywriting/references/storytelling-frameworks.md +157 -0
  58. package/skills/skills/diverse-content-gen/SKILL.md +201 -0
  59. package/skills/skills/diverse-content-gen/references/advanced-techniques.md +320 -0
  60. package/skills/skills/diverse-content-gen/references/research-findings.md +379 -0
  61. package/skills/skills/diverse-content-gen/references/task-workflows.md +241 -0
  62. package/skills/skills/diverse-content-gen/references/tool-integration.md +419 -0
  63. package/skills/skills/diverse-content-gen/references/troubleshooting.md +426 -0
  64. package/skills/skills/diverse-content-gen/references/vs-core-technique.md +240 -0
  65. package/skills/skills/framework-critical-thinking/SKILL.md +220 -0
  66. package/skills/skills/framework-critical-thinking/references/bias_detector.md +375 -0
  67. package/skills/skills/framework-critical-thinking/references/fallback_handler.md +239 -0
  68. package/skills/skills/framework-critical-thinking/references/memory_curator.md +161 -0
  69. package/skills/skills/framework-critical-thinking/references/metacognitive_monitor.md +297 -0
  70. package/skills/skills/framework-critical-thinking/references/producer_critic_orchestrator.md +333 -0
  71. package/skills/skills/framework-critical-thinking/references/reasoning_router.md +235 -0
  72. package/skills/skills/framework-critical-thinking/references/reasoning_validator.md +97 -0
  73. package/skills/skills/framework-critical-thinking/references/reflection_trigger.md +78 -0
  74. package/skills/skills/framework-critical-thinking/references/self_verification.md +388 -0
  75. package/skills/skills/framework-critical-thinking/references/uncertainty_quantifier.md +207 -0
  76. package/skills/skills/framework-initiative/SKILL.md +231 -0
  77. package/skills/skills/framework-initiative/references/examples.md +150 -0
  78. package/skills/skills/framework-initiative/references/impact-analysis.md +157 -0
  79. package/skills/skills/framework-initiative/references/intent-patterns.md +145 -0
  80. package/skills/skills/framework-initiative/references/star-framework.md +165 -0
  81. package/skills/skills/humanize-docs/SKILL.md +203 -0
  82. package/skills/skills/humanize-docs/references/advanced-techniques.md +13 -0
  83. package/skills/skills/humanize-docs/references/core-transformations.md +368 -0
  84. package/skills/skills/humanize-docs/references/detection-patterns.md +400 -0
  85. package/skills/skills/humanize-docs/references/examples-gallery.md +374 -0
  86. package/skills/skills/imagine/SKILL.md +190 -0
  87. package/skills/skills/imagine/references/artstyle-corporate-memphis.md +625 -0
  88. package/skills/skills/imagine/references/artstyle-crewdson-hyperrealism.md +295 -0
  89. package/skills/skills/imagine/references/artstyle-iphone-social-media.md +426 -0
  90. package/skills/skills/imagine/references/artstyle-sciencesaru.md +276 -0
  91. package/skills/skills/pre-deploy-checklist/README.md +26 -0
  92. package/skills/skills/pre-deploy-checklist/SKILL.md +153 -0
  93. package/skills/skills/pre-deploy-checklist/references/checklist-categories.md +174 -0
  94. package/skills/skills/pre-deploy-checklist/references/domain-prompts.md +216 -0
  95. package/skills/skills/prompt-engineering/SKILL.md +209 -0
  96. package/skills/skills/prompt-engineering/references/advanced-combinations.md +444 -0
  97. package/skills/skills/prompt-engineering/references/chain-of-thought.md +140 -0
  98. package/skills/skills/prompt-engineering/references/decision_matrix.md +220 -0
  99. package/skills/skills/prompt-engineering/references/few-shot.md +346 -0
  100. package/skills/skills/prompt-engineering/references/json-format.md +270 -0
  101. package/skills/skills/prompt-engineering/references/natural-language.md +420 -0
  102. package/skills/skills/prompt-engineering/references/pitfalls.md +365 -0
  103. package/skills/skills/prompt-engineering/references/prompt-chaining.md +498 -0
  104. package/skills/skills/prompt-engineering/references/react.md +108 -0
  105. package/skills/skills/prompt-engineering/references/self-consistency.md +322 -0
  106. package/skills/skills/prompt-engineering/references/tree-of-thoughts.md +386 -0
  107. package/skills/skills/prompt-engineering/references/xml-format.md +220 -0
  108. package/skills/skills/prompt-engineering/references/yaml-format.md +488 -0
  109. package/skills/skills/prompt-engineering/references/zero-shot.md +74 -0
  110. package/skills/skills/quick-spec/SKILL.md +280 -0
  111. package/skills/skills/quick-spec/assets/tech-spec-template.md +74 -0
  112. package/skills/skills/quick-spec/references/step-01-understand.md +189 -0
  113. package/skills/skills/quick-spec/references/step-02-investigate.md +144 -0
  114. package/skills/skills/quick-spec/references/step-03-generate.md +128 -0
  115. package/skills/skills/quick-spec/references/step-04-review.md +173 -0
  116. package/skills/skills/quick-spec/tests/__pycache__/test_skill.cpython-314-pytest-9.0.2.pyc +0 -0
  117. package/skills/skills/quick-spec/tests/test_scenarios.md +83 -0
  118. package/skills/skills/quick-spec/tests/test_skill.py +136 -0
  119. package/skills/skills/readme-expert/SKILL.md +538 -0
  120. package/skills/skills/readme-expert/knowledge/INDEX.md +192 -0
  121. package/skills/skills/readme-expert/knowledge/application/quality-standards.md +470 -0
  122. package/skills/skills/readme-expert/knowledge/application/script-executor.md +604 -0
  123. package/skills/skills/readme-expert/knowledge/application/template-library.md +822 -0
  124. package/skills/skills/readme-expert/knowledge/foundation/codebase-scanner.md +361 -0
  125. package/skills/skills/readme-expert/knowledge/foundation/validation-checklist.md +481 -0
  126. package/skills/skills/red-teaming/SKILL.md +321 -0
  127. package/skills/skills/red-teaming/references/ai-llm-redteam.md +517 -0
  128. package/skills/skills/red-teaming/references/attack-techniques.md +410 -0
  129. package/skills/skills/red-teaming/references/cybersecurity-redteam.md +383 -0
  130. package/skills/skills/red-teaming/references/tools-frameworks.md +446 -0
  131. package/skills/skills/releasing/.skillkit-mode +1 -0
  132. package/skills/skills/releasing/SKILL.md +225 -0
  133. package/skills/skills/releasing/references/version-detection.md +108 -0
  134. package/skills/skills/screenwriter/SKILL.md +273 -0
  135. package/skills/skills/screenwriter/references/advanced-techniques.md +216 -0
  136. package/skills/skills/screenwriter/references/pipeline-integration.md +266 -0
  137. package/skills/skills/skillkit/.claude/settings.local.json +7 -0
  138. package/skills/skills/skillkit/.claude-plugin/plugin.json +27 -0
  139. package/skills/skills/skillkit/CHANGELOG.md +484 -0
  140. package/skills/skills/skillkit/SKILL.md +511 -0
  141. package/skills/skills/skillkit/commands/skillkit.md +6 -0
  142. package/skills/skills/skillkit/commands/validate-plan.md +6 -0
  143. package/skills/skills/skillkit/commands/verify.md +6 -0
  144. package/skills/skills/skillkit/knowledge/INDEX.md +352 -0
  145. package/skills/skills/skillkit/knowledge/application/09-case-studies.md +257 -0
  146. package/skills/skills/skillkit/knowledge/application/10-technical-architecture.md +324 -0
  147. package/skills/skills/skillkit/knowledge/application/11-adoption-strategy.md +267 -0
  148. package/skills/skills/skillkit/knowledge/application/12-testing-and-validation.md +276 -0
  149. package/skills/skills/skillkit/knowledge/application/13-competitive-landscape.md +198 -0
  150. package/skills/skills/skillkit/knowledge/foundation/01-why-skills-exist.md +246 -0
  151. package/skills/skills/skillkit/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  152. package/skills/skills/skillkit/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  153. package/skills/skills/skillkit/knowledge/foundation/04-hybrid-patterns.md +308 -0
  154. package/skills/skills/skillkit/knowledge/foundation/05-token-economics.md +275 -0
  155. package/skills/skills/skillkit/knowledge/foundation/06-platform-constraints.md +237 -0
  156. package/skills/skills/skillkit/knowledge/foundation/07-security-concerns.md +322 -0
  157. package/skills/skills/skillkit/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  158. package/skills/skills/skillkit/knowledge/plugin-guide.md +614 -0
  159. package/skills/skills/skillkit/knowledge/tools/14-validation-tools-guide.md +150 -0
  160. package/skills/skills/skillkit/knowledge/tools/15-cost-tools-guide.md +157 -0
  161. package/skills/skills/skillkit/knowledge/tools/16-security-tools-guide.md +122 -0
  162. package/skills/skills/skillkit/knowledge/tools/17-pattern-tools-guide.md +161 -0
  163. package/skills/skills/skillkit/knowledge/tools/18-decision-helper-guide.md +243 -0
  164. package/skills/skills/skillkit/knowledge/tools/19-test-generator-guide.md +275 -0
  165. package/skills/skills/skillkit/knowledge/tools/20-split-skill-guide.md +149 -0
  166. package/skills/skills/skillkit/knowledge/tools/21-quality-scorer-guide.md +226 -0
  167. package/skills/skills/skillkit/knowledge/tools/22-migration-helper-guide.md +356 -0
  168. package/skills/skills/skillkit/knowledge/tools/23-subagent-creation-guide.md +448 -0
  169. package/skills/skills/skillkit/knowledge/tools/24-behavioral-testing-guide.md +122 -0
  170. package/skills/skills/skillkit/references/proposal-generation.md +982 -0
  171. package/skills/skills/skillkit/references/rationalization-catalog.md +75 -0
  172. package/skills/skills/skillkit/references/research-methodology.md +661 -0
  173. package/skills/skills/skillkit/references/section-2-full-creation-workflow.md +452 -0
  174. package/skills/skills/skillkit/references/section-3-validation-workflow-existing-skill.md +63 -0
  175. package/skills/skills/skillkit/references/section-4-decision-workflow-skills-vs-subagents.md +64 -0
  176. package/skills/skills/skillkit/references/section-5-migration-workflow-doc-to-skill.md +58 -0
  177. package/skills/skills/skillkit/references/section-6-subagent-creation-workflow.md +499 -0
  178. package/skills/skills/skillkit/references/section-7-knowledge-reference-map.md +72 -0
  179. package/skills/skills/skillkit/scripts/__pycache__/decision_helper.cpython-314.pyc +0 -0
  180. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-312.pyc +0 -0
  181. package/skills/skills/skillkit/scripts/__pycache__/quick_validate.cpython-314.pyc +0 -0
  182. package/skills/skills/skillkit/scripts/__pycache__/test_generator.cpython-314-pytest-9.0.2.pyc +0 -0
  183. package/skills/skills/skillkit/scripts/decision_helper.py +799 -0
  184. package/skills/skills/skillkit/scripts/init_skill.py +400 -0
  185. package/skills/skills/skillkit/scripts/init_subagent.py +231 -0
  186. package/skills/skills/skillkit/scripts/migration_helper.py +669 -0
  187. package/skills/skills/skillkit/scripts/package_skill.py +211 -0
  188. package/skills/skills/skillkit/scripts/pattern_detector.py +381 -0
  189. package/skills/skills/skillkit/scripts/pattern_detector_new.py +382 -0
  190. package/skills/skills/skillkit/scripts/pressure_tester.py +157 -0
  191. package/skills/skills/skillkit/scripts/quality_scorer.py +999 -0
  192. package/skills/skills/skillkit/scripts/quick_validate.py +100 -0
  193. package/skills/skills/skillkit/scripts/security_scanner.py +474 -0
  194. package/skills/skills/skillkit/scripts/split_skill.py +540 -0
  195. package/skills/skills/skillkit/scripts/test_generator.py +695 -0
  196. package/skills/skills/skillkit/scripts/token_estimator.py +493 -0
  197. package/skills/skills/skillkit/scripts/utils/__init__.py +49 -0
  198. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  199. package/skills/skills/skillkit/scripts/utils/__pycache__/__init__.cpython-314.pyc +0 -0
  200. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-312.pyc +0 -0
  201. package/skills/skills/skillkit/scripts/utils/__pycache__/budget_tracker.cpython-314.pyc +0 -0
  202. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-312.pyc +0 -0
  203. package/skills/skills/skillkit/scripts/utils/__pycache__/output_formatter.cpython-314.pyc +0 -0
  204. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-312.pyc +0 -0
  205. package/skills/skills/skillkit/scripts/utils/__pycache__/reference_validator.cpython-314.pyc +0 -0
  206. package/skills/skills/skillkit/scripts/utils/budget_tracker.py +388 -0
  207. package/skills/skills/skillkit/scripts/utils/output_formatter.py +263 -0
  208. package/skills/skills/skillkit/scripts/utils/reference_validator.py +401 -0
  209. package/skills/skills/skillkit/scripts/validate_skill.py +594 -0
  210. package/skills/skills/skillkit/tests/test_behavioral.py +39 -0
  211. package/skills/skills/skillkit/tests/test_scenarios.md +83 -0
  212. package/skills/skills/skillkit/tests/test_skill.py +136 -0
  213. package/skills/skills/skillkit-help/SKILL.md +81 -0
  214. package/skills/skills/skillkit-help/knowledge/application/09-case-studies.md +257 -0
  215. package/skills/skills/skillkit-help/knowledge/application/12-testing-and-validation.md +276 -0
  216. package/skills/skills/skillkit-help/knowledge/foundation/01-why-skills-exist.md +246 -0
  217. package/skills/skills/skillkit-help/knowledge/foundation/02-skills-vs-subagents-comparison.md +312 -0
  218. package/skills/skills/skillkit-help/knowledge/foundation/03-skills-vs-subagents-decision-tree.md +346 -0
  219. package/skills/skills/skillkit-help/knowledge/foundation/06-platform-constraints.md +237 -0
  220. package/skills/skills/skillkit-help/knowledge/foundation/08-when-not-to-use-skills.md +270 -0
  221. package/skills/skills/skillkit-help/template/SKILL.md +52 -0
  222. package/skills/skills/social-media-seo/SKILL.md +278 -0
  223. package/skills/skills/social-media-seo/databases/caption-styles.csv +31 -0
  224. package/skills/skills/social-media-seo/databases/engagement-tactics.csv +16 -0
  225. package/skills/skills/social-media-seo/databases/hashtag-strategies.csv +21 -0
  226. package/skills/skills/social-media-seo/databases/hook-formulas.csv +26 -0
  227. package/skills/skills/social-media-seo/databases/keyword-clusters.csv +11 -0
  228. package/skills/skills/social-media-seo/databases/thread-structures.csv +26 -0
  229. package/skills/skills/social-media-seo/databases/viral-patterns.csv +21 -0
  230. package/skills/skills/social-media-seo/references/analytics-guide.md +321 -0
  231. package/skills/skills/social-media-seo/references/instagram-seo.md +235 -0
  232. package/skills/skills/social-media-seo/references/threads-seo.md +305 -0
  233. package/skills/skills/social-media-seo/references/x-twitter-seo.md +337 -0
  234. package/skills/skills/social-media-seo/scripts/query_database.py +191 -0
  235. package/skills/skills/storyteller/SKILL.md +241 -0
  236. package/skills/skills/storyteller/references/transformation-methodology.md +293 -0
  237. package/skills/skills/storyteller/references/visual-vocabulary.md +177 -0
  238. package/skills/skills/thread-pro/SKILL.md +162 -0
  239. package/skills/skills/thread-pro/anti-ai-patterns.md +120 -0
  240. package/skills/skills/thread-pro/hook-formulas.md +138 -0
  241. package/skills/skills/thread-pro/references/anti-ai-patterns.md +120 -0
  242. package/skills/skills/thread-pro/references/hook-formulas.md +138 -0
  243. package/skills/skills/thread-pro/references/thread-structures.md +240 -0
  244. package/skills/skills/thread-pro/references/voice-injection.md +130 -0
  245. package/skills/skills/thread-pro/thread-structures.md +240 -0
  246. package/skills/skills/thread-pro/voice-injection.md +130 -0
  247. package/skills/skills/tinkering/SKILL.md +251 -0
  248. package/skills/skills/tinkering/references/graduation-checklist.md +100 -0
  249. package/skills/skills/validate-plan/.skillkit-mode +1 -0
  250. package/skills/skills/validate-plan/SKILL.md +406 -0
  251. package/skills/skills/validate-plan/references/dry-principles.md +251 -0
  252. package/skills/skills/validate-plan/references/gap-analysis-guide.md +320 -0
  253. package/skills/skills/validate-plan/references/tdd-patterns.md +413 -0
  254. package/skills/skills/validate-plan/references/yagni-checklist.md +330 -0
  255. package/skills/skills/verify-before-ship/.skillkit-mode +1 -0
  256. package/skills/skills/verify-before-ship/SKILL.md +116 -0
  257. package/skills/skills/verify-before-ship/references/anti-rationalization.md +212 -0
  258. package/skills/skills/verify-before-ship/references/verification-gates.md +305 -0
  259. package/skills-manifest.json +8 -2
  260. package/src/banner.js +1 -1
  261. package/src/cli.js +15 -4
  262. package/src/install.js +45 -29
  263. package/src/install.test.js +75 -7
  264. package/src/picker.js +15 -4
  265. package/src/picker.test.js +36 -1
  266. package/src/scope.js +8 -39
  267. package/src/scope.test.js +9 -13
  268. package/src/tools.js +76 -0
  269. package/src/tools.test.js +80 -0
@@ -0,0 +1,426 @@
1
+ ## iPhone/Smartphone Photography for Social Media
2
+
3
+ ### Overview
4
+
5
+ Smartphone photography has developed a distinctive aesthetic defined by computational processing, small-sensor characteristics, and the cultural conventions of social media platforms. This style feels **authentically user-generated**—casual, candid, and imperfect in ways that signal "real person taking real photos" rather than professional production.
6
+
7
+ **Core aesthetic DNA:**
8
+ - Deep depth of field (everything in focus) unless using Portrait mode
9
+ - Computational processing artifacts (Smart HDR tone mapping, Deep Fusion texture)
10
+ - Warm color bias with prioritized skin tone exposure
11
+ - Casual, imperfect framing suggesting spontaneous capture
12
+ - Natural lighting situations (window light, harsh flash, fluorescent)
13
+ - Social media editing conventions (VSCO filters, lifted blacks, muted tones)
14
+
15
+ ---
16
+
17
+ ### iPhone Computational Photography Characteristics
18
+
19
+ #### Deep Fusion Technology
20
+
21
+ Deep Fusion is Apple's neural processing system that captures **9 images** before and during shutter press, then performs pixel-by-pixel analysis to select optimal data from each frame.
22
+
23
+ **Visual Characteristics:**
24
+ - Enhanced texture detail (especially visible in hair, fabric, skin pores, fur, grass)
25
+ - Computational noise reduction with distinctive smoothing pattern
26
+ - Micro-contrast preservation without over-sharpening
27
+ - Clean edges around subjects
28
+
29
+ **Activation Context:**
30
+ - Works in medium to low light (indoor, overcast)
31
+ - NOT active in bright light or very dark conditions (switches to Night Mode)
32
+ - Functions on Wide (1x) and Telephoto, not Ultra Wide
33
+
34
+ **Effective Prompt Terms:**
35
+ - `Deep Fusion texture enhancement`
36
+ - `enhanced fine detail on fabrics and hair`
37
+ - `computational texture processing`
38
+ - `iPhone texture detail`
39
+
40
+ ---
41
+
42
+ #### Smart HDR Characteristics
43
+
44
+ Smart HDR uses semantic segmentation to identify faces, sky, and shadows as separate regions, applying **localized tone mapping** to optimize each independently.
45
+
46
+ **Distinctive Visual Characteristics:**
47
+
48
+ | Element | iPhone Smart HDR Behavior |
49
+ |---------|--------------------------|
50
+ | **Highlights** | Aggressive sky preservation, pulled-down exposure to prevent clipping |
51
+ | **Shadows** | Significant lifting to reveal detail, sometimes too aggressive |
52
+ | **Faces** | Prioritized exposure over background |
53
+ | **Overall** | Can create "candy-colored" or HDR-processed appearance |
54
+
55
+ **Artifacts That Signal Smart HDR:**
56
+ - Darker faces when prioritizing sky detail
57
+ - Lifted shadows creating "heavier" feel
58
+ - Halos around high-contrast edges
59
+ - Overly vivid colors in some conditions
60
+
61
+ **Effective Prompt Terms:**
62
+ - `Smart HDR tone mapping`
63
+ - `lifted shadows with preserved highlights`
64
+ - `local tone mapping per region`
65
+ - `iPhone HDR processing`
66
+ - `face exposure prioritized over background`
67
+
68
+ ---
69
+
70
+ #### Portrait Mode and Computational Bokeh
71
+
72
+ Portrait mode uses depth detection (dual cameras, LiDAR, or ML) to simulate shallow depth of field impossible with small sensors.
73
+
74
+ **Characteristic Bokeh Artifacts:**
75
+ - **Hair fringing**: Hard lines where blur kicks in, hair strands incorrectly classified
76
+ - **Edge detection issues**: Glasses, ears, fine details sometimes blurred incorrectly
77
+ - **Foreground/background confusion**: Elements near subject inconsistently sharp/blurred
78
+ - **Bokeh shape**: Can produce elliptical shapes vs circular optical bokeh
79
+ - **Point light rendering**: May show incorrect color or shape
80
+
81
+ **What Distinguishes It from Optical Bokeh:**
82
+ - Synthetic blur gradient rather than natural falloff
83
+ - Hard edge transitions around subject
84
+ - More uniform blur disc quality (older models) or artificially sharp edges (newer)
85
+
86
+ **Effective Prompt Terms:**
87
+ - `iPhone Portrait mode`
88
+ - `computational depth blur`
89
+ - `synthetic bokeh with hard subject edges`
90
+ - `simulated shallow depth of field`
91
+ - `Portrait mode edge artifacts`
92
+ - `hair fringing at blur transition`
93
+
94
+ ---
95
+
96
+ #### Night Mode Qualities
97
+
98
+ Night Mode captures multiple exposures (typically ~1 second each) and computationally stacks them to reduce noise.
99
+
100
+ **Visual Characteristics:**
101
+ - **Dramatically brighter** than actual scene
102
+ - Smooth, refined noise reduction through multi-frame stacking
103
+ - **Overly smoothed water** and motion-blurred moving elements
104
+ - Enhanced color accuracy under artificial lighting
105
+ - Sky may appear grayish instead of black
106
+ - Moving subjects show ghosting/blur
107
+
108
+ **Effective Prompt Terms:**
109
+ - `iPhone Night mode`
110
+ - `multi-frame stacked exposure`
111
+ - `computational long exposure`
112
+ - `bright night mode rendering`
113
+ - `smooth water from temporal stacking`
114
+ - `ghosting on moving subjects`
115
+
116
+ ---
117
+
118
+ ### iPhone Color Science
119
+
120
+ **Apple's Characteristic Processing:**
121
+
122
+ | Aspect | iPhone Tendency |
123
+ |--------|-----------------|
124
+ | **Color temperature** | Warm bias toward orange-green spectrum |
125
+ | **Skin tones** | Warmer, sometimes yellowish/tanned, prioritized exposure |
126
+ | **Saturation** | Historically conservative; more aggressive on iPhone 12+ |
127
+ | **Contrast** | Moderate; Smart HDR creates localized contrast manipulation |
128
+
129
+ **Comparison to Other Smartphones:**
130
+ - **Pixel**: Cooler temperature, aggressive HDR+, underexposed highlights
131
+ - **Samsung**: Bright, saturated, overly sharp, punchy colors
132
+ - **iPhone**: Warm tones, conservative processing, skin-tone priority
133
+
134
+ **Effective Prompt Terms:**
135
+ - `warm iPhone color bias`
136
+ - `orange-green color spectrum preference`
137
+ - `prioritized skin tone exposure`
138
+ - `Apple color science`
139
+ - `warm, slightly saturated natural colors`
140
+
141
+ ---
142
+
143
+ ### Sensor and Lens Characteristics
144
+
145
+ **Small Sensor Distinctive Look:**
146
+
147
+ | Characteristic | Visual Result |
148
+ |----------------|---------------|
149
+ | **Deep DOF** | Everything sharp front to back (no natural bokeh) |
150
+ | **Noise in shadows** | Visible color noise pattern, smoothing creates "phone noise" texture |
151
+ | **Highlight clipping** | Limited dynamic range, bright areas clip more easily |
152
+ | **Point lights** | Incorrect intensity/color due to pixel saturation |
153
+
154
+ **Lens Artifacts:**
155
+
156
+ | Lens | Characteristics |
157
+ |------|-----------------|
158
+ | **Wide (1x)** | ~24mm equivalent, barrel distortion (center bulge), enabled lens correction |
159
+ | **Ultra Wide (0.5x)** | 13mm equivalent, significant edge distortion/fisheye, chromatic aberration, lower low-light performance |
160
+ | **Telephoto** | Reduced facial distortion, narrower aperture, quality degrades beyond optical zoom |
161
+
162
+ **Common Phone-Specific Artifacts:**
163
+ - **Rolling shutter**: Fast-moving objects appear wobbly, distorted
164
+ - **Lens flare**: Distinctive circular patterns, white/pink/purple rings, green ghosts near bright lights
165
+ - **Perspective distortion**: Wide-angle facial distortion when close, stretched appearance at frame edges
166
+
167
+ **Effective Prompt Terms:**
168
+ - `deep smartphone depth of field`
169
+ - `small sensor noise pattern`
170
+ - `wide-angle barrel distortion`
171
+ - `ultrawide edge softness and fisheye`
172
+ - `characteristic phone lens flare`
173
+ - `rolling shutter motion artifacts`
174
+ - `everything in focus front to back`
175
+
176
+ ---
177
+
178
+ ### Social Media Photography Aesthetic Markers
179
+
180
+ #### What Makes Content Feel Authentically User-Generated
181
+
182
+ **Imperfect Composition:**
183
+ - Slightly off-center subjects
184
+ - Tilted horizons
185
+ - Awkward framing (cutting off feet, too tight, too loose)
186
+ - First-person perspectives (looking down, hands in frame)
187
+ - Phone or fingers visible in mirror selfies
188
+
189
+ **Natural Lighting Signatures:**
190
+ - Window light from one side creating soft shadows
191
+ - Harsh overhead bathroom/kitchen lighting
192
+ - Fluorescent store lighting (slightly unflattering)
193
+ - Cloudy day muted colors
194
+ - Golden hour warmth (not studio-perfect)
195
+ - Direct flash creating stark highlights against dark backgrounds
196
+
197
+ **Technical "Flaws" That Signal Authenticity:**
198
+ - Slight blur or soft focus
199
+ - Digital noise/grain in low light
200
+ - Motion blur
201
+ - Oversaturated or slightly washed-out colors
202
+ - Red-eye from flash
203
+
204
+ **Environmental Cues:**
205
+ - Cluttered, lived-in backgrounds
206
+ - Messy desks, scattered items, unmade beds
207
+ - Other people partially visible
208
+ - Everyday objects (water bottles, coffee mugs, shopping carts)
209
+ - Slightly dirty mirrors
210
+
211
+ ---
212
+
213
+ #### Authentic vs Polished Content
214
+
215
+ | UGC/Authentic | Professional/Polished |
216
+ |---------------|----------------------|
217
+ | Imperfect lighting | Controlled lighting |
218
+ | Candid expressions (mid-blink, mid-sentence) | Posed, prepared expressions |
219
+ | Messy real-life environments | Styled, clean environments |
220
+ | Phone camera quality | Professional camera clarity |
221
+ | Off-center framing | Perfect composition |
222
+ | Ordinary locations | Studio or curated locations |
223
+ | Natural skin with flaws | Retouched skin |
224
+ | Spontaneous moments | Planned scenarios |
225
+
226
+ **What Breaks the Authentic Illusion:**
227
+ - Too-perfect lighting with no natural shadows
228
+ - Obvious studio setup
229
+ - Overly posed subjects
230
+ - Waxy, shiny skin (common AI artifact)
231
+ - Oversaturated colors
232
+ - Perfect symmetry
233
+ - Spotless backgrounds
234
+
235
+ ---
236
+
237
+ #### VSCO/Instagram Editing Aesthetic
238
+
239
+ **The "Instagram Look" Baseline:**
240
+ - Lower saturation for muted colors
241
+ - Lifted shadows/blacks (faded vintage look)
242
+ - Subtle grain addition
243
+ - Warmth adjustment
244
+ - Lower contrast for softer appearance
245
+ - Filters applied at 50-70% strength
246
+
247
+ **Popular Filter Aesthetics:**
248
+ - **VSCO A4/A5/A6**: Warm, vintage, muted tones, subtle color shifts
249
+ - **Vibrant Classic (C1)**: Rich, saturated colors
250
+ - **M5**: Understated retro, brighter tones
251
+ - **B1**: Classic black and white with good contrast
252
+
253
+ **Effective Prompt Terms:**
254
+ - `VSCO filter aesthetic`
255
+ - `lifted blacks, faded film look`
256
+ - `muted Instagram colors`
257
+ - `subtle film grain`
258
+ - `warm tones, low contrast`
259
+ - `vintage Instagram edit`
260
+
261
+ ---
262
+
263
+ ### Content Type Visual Markers
264
+
265
+ | Type | Visual Markers | Editing Style |
266
+ |------|---------------|---------------|
267
+ | **Food** | Overhead/3/4 angle, natural window light, props, lived-in background | Warm tones, light editing, enhanced texture |
268
+ | **Lifestyle** | Candid moments, everyday settings, routine documentation | Consistent filter, warm palette, soft contrast |
269
+ | **Travel** | Tourist locations, action shots, golden hour | Enhanced blues/oranges, vintage fade |
270
+ | **Fashion** | Street style, mirror selfies, outfit details | Vintage look, warm colors, grain |
271
+ | **Fitness** | Progress pics, gym environments, workout action | Bright, high contrast, energetic |
272
+ | **Selfies** | Direct eye contact, slightly elevated angle, good lighting | Smooth skin, warm tones, brightness boost |
273
+
274
+ ---
275
+
276
+ ### AI Prompt Construction Framework
277
+
278
+ **Core Strategy: Describe Imperfections Specifically**
279
+
280
+ AI image generators default to perfection. For authentic smartphone aesthetic, explicitly request the imperfections that signal "real person, real moment."
281
+
282
+ **Layered Prompt Structure:**
283
+
284
+ ```
285
+ [DEVICE ANCHOR] + [QUALITY MARKERS] + [SUBJECT POSE] + [SETTING] + [LIGHTING] + [IMPERFECTIONS] + [EDIT STYLE]
286
+ ```
287
+
288
+ **Layer Definitions:**
289
+
290
+ 1. **Device Anchor**: `iPhone photo`, `smartphone camera`, `taken with phone`, `candid snapshot`
291
+ 2. **Quality Markers**: `amateur photography`, `casual photo`, `quick snap`
292
+ 3. **Subject Pose**: `unposed`, `caught mid-moment`, `candid expression`
293
+ 4. **Setting**: Everyday location with realistic clutter
294
+ 5. **Lighting**: Natural, harsh flash, or fluorescent
295
+ 6. **Imperfections**: Blur, grain, awkward framing, noise
296
+ 7. **Edit Style**: VSCO aesthetic, lifted blacks, muted tones
297
+
298
+ ---
299
+
300
+ ### Complete Example Prompts
301
+
302
+ **Example 1: Mirror Selfie**
303
+ ```
304
+ Casual iPhone mirror selfie in a slightly dirty bathroom mirror. The phone is visible in frame, held at chest level. Harsh overhead fluorescent lighting creates unflattering shadows. Subject wearing everyday clothes, messy hair, natural expression. Slight motion blur from unsteady hand. Deep smartphone depth of field with everything in focus. Warm iPhone color bias on skin tones. Small toiletries and clutter visible on counter in reflection. Quick snapshot aesthetic, not posed or polished.
305
+ ```
306
+
307
+ **Example 2: Food Photo**
308
+ ```
309
+ Instagram food photo taken with iPhone, overhead angle of a messy breakfast plate on a wooden table. Natural window light from one side creates soft shadows. Coffee cup, crumpled napkin, and phone visible at edge of frame. VSCO filter aesthetic with warm tones, slightly lifted blacks, muted saturation. Deep Fusion texture enhancement visible on food surfaces. Casual composition, not perfectly centered. Lived-in kitchen background slightly out of focus in the distance. Authentic UGC restaurant content feel.
310
+ ```
311
+
312
+ **Example 3: Night Out with Flash**
313
+ ```
314
+ Candid smartphone photo of a young woman laughing at a dimly lit bar. Direct camera flash creates stark highlight on her face against dark background. Slight red-eye effect visible. Other people partially visible and blurred at edges of frame. She's caught mid-gesture, genuine expression. Digital noise visible in shadow areas. Warm skin tones from iPhone processing. Slightly awkward framing cuts off top of friend's head at edge. Party snapshot aesthetic, taken with phone, amateur photography quality.
315
+ ```
316
+
317
+ **Example 4: Portrait Mode Attempt**
318
+ ```
319
+ iPhone Portrait mode photo of a person standing in a park. Computational bokeh creates synthetic blur in background with characteristic edge artifacts—hair strands show hard blur transition line, slight fringing around ears. Subject in sharp focus with enhanced Deep Fusion texture on clothing fabric. Warm afternoon light, slightly warm color bias on skin. Bokeh shows slightly elliptical highlight shapes. Background trees and people blurred but with tell-tale computational depth estimation. Natural, unposed expression, slightly off-center framing.
320
+ ```
321
+
322
+ **Example 5: Golden Hour Selfie**
323
+ ```
324
+ Golden hour selfie taken with smartphone, warm sunset light illuminating face from the side. Slightly elevated camera angle common to selfies. Natural skin with visible pores, not retouched. Instagram edit aesthetic with lifted shadows, warm orange tones, subtle grain. Deep depth of field keeps background buildings visible but warm light creates natural glow. Casual expression, slight squint from sun. Characteristic iPhone warm color bias. Wind-blown hair, candid moment feel.
325
+ ```
326
+
327
+ **Example 6: Lifestyle/Home Content**
328
+ ```
329
+ Casual smartphone photo of someone reading on a couch in their apartment. Natural window light from one direction creates soft shadows. Living room background shows realistic clutter—throw pillows askew, books stacked, water bottle on coffee table. Subject looks relaxed, natural posture, not posed for camera. iPhone Smart HDR visible in lifted shadows and balanced highlights from window. Warm color tones, slightly muted VSCO-style edit with lifted blacks. Everything in focus front to back, deep smartphone DOF. Authentic lifestyle content feel.
330
+ ```
331
+
332
+ ---
333
+
334
+ ### Prompting for Smartphone vs Professional Camera Aesthetic
335
+
336
+ **Terms That Create Smartphone Feel:**
337
+ - `phone photo`, `smartphone camera`, `taken with iPhone`
338
+ - `candid`, `snapshot`, `quick snap`
339
+ - `amateur photography`, `casual photo`
340
+ - `slightly grainy`, `digital noise`
341
+ - `deep depth of field`, `everything in focus`
342
+ - `natural window light`, `harsh flash`, `fluorescent lighting`
343
+ - `slight blur`, `motion blur`, `soft focus`
344
+ - `off-center framing`, `awkward angle`
345
+
346
+ **Terms to AVOID (Create Professional Look):**
347
+ - `professional photography`
348
+ - `studio lighting`
349
+ - `perfect composition`
350
+ - `high-end camera`
351
+ - `DSLR`, `mirrorless`
352
+ - `cinematic`, `dramatic lighting`
353
+ - `editorial style`
354
+ - `fashion photography`
355
+
356
+ **Countering AI's Perfection Tendency:**
357
+ - Add `natural skin texture with imperfections` (prevents waxy skin)
358
+ - Specify `slightly desaturated` or `muted colors` (prevents oversaturation)
359
+ - Request `off-center` or `asymmetrical framing` (prevents perfect symmetry)
360
+ - Include specific imperfections: `slight tilt`, `casual pose`, `cluttered background`
361
+
362
+ ---
363
+
364
+ ### Technical Vocabulary Quick Reference
365
+
366
+ **Computational Photography Terms:**
367
+ `Deep Fusion texture enhancement` | `Smart HDR tone mapping` | `lifted shadows with preserved highlights` | `local tone mapping` | `computational noise reduction` | `iPhone Portrait mode` | `computational depth blur` | `synthetic bokeh` | `Night mode stacking`
368
+
369
+ **Color Science Terms:**
370
+ `warm iPhone color bias` | `orange-green spectrum preference` | `prioritized skin tone exposure` | `Apple color science` | `warm natural tones`
371
+
372
+ **Sensor/Lens Terms:**
373
+ `deep smartphone depth of field` | `small sensor noise pattern` | `wide-angle barrel distortion` | `ultrawide edge softness` | `phone lens flare` | `rolling shutter` | `everything in focus`
374
+
375
+ **Imperfection Terms:**
376
+ `slightly blurry` | `soft focus` | `awkward angle` | `tilted horizon` | `off-center framing` | `too tight framing` | `harsh flash` | `overexposed` | `digital noise` | `grain` | `motion blur`
377
+
378
+ **Environment Terms:**
379
+ `cluttered background` | `messy desk/room` | `everyday location` | `lived-in space` | `ordinary setting` | `other people visible in background`
380
+
381
+ **Edit Style Terms:**
382
+ `VSCO filter aesthetic` | `lifted blacks` | `muted colors` | `subtle grain` | `warm tones` | `low contrast` | `faded film look` | `Instagram edit`
383
+
384
+ ---
385
+
386
+ ### Best Practices for Consistency
387
+
388
+ 1. **Always anchor with device**: Include "iPhone photo," "smartphone camera," or "taken with phone"
389
+ 2. **Specify imperfections**: Explicitly describe 2-3 flaws (blur, noise, framing)
390
+ 3. **Choose lighting type**: Window light, harsh flash, or fluorescent—be specific
391
+ 4. **Include environment details**: Clutter, everyday objects, lived-in spaces
392
+ 5. **Lock color treatment**: "Warm tones," "VSCO aesthetic," "lifted blacks" consistently
393
+ 6. **Avoid perfection triggers**: No "professional," "studio," "perfect," or "cinematic"
394
+ 7. **Request natural poses**: "Unposed," "candid," "caught mid-moment"
395
+ 8. **Maintain DOF**: Emphasize "deep depth of field" unless using Portrait mode
396
+
397
+ ---
398
+
399
+ ### How This Style Differs from Others
400
+
401
+ | Aspect | iPhone/Smartphone | Crewdson Hyperrealism | Professional Studio |
402
+ |--------|-------------------|----------------------|-------------------|
403
+ | **DOF** | Deep, everything sharp | Infinite, composited sharp | Controlled, often shallow |
404
+ | **Lighting** | Available, flash, natural | Theatrical, warm/cool contrast | Controlled multi-source |
405
+ | **Processing** | Computational HDR, noise reduction | Cinematic color grading | Clean, accurate |
406
+ | **Composition** | Casual, imperfect | Meticulous, staged | Intentional, balanced |
407
+ | **Color** | Warm bias, saturation varies | Teal/orange, desaturated | Accurate or stylized |
408
+ | **Mood** | Authentic, everyday | Psychological, uncanny | Commercial or artistic |
409
+ | **Artifacts** | Computational bokeh, HDR halos | None (controlled) | None (controlled) |
410
+
411
+ ---
412
+
413
+ ## Summary: Key Differentiators Between Styles
414
+
415
+ | Dimension | Gregory Crewdson | iPhone Social Media |
416
+ |-----------|-----------------|-------------------|
417
+ | **Core aesthetic** | Theatrical hyperrealism | Authentic imperfection |
418
+ | **Production value** | Film-crew scale | Individual snapshot |
419
+ | **Lighting signature** | Warm/cool contrast, twilight | Natural or harsh flash |
420
+ | **Color palette** | Teal/orange, desaturated | Warm bias, VSCO muted |
421
+ | **Composition** | Perfectly staged tableaux | Casually imperfect |
422
+ | **Depth of field** | Infinite, hyper-sharp | Deep computational |
423
+ | **Mood** | Psychological mystery | Everyday authenticity |
424
+ | **Key prompt term** | "Gregory Crewdson style" | "iPhone photo, candid" |
425
+
426
+ Both styles represent opposite ends of a spectrum: Crewdson's work is maximally controlled and theatrical, while smartphone social media aesthetic is maximally casual and authentic-feeling. Effective AI prompting for either requires understanding and explicitly requesting their distinctive visual characteristics.