subhojyoti22 commited on
Commit
cacb049
·
verified ·
1 Parent(s): 450f68e

Delete actions/action_library_simple.json - repository cleanup

Browse files
Files changed (1) hide show
  1. actions/action_library_simple.json +0 -656
actions/action_library_simple.json DELETED
@@ -1,656 +0,0 @@
1
- {
2
- "version": "2.1",
3
- "description": "Theme & Style transformation action library with 10 orthogonal actions (9 THEME + 1 STYLE)",
4
- "design_philosophy": "Each action controls ONE specific dimension of theme/style transformation. Actions focus on BOLD, NOTICEABLE changes to scene setting (THEME) or artistic rendering (STYLE). Actions are composable (2-5 per transformation) and non-overlapping.",
5
- "actions": [
6
- {
7
- "id": "location_setting",
8
- "name": "Location Setting",
9
- "description": "Change the physical location/environment type only (where the scene takes place)",
10
- "category": "scene_level",
11
- "theme_style_category": "THEME",
12
- "parameters": {
13
- "source_location": {
14
- "type": "enum",
15
- "values": [
16
- "urban_city", "suburban_neighborhood", "rural_village", "industrial_zone", "commercial_district",
17
- "beach_coast", "tropical_island", "ocean_open_water", "underwater_reef", "arctic_ice",
18
- "forest_temperate", "jungle_tropical", "desert_sand", "mountain_rocky", "canyon_valley",
19
- "plains_grassland", "swamp_wetland", "cave_underground", "volcano_lava",
20
- "space_station", "alien_planet", "fantasy_castle", "medieval_town", "cyberpunk_city",
21
- "post_apocalyptic", "haunted_mansion", "temple_shrine", "palace_interior", "office_modern", "bedroom_interior"
22
- ],
23
- "required": true,
24
- "description": "Current physical location type"
25
- },
26
- "target_location": {
27
- "type": "enum",
28
- "values": [
29
- "urban_city", "suburban_neighborhood", "rural_village", "industrial_zone", "commercial_district",
30
- "beach_coast", "tropical_island", "ocean_open_water", "underwater_reef", "arctic_ice",
31
- "forest_temperate", "jungle_tropical", "desert_sand", "mountain_rocky", "canyon_valley",
32
- "plains_grassland", "swamp_wetland", "cave_underground", "volcano_lava",
33
- "space_station", "alien_planet", "fantasy_castle", "medieval_town", "cyberpunk_city",
34
- "post_apocalyptic", "haunted_mansion", "temple_shrine", "palace_interior", "office_modern", "bedroom_interior"
35
- ],
36
- "required": true,
37
- "description": "Desired physical location type"
38
- },
39
- "replace_mode": {
40
- "type": "enum",
41
- "values": ["partial", "complete"],
42
- "default": "complete",
43
- "description": "Partial blends old with new, complete fully replaces"
44
- },
45
- "preserve_foreground": {
46
- "type": "boolean",
47
- "default": true,
48
- "description": "Keep main subjects unchanged while transforming environment"
49
- },
50
- "description": {
51
- "type": "string",
52
- "required": true,
53
- "description": "Concise 5-10 word transformation summary",
54
- "max_words": 10,
55
- "examples": [
56
- "Transform city to tropical beach",
57
- "Change mountains to coastal setting"
58
- ]
59
- }
60
- },
61
- "does_not_handle": ["Architecture style", "Time period", "Mood", "Color palette", "Weather"],
62
- "example": {
63
- "source_location": "urban_city",
64
- "target_location": "beach_coast",
65
- "replace_mode": "complete",
66
- "preserve_foreground": true,
67
- "description": "Transform urban city street into tropical beach coastline"
68
- }
69
- },
70
- {
71
- "id": "architecture_style",
72
- "name": "Architecture Style",
73
- "description": "Change building/structure architectural style only (how buildings look)",
74
- "category": "scene_level",
75
- "theme_style_category": "THEME",
76
- "parameters": {
77
- "source_style": {
78
- "type": "enum",
79
- "values": [
80
- "modern_minimalist", "contemporary_glass", "brutalist_concrete", "art_deco_geometric",
81
- "victorian_ornate", "medieval_stone", "renaissance_classical", "baroque_elaborate",
82
- "japanese_traditional", "moroccan_islamic", "greek_classical", "roman_imperial",
83
- "gothic_cathedral", "industrial_warehouse", "steampunk_mechanical", "cyberpunk_neon",
84
- "futuristic_sleek", "organic_biomorphic", "fantasy_magical", "ruins_ancient"
85
- ],
86
- "required": true,
87
- "description": "Current architectural style"
88
- },
89
- "target_style": {
90
- "type": "enum",
91
- "values": [
92
- "modern_minimalist", "contemporary_glass", "brutalist_concrete", "art_deco_geometric",
93
- "victorian_ornate", "medieval_stone", "renaissance_classical", "baroque_elaborate",
94
- "japanese_traditional", "moroccan_islamic", "greek_classical", "roman_imperial",
95
- "gothic_cathedral", "industrial_warehouse", "steampunk_mechanical", "cyberpunk_neon",
96
- "futuristic_sleek", "organic_biomorphic", "fantasy_magical", "ruins_ancient"
97
- ],
98
- "required": true,
99
- "description": "Desired architectural style"
100
- },
101
- "detail_level": {
102
- "type": "enum",
103
- "values": ["minimal", "moderate", "ornate"],
104
- "default": "moderate",
105
- "description": "Level of architectural detail and ornamentation"
106
- },
107
- "material_type": {
108
- "type": "enum",
109
- "values": ["stone", "wood", "metal", "glass", "concrete", "brick", "marble", "mixed"],
110
- "default": "mixed",
111
- "description": "Primary building material"
112
- },
113
- "description": {
114
- "type": "string",
115
- "required": true,
116
- "description": "Concise 5-10 word transformation summary",
117
- "max_words": 10,
118
- "examples": [
119
- "Transform chalet to beach hut",
120
- "Change gothic to modern style"
121
- ]
122
- }
123
- },
124
- "does_not_handle": ["Location type", "Time period", "Mood", "Color palette"],
125
- "example": {
126
- "source_style": "modern_minimalist",
127
- "target_style": "victorian_ornate",
128
- "detail_level": "ornate",
129
- "material_type": "wood",
130
- "description": "Transform modern minimalist buildings into ornate Victorian architecture with wooden details"
131
- }
132
- },
133
- {
134
- "id": "time_period_era",
135
- "name": "Time Period Era",
136
- "description": "Change props, objects, and technology to match a historical/future era (when it exists)",
137
- "category": "scene_level",
138
- "theme_style_category": "THEME",
139
- "parameters": {
140
- "source_era": {
141
- "type": "enum",
142
- "values": [
143
- "prehistoric_stone_age", "ancient_classical", "medieval_dark_ages", "renaissance_1500s",
144
- "baroque_1700s", "victorian_1800s", "art_nouveau_1900s", "art_deco_1920s",
145
- "mid_century_1950s", "contemporary_2000s", "near_future_2050", "far_future_2200",
146
- "cyberpunk_dystopia", "steampunk_alternate", "solarpunk_green_future"
147
- ],
148
- "required": true,
149
- "description": "Current time period"
150
- },
151
- "target_era": {
152
- "type": "enum",
153
- "values": [
154
- "prehistoric_stone_age", "ancient_classical", "medieval_dark_ages", "renaissance_1500s",
155
- "baroque_1700s", "victorian_1800s", "art_nouveau_1900s", "art_deco_1920s",
156
- "mid_century_1950s", "contemporary_2000s", "near_future_2050", "far_future_2200",
157
- "cyberpunk_dystopia", "steampunk_alternate", "solarpunk_green_future"
158
- ],
159
- "required": true,
160
- "description": "Target time period"
161
- },
162
- "technology_level": {
163
- "type": "enum",
164
- "values": ["none", "low", "medium", "high", "advanced"],
165
- "default": "medium",
166
- "description": "Level of technological advancement"
167
- },
168
- "period_accuracy": {
169
- "type": "enum",
170
- "values": ["stylized", "historically_accurate"],
171
- "default": "stylized",
172
- "description": "Stylized for artistic effect vs historically accurate"
173
- },
174
- "description": {
175
- "type": "string",
176
- "required": true,
177
- "description": "Concise 5-10 word transformation summary",
178
- "max_words": 10,
179
- "examples": [
180
- "Add educational props and materials",
181
- "Replace modern with Victorian elements"
182
- ]
183
- }
184
- },
185
- "does_not_handle": ["Location", "Architecture style", "Mood", "Lighting", "Weather"],
186
- "example": {
187
- "source_era": "contemporary_2000s",
188
- "target_era": "victorian_1800s",
189
- "technology_level": "low",
190
- "period_accuracy": "stylized",
191
- "description": "Replace modern technology and objects with Victorian era props and 1800s period details"
192
- }
193
- },
194
- {
195
- "id": "time_of_day",
196
- "name": "Day/Night Theme Transformation",
197
- "description": "Transform scene between day and night with dramatic lighting and atmosphere changes. Creates BOLD, NOTICEABLE day→night or night→day transformation (not subtle lighting adjustment). Changes sun/moon position, sky color, shadow direction, and overall scene brightness.",
198
- "category": "temporal_environmental",
199
- "theme_style_category": "THEME",
200
- "parameters": {
201
- "source_time": {
202
- "type": "enum",
203
- "values": [
204
- "pre_dawn", "sunrise_golden", "morning_bright", "midday_overhead", "afternoon_warm",
205
- "golden_hour_sunset", "dusk_twilight", "blue_hour", "night_moonlit", "midnight_dark"
206
- ],
207
- "required": true,
208
- "description": "Current time of day"
209
- },
210
- "target_time": {
211
- "type": "enum",
212
- "values": [
213
- "pre_dawn", "sunrise_golden", "morning_bright", "midday_overhead", "afternoon_warm",
214
- "golden_hour_sunset", "dusk_twilight", "blue_hour", "night_moonlit", "midnight_dark"
215
- ],
216
- "required": true,
217
- "description": "Desired time of day"
218
- },
219
- "sky_color": {
220
- "type": "string",
221
- "default": "auto",
222
- "description": "Sky color palette for the time (auto-determined from time, or specify)"
223
- },
224
- "shadow_direction": {
225
- "type": "enum",
226
- "values": ["east", "southeast", "south", "southwest", "west", "overhead", "none"],
227
- "default": "auto",
228
- "description": "Direction of shadows based on sun/moon position"
229
- },
230
- "description": {
231
- "type": "string",
232
- "required": true,
233
- "description": "Concise 5-10 word transformation summary",
234
- "max_words": 10,
235
- "examples": [
236
- "Change midday to golden hour",
237
- "Transform night to sunrise lighting"
238
- ]
239
- }
240
- },
241
- "does_not_handle": ["Weather", "Mood", "Season", "Artificial lighting"],
242
- "example": {
243
- "source_time": "midday_overhead",
244
- "target_time": "golden_hour_sunset",
245
- "sky_color": "warm_orange_pink",
246
- "shadow_direction": "east",
247
- "description": "Transform from harsh midday sun to warm golden hour sunset lighting"
248
- }
249
- },
250
- {
251
- "id": "season_cycle",
252
- "name": "Season Cycle",
253
- "description": "Change vegetation, foliage, and seasonal visual markers (what season is it)",
254
- "category": "temporal_environmental",
255
- "theme_style_category": "THEME",
256
- "parameters": {
257
- "source_season": {
258
- "type": "enum",
259
- "values": ["spring_blooming", "summer_lush", "autumn_falling", "winter_bare"],
260
- "required": true,
261
- "description": "Current season"
262
- },
263
- "target_season": {
264
- "type": "enum",
265
- "values": ["spring_blooming", "summer_lush", "autumn_falling", "winter_bare"],
266
- "required": true,
267
- "description": "Target season"
268
- },
269
- "vegetation_state": {
270
- "type": "enum",
271
- "values": [
272
- "blooming_flowers", "full_green", "autumn_colors", "bare_branches", "evergreen", "dead_withered"
273
- ],
274
- "required": true,
275
- "description": "State of vegetation and foliage"
276
- },
277
- "ground_cover": {
278
- "type": "enum",
279
- "values": [
280
- "snow_covered", "autumn_leaves", "spring_flowers", "lush_grass", "dry_grass", "mud_wet"
281
- ],
282
- "required": true,
283
- "description": "What covers the ground"
284
- },
285
- "description": {
286
- "type": "string",
287
- "required": true,
288
- "description": "Concise 5-10 word transformation summary",
289
- "max_words": 10,
290
- "examples": [
291
- "Change autumn foliage to spring greenery",
292
- "Transform summer to winter landscape"
293
- ]
294
- }
295
- },
296
- "does_not_handle": ["Weather", "Time of day", "Mood", "Temperature visual effects"],
297
- "example": {
298
- "source_season": "summer_lush",
299
- "target_season": "winter_bare",
300
- "vegetation_state": "bare_branches",
301
- "ground_cover": "snow_covered",
302
- "description": "Transform from summer with full greenery to winter with bare trees and snow-covered ground"
303
- }
304
- },
305
- {
306
- "id": "weather_conditions",
307
- "name": "Weather Conditions",
308
- "description": "Change weather phenomena (rain, snow, fog, storms) only",
309
- "category": "temporal_environmental",
310
- "theme_style_category": "THEME",
311
- "parameters": {
312
- "weather_type": {
313
- "type": "enum",
314
- "values": [
315
- "clear_sunny", "partly_cloudy", "overcast_gray", "light_rain", "heavy_rain", "thunderstorm",
316
- "light_snow", "heavy_snow_blizzard", "fog_dense", "mist_light", "sandstorm", "hail"
317
- ],
318
- "required": true,
319
- "description": "Type of weather condition"
320
- },
321
- "intensity": {
322
- "type": "enum",
323
- "values": ["light", "moderate", "heavy", "extreme"],
324
- "default": "moderate",
325
- "description": "Intensity of weather phenomenon"
326
- },
327
- "visibility": {
328
- "type": "enum",
329
- "values": ["clear", "reduced", "poor", "very_poor"],
330
- "default": "clear",
331
- "description": "How much weather obscures view"
332
- },
333
- "active_precipitation": {
334
- "type": "boolean",
335
- "default": true,
336
- "description": "Whether falling elements (rain, snow) are actively visible"
337
- },
338
- "description": {
339
- "type": "string",
340
- "required": true,
341
- "description": "Concise 5-10 word transformation summary",
342
- "max_words": 10,
343
- "examples": [
344
- "Add clear sunny weather",
345
- "Change overcast to thunderstorm conditions"
346
- ]
347
- }
348
- },
349
- "does_not_handle": ["Season", "Time of day", "Mood", "Color palette"],
350
- "example": {
351
- "weather_type": "heavy_snow_blizzard",
352
- "intensity": "heavy",
353
- "visibility": "poor",
354
- "active_precipitation": true,
355
- "description": "Transform from clear weather to intense snowstorm with heavy snowfall and reduced visibility"
356
- }
357
- },
358
- {
359
- "id": "mood_lighting",
360
- "name": "Mood Lighting",
361
- "description": "Change emotional mood through artificial/accent lighting (how it feels)",
362
- "category": "atmosphere_mood",
363
- "theme_style_category": "THEME",
364
- "parameters": {
365
- "source_mood": {
366
- "type": "enum",
367
- "values": [
368
- "bright_cheerful", "soft_cozy", "mysterious_shadowy", "dramatic_cinematic", "ominous_dark",
369
- "romantic_intimate", "energetic_vibrant", "melancholic_somber", "whimsical_playful",
370
- "nostalgic_sepia", "tense_suspenseful", "serene_calm", "eerie_unsettling", "epic_grand", "hopeful_uplifting"
371
- ],
372
- "required": true,
373
- "description": "Current emotional mood"
374
- },
375
- "target_mood": {
376
- "type": "enum",
377
- "values": [
378
- "bright_cheerful", "soft_cozy", "mysterious_shadowy", "dramatic_cinematic", "ominous_dark",
379
- "romantic_intimate", "energetic_vibrant", "melancholic_somber", "whimsical_playful",
380
- "nostalgic_sepia", "tense_suspenseful", "serene_calm", "eerie_unsettling", "epic_grand", "hopeful_uplifting"
381
- ],
382
- "required": true,
383
- "description": "Target emotional mood"
384
- },
385
- "accent_lighting": {
386
- "type": "enum",
387
- "values": [
388
- "neon_signs", "candlelit_warm", "spotlight_dramatic", "rim_lighting", "backlit_silhouette",
389
- "god_rays", "volumetric_fog_light", "colored_gels", "practical_lights", "ambient_glow"
390
- ],
391
- "required": true,
392
- "description": "Specific artificial light sources for mood"
393
- },
394
- "shadow_depth": {
395
- "type": "enum",
396
- "values": ["none", "soft", "moderate", "deep", "dramatic"],
397
- "default": "moderate",
398
- "description": "Shadow intensity for dramatic effect"
399
- },
400
- "description": {
401
- "type": "string",
402
- "required": true,
403
- "description": "Concise 5-10 word transformation summary",
404
- "max_words": 10,
405
- "examples": [
406
- "Transform bright to mysterious mood",
407
- "Add dramatic cinematic lighting"
408
- ]
409
- }
410
- },
411
- "does_not_handle": ["Natural sunlight (use time_of_day)", "Color grading", "Weather"],
412
- "example": {
413
- "source_mood": "bright_cheerful",
414
- "target_mood": "mysterious_shadowy",
415
- "accent_lighting": "candlelit_warm",
416
- "shadow_depth": "deep",
417
- "description": "Transform from bright cheerful lighting to mysterious shadowy mood with flickering candlelight"
418
- }
419
- },
420
- {
421
- "id": "color_grading",
422
- "name": "Visual Mood Theme",
423
- "description": "Transform the color atmosphere to create distinct emotional mood or theme. Creates DRAMATIC color-driven atmosphere changes (gothic dark, carnival vibrant, cozy warm, etc), not subtle color grading tweaks. Uses color as primary driver for thematic transformation.",
424
- "category": "visual_style",
425
- "theme_style_category": "THEME",
426
- "parameters": {
427
- "source_palette": {
428
- "type": "enum",
429
- "values": [
430
- "warm_sunset", "cool_blue", "neutral_balanced", "monochrome_bw", "sepia_vintage",
431
- "pastel_soft", "neon_electric", "earth_natural", "jewel_rich", "desaturated_muted",
432
- "high_contrast", "low_contrast", "golden_hour", "blue_hour", "orange_teal",
433
- "purple_pink", "green_nature", "red_dramatic"
434
- ],
435
- "required": true,
436
- "description": "Current color palette"
437
- },
438
- "target_palette": {
439
- "type": "enum",
440
- "values": [
441
- "warm_sunset", "cool_blue", "neutral_balanced", "monochrome_bw", "sepia_vintage",
442
- "pastel_soft", "neon_electric", "earth_natural", "jewel_rich", "desaturated_muted",
443
- "high_contrast", "low_contrast", "golden_hour", "blue_hour", "orange_teal",
444
- "purple_pink", "green_nature", "red_dramatic"
445
- ],
446
- "required": true,
447
- "description": "Target color palette"
448
- },
449
- "saturation": {
450
- "type": "enum",
451
- "values": ["desaturated", "neutral", "enhanced", "hyper_saturated"],
452
- "default": "neutral",
453
- "description": "Overall color saturation level"
454
- },
455
- "contrast": {
456
- "type": "enum",
457
- "values": ["low", "normal", "high", "dramatic"],
458
- "default": "normal",
459
- "description": "Overall contrast level"
460
- },
461
- "temperature": {
462
- "type": "enum",
463
- "values": ["cool", "neutral", "warm", "extreme_cool", "extreme_warm"],
464
- "default": "neutral",
465
- "description": "Color temperature shift"
466
- },
467
- "description": {
468
- "type": "string",
469
- "required": true,
470
- "description": "Concise 5-10 word transformation summary",
471
- "max_words": 10,
472
- "examples": [
473
- "Apply cinematic orange-teal grading",
474
- "Add warm sunset color palette"
475
- ]
476
- }
477
- },
478
- "does_not_handle": ["Lighting", "Mood", "Artistic style", "Weather"],
479
- "example": {
480
- "source_palette": "neutral_balanced",
481
- "target_palette": "orange_teal",
482
- "saturation": "enhanced",
483
- "contrast": "high",
484
- "temperature": "warm",
485
- "description": "Apply cinematic orange-teal color grading with enhanced saturation and high contrast"
486
- }
487
- },
488
- {
489
- "id": "artistic_medium",
490
- "name": "Artistic Medium",
491
- "description": "Change the rendering/drawing style and artistic medium (how it's rendered)",
492
- "category": "visual_style",
493
- "theme_style_category": "STYLE",
494
- "parameters": {
495
- "source_medium": {
496
- "type": "enum",
497
- "values": [
498
- "photorealistic", "hyperrealistic", "film_photography", "oil_painting_thick", "oil_painting_smooth",
499
- "watercolor_flowing", "watercolor_dry", "acrylic_painting", "gouache", "ink_brush", "pen_ink_lines",
500
- "pencil_sketch", "charcoal_sketch", "pastel_drawing", "digital_painting", "vector_art",
501
- "3d_rendered", "low_poly", "pixel_art", "anime_cel_shaded", "cartoon_illustrated", "collage_mixed_media"
502
- ],
503
- "required": true,
504
- "description": "Current rendering medium"
505
- },
506
- "target_medium": {
507
- "type": "enum",
508
- "values": [
509
- "photorealistic", "hyperrealistic", "film_photography", "oil_painting_thick", "oil_painting_smooth",
510
- "watercolor_flowing", "watercolor_dry", "acrylic_painting", "gouache", "ink_brush", "pen_ink_lines",
511
- "pencil_sketch", "charcoal_sketch", "pastel_drawing", "digital_painting", "vector_art",
512
- "3d_rendered", "low_poly", "pixel_art", "anime_cel_shaded", "cartoon_illustrated", "collage_mixed_media"
513
- ],
514
- "required": true,
515
- "description": "Target rendering medium"
516
- },
517
- "technique": {
518
- "type": "string",
519
- "default": "auto",
520
- "description": "Specific technique (e.g., 'thick impasto brushstrokes', 'fine cross-hatching')"
521
- },
522
- "art_movement": {
523
- "type": "enum",
524
- "values": [
525
- "impressionism", "post_impressionism", "expressionism", "fauvism", "cubism", "surrealism",
526
- "abstract_expressionism", "pop_art", "minimalism", "art_nouveau", "art_deco", "baroque", "renaissance", "none"
527
- ],
528
- "default": "none",
529
- "description": "Optional historical art movement influence"
530
- },
531
- "texture_visibility": {
532
- "type": "enum",
533
- "values": ["none", "subtle", "moderate", "prominent"],
534
- "default": "moderate",
535
- "description": "How visible the medium texture is (canvas, paper, etc.)"
536
- },
537
- "description": {
538
- "type": "string",
539
- "required": true,
540
- "description": "Concise 5-10 word transformation summary",
541
- "max_words": 10,
542
- "examples": [
543
- "Transform photo to oil painting",
544
- "Convert realistic to anime style"
545
- ]
546
- }
547
- },
548
- "does_not_handle": ["Color palette", "Mood", "Content changes", "Location"],
549
- "example": {
550
- "source_medium": "photorealistic",
551
- "target_medium": "oil_painting_thick",
552
- "technique": "thick impasto brushstrokes with palette knife",
553
- "art_movement": "post_impressionism",
554
- "texture_visibility": "prominent",
555
- "description": "Transform photograph into Van Gogh-style thick oil painting with visible brushstrokes"
556
- }
557
- },
558
- {
559
- "id": "atmospheric_effects",
560
- "name": "Lighting Theme",
561
- "description": "Transform lighting to create dramatic thematic atmosphere. Creates BOLD lighting themes (noir shadows, cyberpunk neon, theater spotlight, cinematic rays, etc), not technical lighting adjustments. Focuses on atmospheric lighting as a theme-defining element.",
562
- "category": "visual_style",
563
- "theme_style_category": "THEME",
564
- "parameters": {
565
- "effect_type": {
566
- "type": "enum",
567
- "values": [
568
- "dust_particles", "smoke_haze", "fog_volumetric", "mist_ground", "steam_rising",
569
- "rain_falling", "snow_falling", "leaves_falling", "petals_floating", "ash_embers",
570
- "sparkles_magical", "glowing_aura", "energy_particles", "light_beams_godrays", "lens_flare",
571
- "bokeh_lights", "motion_blur", "speed_lines", "lens_distortion", "film_grain",
572
- "holographic_glitch", "digital_artifacts", "cracks_damage", "debris_floating", "bioluminescence"
573
- ],
574
- "required": true,
575
- "description": "Type of atmospheric effect"
576
- },
577
- "intensity": {
578
- "type": "enum",
579
- "values": ["subtle", "moderate", "heavy", "extreme"],
580
- "default": "moderate",
581
- "description": "Intensity of the effect"
582
- },
583
- "coverage": {
584
- "type": "enum",
585
- "values": ["localized", "widespread", "full_scene"],
586
- "default": "widespread",
587
- "description": "How much of the scene has the effect"
588
- },
589
- "color_tint": {
590
- "type": "string",
591
- "default": "auto",
592
- "description": "Color tint of effect (e.g., 'blue_glow', 'orange_fire', 'green_magic')"
593
- },
594
- "description": {
595
- "type": "string",
596
- "required": true,
597
- "description": "Concise 5-10 word transformation summary",
598
- "max_words": 10,
599
- "examples": [
600
- "Add magical sparkles and shimmer",
601
- "Apply fog and atmospheric haze"
602
- ]
603
- }
604
- },
605
- "does_not_handle": ["Core weather", "Mood", "Color grading", "Location"],
606
- "example": {
607
- "effect_type": "sparkles_magical",
608
- "intensity": "heavy",
609
- "coverage": "full_scene",
610
- "color_tint": "blue_white_shimmer",
611
- "description": "Add magical sparkles and shimmering particles throughout the scene with blue-white glow"
612
- }
613
- }
614
- ],
615
- "metadata": {
616
- "total_actions": 10,
617
- "max_actions_per_plan": 5,
618
- "theme_style_distribution": {
619
- "THEME": 9,
620
- "STYLE": 1
621
- },
622
- "categories": {
623
- "scene_level": ["location_setting", "architecture_style", "time_period_era"],
624
- "temporal_environmental": ["time_of_day", "season_cycle", "weather_conditions"],
625
- "atmosphere_mood": ["mood_lighting"],
626
- "visual_style": ["color_grading", "artistic_medium", "atmospheric_effects"]
627
- },
628
- "theme_style_mapping": {
629
- "THEME_actions": [
630
- "location_setting",
631
- "architecture_style",
632
- "time_period_era",
633
- "time_of_day",
634
- "season_cycle",
635
- "weather_conditions",
636
- "mood_lighting",
637
- "color_grading",
638
- "atmospheric_effects"
639
- ],
640
- "STYLE_actions": [
641
- "artistic_medium"
642
- ]
643
- },
644
- "design_notes": {
645
- "focus": "Theme & Style transformations - BOLD, NOTICEABLE changes",
646
- "orthogonality": "Each action controls exactly one dimension of visual change",
647
- "composability": "Combine 2-5 actions to create complex transformations",
648
- "no_overlap": "Actions have clear boundaries and don't step on each other",
649
- "atomic": "Each action is the smallest meaningful unit of change",
650
- "transformation_emphasis": "Prioritize dramatic scene/style changes over subtle adjustments"
651
- },
652
- "version_date": "2025-01-21",
653
- "replaces": "action_library_v2.json v2.0"
654
- }
655
- }
656
-