@mytechtoday/augment-extensions 1.5.1 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/augment-extensions/writing-standards/screenplay/README.md +62 -9
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/MIGRATION.md +158 -0
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/README.md +157 -0
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/examples/style-applications.md +257 -0
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/module.json +63 -0
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/rules/blue-ruin.md +667 -0
- package/augment-extensions/writing-standards/screenplay/cinematic-styles/rules/mcu-avengers.md +933 -0
- package/augment-extensions/writing-standards/screenplay/module.json +29 -1
- package/cli/dist/__test_rule-install-hooks.d.ts +2 -0
- package/cli/dist/__test_rule-install-hooks.d.ts.map +1 -0
- package/cli/dist/__test_rule-install-hooks.js +4 -0
- package/cli/dist/__test_rule-install-hooks.js.map +1 -0
- package/cli/dist/commands/show.d.ts +4 -0
- package/cli/dist/commands/show.d.ts.map +1 -1
- package/cli/dist/commands/show.js +72 -2
- package/cli/dist/commands/show.js.map +1 -1
- package/cli/dist/parsers/php-parser.d.ts +127 -0
- package/cli/dist/parsers/php-parser.d.ts.map +1 -0
- package/cli/dist/parsers/php-parser.js +290 -0
- package/cli/dist/parsers/php-parser.js.map +1 -0
- package/cli/dist/utils/ai-prompts.d.ts +32 -0
- package/cli/dist/utils/ai-prompts.d.ts.map +1 -0
- package/cli/dist/utils/ai-prompts.js +192 -0
- package/cli/dist/utils/ai-prompts.js.map +1 -0
- package/cli/dist/utils/ai-summary.d.ts +42 -0
- package/cli/dist/utils/ai-summary.d.ts.map +1 -0
- package/cli/dist/utils/ai-summary.js +177 -0
- package/cli/dist/utils/ai-summary.js.map +1 -0
- package/cli/dist/utils/config-loader.d.ts +90 -0
- package/cli/dist/utils/config-loader.d.ts.map +1 -0
- package/cli/dist/utils/config-loader.js +223 -0
- package/cli/dist/utils/config-loader.js.map +1 -0
- package/cli/dist/webview/inspection-webview-provider.d.ts +49 -0
- package/cli/dist/webview/inspection-webview-provider.d.ts.map +1 -0
- package/cli/dist/webview/inspection-webview-provider.js +386 -0
- package/cli/dist/webview/inspection-webview-provider.js.map +1 -0
- package/package.json +3 -1
|
@@ -124,15 +124,68 @@ augment-extensions/writing-standards/screenplay/
|
|
|
124
124
|
│ ├── beat-sheet.json # Beat sheet schema
|
|
125
125
|
│ ├── plot-outline.json # Plot outline schema
|
|
126
126
|
│ └── trope-inventory.json # Trope inventory schema
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
127
|
+
├── examples/ # Example screenplay files
|
|
128
|
+
│ ├── aaa-hollywood-scene.fountain
|
|
129
|
+
│ ├── independent-monologue.fountain
|
|
130
|
+
│ ├── tv-episode-teaser.fountain
|
|
131
|
+
│ ├── news-segment.fountain
|
|
132
|
+
│ ├── commercial-30sec.fountain
|
|
133
|
+
│ ├── character-profile-example.yaml
|
|
134
|
+
│ ├── beat-sheet-example.yaml
|
|
135
|
+
│ └── plot-outline-example.yaml
|
|
136
|
+
├── styles/ # Sub-module: Narrative styles
|
|
137
|
+
│ ├── module.json
|
|
138
|
+
│ ├── README.md
|
|
139
|
+
│ ├── rules/ # Narrative style techniques
|
|
140
|
+
│ │ ├── linear.md
|
|
141
|
+
│ │ ├── non-linear.md
|
|
142
|
+
│ │ ├── ensemble.md
|
|
143
|
+
│ │ └── ... (13 narrative styles)
|
|
144
|
+
│ └── examples/
|
|
145
|
+
├── cinematic-styles/ # Sub-module: Film/franchise style guides
|
|
146
|
+
│ ├── module.json
|
|
147
|
+
│ ├── README.md
|
|
148
|
+
│ ├── rules/ # Specific film/franchise styles
|
|
149
|
+
│ │ ├── mcu-avengers.md # Marvel Cinematic Universe style
|
|
150
|
+
│ │ ├── blue-ruin.md # Blue Ruin incompetent protagonist style
|
|
151
|
+
│ │ └── ... (more to be added)
|
|
152
|
+
│ └── examples/
|
|
153
|
+
├── genres/ # Sub-module: Genre conventions
|
|
154
|
+
│ └── ... (to be developed)
|
|
155
|
+
└── themes/ # Sub-module: Thematic integration
|
|
156
|
+
└── ... (to be developed)
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Sub-Modules
|
|
160
|
+
|
|
161
|
+
This module is organized into several sub-modules for selective loading:
|
|
162
|
+
|
|
163
|
+
### 1. Core Screenplay Standards (Main Module)
|
|
164
|
+
Universal formatting, narrative structures, character development, dialogue, and category-specific rules.
|
|
165
|
+
|
|
166
|
+
**Link**: `augx link writing-standards/screenplay`
|
|
167
|
+
|
|
168
|
+
### 2. Narrative Styles
|
|
169
|
+
Narrative style techniques (linear, non-linear, ensemble, minimalist, epic, etc.)
|
|
170
|
+
|
|
171
|
+
**Link**: `augx link writing-standards/screenplay/styles`
|
|
172
|
+
|
|
173
|
+
### 3. Cinematic Style Guides (NEW)
|
|
174
|
+
Film and franchise-specific style guides capturing the unique voice and techniques of iconic films.
|
|
175
|
+
|
|
176
|
+
**Link**: `augx link writing-standards/screenplay/cinematic-styles`
|
|
177
|
+
|
|
178
|
+
**Available Styles**:
|
|
179
|
+
- **MCU/Avengers** - Ensemble superhero epic with heart and humor
|
|
180
|
+
- **Blue Ruin** - Incompetent protagonist thriller with realistic violence
|
|
181
|
+
|
|
182
|
+
**Future Additions**: Christopher Nolan, Quentin Tarantino, Wes Anderson, Denis Villeneuve, and more
|
|
183
|
+
|
|
184
|
+
### 4. Genre Conventions
|
|
185
|
+
Genre-specific screenplay conventions (to be developed)
|
|
186
|
+
|
|
187
|
+
### 5. Thematic Integration
|
|
188
|
+
Thematic elements and integration techniques (to be developed)
|
|
136
189
|
```
|
|
137
190
|
|
|
138
191
|
## Core Guidelines
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
# Cinematic Styles Module - Migration Summary
|
|
2
|
+
|
|
3
|
+
**Date**: 2026-02-22
|
|
4
|
+
**Version**: 1.0.0
|
|
5
|
+
|
|
6
|
+
## Overview
|
|
7
|
+
|
|
8
|
+
This document summarizes the refactoring of screenplay style guides from `ai-prompts/` into a proper sub-module structure within the screenplay module.
|
|
9
|
+
|
|
10
|
+
## What Was Done
|
|
11
|
+
|
|
12
|
+
### 1. Created New Sub-Module Structure
|
|
13
|
+
|
|
14
|
+
Created `augment-extensions/writing-standards/screenplay/cinematic-styles/` as a new sub-module following the same pattern as the existing `styles/` sub-module.
|
|
15
|
+
|
|
16
|
+
**Directory Structure**:
|
|
17
|
+
```
|
|
18
|
+
cinematic-styles/
|
|
19
|
+
├── module.json # Module metadata
|
|
20
|
+
├── README.md # Module overview and usage
|
|
21
|
+
├── MIGRATION.md # This file
|
|
22
|
+
├── rules/ # Film/franchise style guides
|
|
23
|
+
│ ├── mcu-avengers.md # Marvel Cinematic Universe style
|
|
24
|
+
│ └── blue-ruin.md # Blue Ruin incompetent protagonist style
|
|
25
|
+
└── examples/
|
|
26
|
+
└── style-applications.md # Practical application examples
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### 2. Migrated Style Guides
|
|
30
|
+
|
|
31
|
+
**Source Files** (original location):
|
|
32
|
+
- `ai-prompts/Avengers-style-guide.md` → `cinematic-styles/rules/mcu-avengers.md`
|
|
33
|
+
- `ai-prompts/BlueRuin-style-guide.md` → `cinematic-styles/rules/blue-ruin.md`
|
|
34
|
+
|
|
35
|
+
**Note**: Original files remain in `ai-prompts/` for now. They can be deleted once migration is verified.
|
|
36
|
+
|
|
37
|
+
### 3. Created Module Metadata
|
|
38
|
+
|
|
39
|
+
**module.json**:
|
|
40
|
+
- Name: `cinematic-styles`
|
|
41
|
+
- Version: 1.0.0
|
|
42
|
+
- Character Count: ~150,000 (2 style guides)
|
|
43
|
+
- Category: `screenplay`
|
|
44
|
+
- Type: `writing-standards`
|
|
45
|
+
|
|
46
|
+
### 4. Updated Parent Module
|
|
47
|
+
|
|
48
|
+
Updated `augment-extensions/writing-standards/screenplay/module.json` to include `subModules` array documenting all available sub-modules:
|
|
49
|
+
- `styles` - Narrative style techniques
|
|
50
|
+
- `cinematic-styles` - Film/franchise style guides (NEW)
|
|
51
|
+
- `genres` - Genre conventions (future)
|
|
52
|
+
- `themes` - Thematic integration (future)
|
|
53
|
+
|
|
54
|
+
Updated `augment-extensions/writing-standards/screenplay/README.md` to document the new sub-module structure.
|
|
55
|
+
|
|
56
|
+
## Usage
|
|
57
|
+
|
|
58
|
+
### Linking the Module
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
# Link the cinematic-styles sub-module
|
|
62
|
+
augx link writing-standards/screenplay/cinematic-styles
|
|
63
|
+
|
|
64
|
+
# Or link the entire screenplay module (includes all sub-modules)
|
|
65
|
+
augx link writing-standards/screenplay
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Configuration
|
|
69
|
+
|
|
70
|
+
Add to `.augment/screenplay-config.json`:
|
|
71
|
+
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"screenplay_enhancements": {
|
|
75
|
+
"enabled": true,
|
|
76
|
+
"features": {
|
|
77
|
+
"cinematic_styles": {
|
|
78
|
+
"enabled": true,
|
|
79
|
+
"selected": ["mcu-avengers"]
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Querying the Module
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
# Show all available cinematic styles
|
|
90
|
+
augx show writing-standards/screenplay/cinematic-styles
|
|
91
|
+
|
|
92
|
+
# Show specific style guide
|
|
93
|
+
augx show writing-standards/screenplay/cinematic-styles/mcu-avengers
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## Benefits of This Structure
|
|
97
|
+
|
|
98
|
+
1. **Modular**: Users can selectively load only the cinematic styles they need
|
|
99
|
+
2. **Scalable**: Easy to add new film/franchise style guides in the future
|
|
100
|
+
3. **Organized**: Clear separation between narrative styles and cinematic styles
|
|
101
|
+
4. **Discoverable**: Follows established sub-module pattern (like ADR in software-architecture)
|
|
102
|
+
5. **Maintainable**: Each style guide is a standalone file with clear naming
|
|
103
|
+
|
|
104
|
+
## Future Additions
|
|
105
|
+
|
|
106
|
+
The following cinematic style guides are planned for future releases:
|
|
107
|
+
|
|
108
|
+
- **Christopher Nolan** - Non-linear, cerebral blockbusters
|
|
109
|
+
- **Quentin Tarantino** - Dialogue-heavy, non-linear crime films
|
|
110
|
+
- **Wes Anderson** - Symmetrical, whimsical, ensemble comedies
|
|
111
|
+
- **Denis Villeneuve** - Atmospheric, slow-burn sci-fi
|
|
112
|
+
- **Edgar Wright** - Fast-paced, visual comedy
|
|
113
|
+
- **Coen Brothers** - Dark comedy, regional dialects
|
|
114
|
+
- **Star Wars** - Space opera, hero's journey
|
|
115
|
+
- **Lord of the Rings** - Epic fantasy, ensemble adventure
|
|
116
|
+
- **John Wick** - Stylized action, world-building through visuals
|
|
117
|
+
- **A24 Horror** - Elevated horror, slow-burn dread
|
|
118
|
+
|
|
119
|
+
## Cleanup Tasks
|
|
120
|
+
|
|
121
|
+
Once migration is verified:
|
|
122
|
+
|
|
123
|
+
1. **Optional**: Delete original files from `ai-prompts/`:
|
|
124
|
+
- `ai-prompts/Avengers-style-guide.md`
|
|
125
|
+
- `ai-prompts/BlueRuin-style-guide.md`
|
|
126
|
+
|
|
127
|
+
2. **Update**: Any references to the old file paths in documentation or prompts
|
|
128
|
+
|
|
129
|
+
## Verification
|
|
130
|
+
|
|
131
|
+
To verify the migration was successful:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Check directory structure
|
|
135
|
+
ls augment-extensions/writing-standards/screenplay/cinematic-styles/
|
|
136
|
+
|
|
137
|
+
# Verify files exist
|
|
138
|
+
cat augment-extensions/writing-standards/screenplay/cinematic-styles/rules/mcu-avengers.md | head -20
|
|
139
|
+
cat augment-extensions/writing-standards/screenplay/cinematic-styles/rules/blue-ruin.md | head -20
|
|
140
|
+
|
|
141
|
+
# Test linking
|
|
142
|
+
augx link writing-standards/screenplay/cinematic-styles
|
|
143
|
+
augx show writing-standards/screenplay/cinematic-styles
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
## Related Documentation
|
|
147
|
+
|
|
148
|
+
- `augment-extensions/writing-standards/screenplay/README.md` - Main screenplay module documentation
|
|
149
|
+
- `augment-extensions/writing-standards/screenplay/styles/README.md` - Narrative styles sub-module
|
|
150
|
+
- `augment-extensions/writing-standards/screenplay/cinematic-styles/README.md` - This sub-module's documentation
|
|
151
|
+
|
|
152
|
+
## Questions or Issues
|
|
153
|
+
|
|
154
|
+
If you encounter any issues with this migration or have questions about the new structure, please refer to:
|
|
155
|
+
- The main screenplay module README
|
|
156
|
+
- The cinematic-styles README
|
|
157
|
+
- The example applications in `examples/style-applications.md`
|
|
158
|
+
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# Cinematic Style Guides Module
|
|
2
|
+
|
|
3
|
+
**Version**: 1.0.0
|
|
4
|
+
**Type**: Writing Standards
|
|
5
|
+
**Category**: Screenplay
|
|
6
|
+
|
|
7
|
+
## Overview
|
|
8
|
+
|
|
9
|
+
This module provides film and franchise-specific screenplay style guides that capture the unique voice, structure, and techniques of iconic films and cinematic universes. Each style guide is a comprehensive analysis of how specific films or franchises approach storytelling, character development, dialogue, action, pacing, and visual style.
|
|
10
|
+
|
|
11
|
+
## Key Features
|
|
12
|
+
|
|
13
|
+
- **Film/Franchise Specific**: Deep-dive style guides for specific films or cinematic universes
|
|
14
|
+
- **Comprehensive Analysis**: Structure, dialogue, character development, visual style, sound design
|
|
15
|
+
- **Practical Templates**: Scene construction templates and writing approaches
|
|
16
|
+
- **Real Examples**: Actual scenes and techniques from the analyzed films
|
|
17
|
+
- **Modular Activation**: Select the cinematic style that fits your screenplay vision
|
|
18
|
+
|
|
19
|
+
## Available Style Guides
|
|
20
|
+
|
|
21
|
+
### 1. Marvel Cinematic Universe (MCU) - Avengers Style
|
|
22
|
+
**File**: `rules/mcu-avengers.md`
|
|
23
|
+
**Films Analyzed**: 20+ MCU films (2008-2021)
|
|
24
|
+
**Core Concept**: Character-driven spectacle with heart, humor, and interconnected world-building
|
|
25
|
+
|
|
26
|
+
**Key Characteristics**:
|
|
27
|
+
- Ensemble superhero epic
|
|
28
|
+
- Quippy dialogue with emotional depth
|
|
29
|
+
- Character first, spectacle second
|
|
30
|
+
- Grounded spectacle with human stakes
|
|
31
|
+
- Found family themes
|
|
32
|
+
|
|
33
|
+
**Best For**: Superhero ensemble films, action-adventure with heart, franchise/universe building
|
|
34
|
+
|
|
35
|
+
### 2. Blue Ruin - Incompetent Protagonist Thriller
|
|
36
|
+
**File**: `rules/blue-ruin.md`
|
|
37
|
+
**Film**: Blue Ruin (2013) - Jeremy Saulnier
|
|
38
|
+
**Core Concept**: Authentic incompetence in a revenge narrative
|
|
39
|
+
|
|
40
|
+
**Key Characteristics**:
|
|
41
|
+
- Realistic protagonist limitations
|
|
42
|
+
- Minimal dialogue, visual storytelling
|
|
43
|
+
- Unglamorous, consequential violence
|
|
44
|
+
- Slow-burn tension
|
|
45
|
+
- Anti-action film approach
|
|
46
|
+
|
|
47
|
+
**Best For**: Revenge thrillers, crime dramas, survival stories, anti-hero narratives
|
|
48
|
+
|
|
49
|
+
## Installation
|
|
50
|
+
|
|
51
|
+
### With CLI (Recommended)
|
|
52
|
+
```bash
|
|
53
|
+
augx link writing-standards/screenplay/cinematic-styles
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Manual Setup
|
|
57
|
+
1. Copy `augment-extensions/writing-standards/screenplay/cinematic-styles/` to your project
|
|
58
|
+
2. Reference style files in your `.augment/` configuration
|
|
59
|
+
3. Configure active style in `.augment/screenplay-config.json`
|
|
60
|
+
|
|
61
|
+
## Configuration
|
|
62
|
+
|
|
63
|
+
Create or update `.augment/screenplay-config.json`:
|
|
64
|
+
|
|
65
|
+
```json
|
|
66
|
+
{
|
|
67
|
+
"screenplay_enhancements": {
|
|
68
|
+
"enabled": true,
|
|
69
|
+
"features": {
|
|
70
|
+
"cinematic_styles": {
|
|
71
|
+
"enabled": true,
|
|
72
|
+
"selected": ["mcu-avengers"]
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Note**: Typically only ONE cinematic style should be selected per screenplay project.
|
|
80
|
+
|
|
81
|
+
## Directory Structure
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
cinematic-styles/
|
|
85
|
+
├── module.json # Module metadata
|
|
86
|
+
├── README.md # This file
|
|
87
|
+
├── rules/ # Film/franchise-specific style guides
|
|
88
|
+
│ ├── mcu-avengers.md # Marvel Cinematic Universe style
|
|
89
|
+
│ └── blue-ruin.md # Blue Ruin incompetent protagonist style
|
|
90
|
+
└── examples/
|
|
91
|
+
└── style-applications.md
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Usage
|
|
95
|
+
|
|
96
|
+
### Selecting a Cinematic Style
|
|
97
|
+
|
|
98
|
+
When developing a screenplay, select the cinematic style that best matches your vision:
|
|
99
|
+
|
|
100
|
+
```json
|
|
101
|
+
{
|
|
102
|
+
"cinematic_styles": {
|
|
103
|
+
"selected": ["mcu-avengers"]
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Applying Style Rules
|
|
109
|
+
|
|
110
|
+
AI agents will automatically apply the selected cinematic style rules when:
|
|
111
|
+
- Structuring the screenplay
|
|
112
|
+
- Writing dialogue
|
|
113
|
+
- Crafting action sequences
|
|
114
|
+
- Developing characters
|
|
115
|
+
- Determining pacing and tone
|
|
116
|
+
- Creating visual descriptions
|
|
117
|
+
|
|
118
|
+
## Future Additions
|
|
119
|
+
|
|
120
|
+
This module will expand to include additional film and franchise style guides:
|
|
121
|
+
|
|
122
|
+
- **Christopher Nolan** - Non-linear, cerebral blockbusters
|
|
123
|
+
- **Quentin Tarantino** - Dialogue-heavy, non-linear crime films
|
|
124
|
+
- **Wes Anderson** - Symmetrical, whimsical, ensemble comedies
|
|
125
|
+
- **Denis Villeneuve** - Atmospheric, slow-burn sci-fi
|
|
126
|
+
- **Edgar Wright** - Fast-paced, visual comedy
|
|
127
|
+
- **Coen Brothers** - Dark comedy, regional dialects
|
|
128
|
+
- **Star Wars** - Space opera, hero's journey
|
|
129
|
+
- **Lord of the Rings** - Epic fantasy, ensemble adventure
|
|
130
|
+
- **John Wick** - Stylized action, world-building through visuals
|
|
131
|
+
- **A24 Horror** - Elevated horror, slow-burn dread
|
|
132
|
+
- And many more...
|
|
133
|
+
|
|
134
|
+
## Character Count
|
|
135
|
+
|
|
136
|
+
**Current**: ~150,000 characters (2 style guides)
|
|
137
|
+
**Projected**: 500,000+ characters (10+ style guides)
|
|
138
|
+
|
|
139
|
+
## Contents
|
|
140
|
+
|
|
141
|
+
- `rules/mcu-avengers.md` - Marvel Cinematic Universe ensemble superhero style guide
|
|
142
|
+
- `rules/blue-ruin.md` - Incompetent protagonist thriller style guide (Jeremy Saulnier)
|
|
143
|
+
- `examples/style-applications.md` - Practical examples of applying cinematic styles
|
|
144
|
+
|
|
145
|
+
## Related Modules
|
|
146
|
+
|
|
147
|
+
- `writing-standards/screenplay` - Core screenplay standards
|
|
148
|
+
- `writing-standards/screenplay/styles` - Narrative style techniques
|
|
149
|
+
- `writing-standards/screenplay/genres` - Genre-specific conventions
|
|
150
|
+
- `writing-standards/screenplay/themes` - Thematic integration
|
|
151
|
+
|
|
152
|
+
## References
|
|
153
|
+
|
|
154
|
+
- Marvel Cinematic Universe (2008-present) - Kevin Feige, Marvel Studios
|
|
155
|
+
- Blue Ruin (2013) - Jeremy Saulnier (Writer/Director)
|
|
156
|
+
- Additional references in individual style guide files
|
|
157
|
+
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
# Cinematic Style Applications
|
|
2
|
+
|
|
3
|
+
This document provides practical examples of how to apply specific cinematic styles to your screenplay.
|
|
4
|
+
|
|
5
|
+
## MCU/Avengers Style Application
|
|
6
|
+
|
|
7
|
+
### When to Use
|
|
8
|
+
- Superhero ensemble films
|
|
9
|
+
- Action-adventure with emotional stakes
|
|
10
|
+
- Franchise/universe building
|
|
11
|
+
- Character-driven spectacle
|
|
12
|
+
- Stories about found family and sacrifice
|
|
13
|
+
|
|
14
|
+
### Key Elements to Apply
|
|
15
|
+
|
|
16
|
+
**1. Character-First Action**
|
|
17
|
+
Every action sequence should reveal character and advance emotional arcs.
|
|
18
|
+
|
|
19
|
+
**Example**:
|
|
20
|
+
```fountain
|
|
21
|
+
EXT. CITY STREET - DAY
|
|
22
|
+
|
|
23
|
+
Iron Man hovers above the chaos. His HUD flashes: PEPPER - DANGER.
|
|
24
|
+
|
|
25
|
+
TONY STARK
|
|
26
|
+
(to himself)
|
|
27
|
+
Not again. Not her.
|
|
28
|
+
|
|
29
|
+
He ignores the alien army, diving toward Stark Tower.
|
|
30
|
+
|
|
31
|
+
JARVIS (V.O.)
|
|
32
|
+
Sir, the team needs—
|
|
33
|
+
|
|
34
|
+
TONY STARK
|
|
35
|
+
I don't care. Get me to Pepper. Now.
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
**2. Quippy Dialogue with Heart**
|
|
39
|
+
Balance humor with genuine emotion. Jokes reveal character, not undercut stakes.
|
|
40
|
+
|
|
41
|
+
**Example**:
|
|
42
|
+
```fountain
|
|
43
|
+
INT. QUINJET - NIGHT
|
|
44
|
+
|
|
45
|
+
Steve and Tony sit in tense silence.
|
|
46
|
+
|
|
47
|
+
TONY STARK
|
|
48
|
+
You know, for a guy who's supposed to be
|
|
49
|
+
all about teamwork, you're pretty bad at it.
|
|
50
|
+
|
|
51
|
+
STEVE ROGERS
|
|
52
|
+
(quiet)
|
|
53
|
+
I'm trying to keep us together.
|
|
54
|
+
|
|
55
|
+
TONY STARK
|
|
56
|
+
By lying?
|
|
57
|
+
|
|
58
|
+
Beat. Steve has no answer.
|
|
59
|
+
|
|
60
|
+
TONY STARK (CONT'D)
|
|
61
|
+
(softer)
|
|
62
|
+
I get it. You wanted to protect me.
|
|
63
|
+
But I needed the truth more than protection.
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
**3. Ensemble Balance**
|
|
67
|
+
Give every character a moment to shine, even in crowded scenes.
|
|
68
|
+
|
|
69
|
+
**Example**:
|
|
70
|
+
```fountain
|
|
71
|
+
INT. AVENGERS COMPOUND - WAR ROOM - DAY
|
|
72
|
+
|
|
73
|
+
The team gathers around a holographic display.
|
|
74
|
+
|
|
75
|
+
TONY STARK
|
|
76
|
+
We hit them here, here, and here.
|
|
77
|
+
|
|
78
|
+
NATASHA
|
|
79
|
+
What about civilians?
|
|
80
|
+
|
|
81
|
+
STEVE ROGERS
|
|
82
|
+
We evacuate first. No exceptions.
|
|
83
|
+
|
|
84
|
+
THOR
|
|
85
|
+
I can create a barrier with lightning.
|
|
86
|
+
|
|
87
|
+
BRUCE BANNER
|
|
88
|
+
And I can... smash things, I guess.
|
|
89
|
+
|
|
90
|
+
Everyone looks at him.
|
|
91
|
+
|
|
92
|
+
BRUCE BANNER (CONT'D)
|
|
93
|
+
What? I'm working on my contributions.
|
|
94
|
+
|
|
95
|
+
Small smiles. Tension breaks.
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Blue Ruin Style Application
|
|
99
|
+
|
|
100
|
+
### When to Use
|
|
101
|
+
- Revenge thrillers
|
|
102
|
+
- Crime dramas with realistic violence
|
|
103
|
+
- Survival stories
|
|
104
|
+
- Anti-hero narratives
|
|
105
|
+
- Stories deconstructing action tropes
|
|
106
|
+
|
|
107
|
+
### Key Elements to Apply
|
|
108
|
+
|
|
109
|
+
**1. Authentic Incompetence**
|
|
110
|
+
Protagonist struggles with tasks that action heroes make look easy.
|
|
111
|
+
|
|
112
|
+
**Example**:
|
|
113
|
+
```fountain
|
|
114
|
+
INT. ABANDONED HOUSE - NIGHT
|
|
115
|
+
|
|
116
|
+
Dwight tries to pick the lock with a paperclip. His hands shake.
|
|
117
|
+
|
|
118
|
+
The paperclip bends. Breaks.
|
|
119
|
+
|
|
120
|
+
He looks around. Frustrated. Desperate.
|
|
121
|
+
|
|
122
|
+
Picks up a rock. Smashes the window.
|
|
123
|
+
|
|
124
|
+
CRASH. Glass everywhere.
|
|
125
|
+
|
|
126
|
+
He freezes. Listens. Did anyone hear?
|
|
127
|
+
|
|
128
|
+
Long beat. Nothing.
|
|
129
|
+
|
|
130
|
+
He climbs through. Cuts his hand on broken glass.
|
|
131
|
+
|
|
132
|
+
Winces. Doesn't make a sound.
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**2. Minimal Dialogue**
|
|
136
|
+
Show, don't tell. Let silence build tension.
|
|
137
|
+
|
|
138
|
+
**Example**:
|
|
139
|
+
```fountain
|
|
140
|
+
INT. BATHROOM - NIGHT
|
|
141
|
+
|
|
142
|
+
Dwight examines the wound in the mirror. Deep. Bleeding.
|
|
143
|
+
|
|
144
|
+
He opens the medicine cabinet. Finds vodka. Pours it on the wound.
|
|
145
|
+
|
|
146
|
+
His face: pain. But no sound.
|
|
147
|
+
|
|
148
|
+
Threads a needle. Hands shaking. Drops it.
|
|
149
|
+
|
|
150
|
+
Picks it up. Tries again.
|
|
151
|
+
|
|
152
|
+
Finally gets it. Starts stitching.
|
|
153
|
+
|
|
154
|
+
Each stitch: wince, pause, breathe, continue.
|
|
155
|
+
|
|
156
|
+
Sloppy. Uneven. But functional.
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
**3. Realistic Violence**
|
|
160
|
+
Violence is messy, painful, and has lasting consequences.
|
|
161
|
+
|
|
162
|
+
**Example**:
|
|
163
|
+
```fountain
|
|
164
|
+
INT. KITCHEN - NIGHT
|
|
165
|
+
|
|
166
|
+
Dwight and Wade struggle. Both terrified.
|
|
167
|
+
|
|
168
|
+
Wade's stronger. Pushes Dwight against the counter.
|
|
169
|
+
|
|
170
|
+
Dwight grabs a knife. Swings wildly.
|
|
171
|
+
|
|
172
|
+
Misses. Wade grabs his wrist.
|
|
173
|
+
|
|
174
|
+
They crash into the table. Chairs scatter.
|
|
175
|
+
|
|
176
|
+
Dwight headbutts Wade. Wade's nose breaks. Blood everywhere.
|
|
177
|
+
|
|
178
|
+
They fall. Both scrambling for the knife.
|
|
179
|
+
|
|
180
|
+
Wade gets it. Raises it.
|
|
181
|
+
|
|
182
|
+
Dwight grabs his throat. Squeezes.
|
|
183
|
+
|
|
184
|
+
Wade can't breathe. Drops the knife.
|
|
185
|
+
|
|
186
|
+
Dwight doesn't let go. Keeps squeezing. Tears streaming.
|
|
187
|
+
|
|
188
|
+
Wade stops moving.
|
|
189
|
+
|
|
190
|
+
Dwight holds on. Ten more seconds. Twenty.
|
|
191
|
+
|
|
192
|
+
Finally lets go. Sits back. Shaking. Covered in blood.
|
|
193
|
+
|
|
194
|
+
No triumph. Just horror.
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## Combining Styles (Advanced)
|
|
198
|
+
|
|
199
|
+
While typically you should select ONE cinematic style per project, you can occasionally blend elements:
|
|
200
|
+
|
|
201
|
+
**Example: MCU Humor + Blue Ruin Realism**
|
|
202
|
+
```fountain
|
|
203
|
+
INT. SAFE HOUSE - NIGHT
|
|
204
|
+
|
|
205
|
+
Peter Parker tries to treat a gunshot wound. Fails miserably.
|
|
206
|
+
|
|
207
|
+
PETER PARKER
|
|
208
|
+
(to himself)
|
|
209
|
+
Okay, YouTube said... no, wait, that's
|
|
210
|
+
for a paper cut. This is... bigger.
|
|
211
|
+
|
|
212
|
+
He pours hydrogen peroxide. Screams.
|
|
213
|
+
|
|
214
|
+
PETER PARKER (CONT'D)
|
|
215
|
+
Why does Mr. Stark make this look so easy?!
|
|
216
|
+
|
|
217
|
+
He tries to stitch it. Needle won't go through.
|
|
218
|
+
|
|
219
|
+
PETER PARKER (CONT'D)
|
|
220
|
+
(crying)
|
|
221
|
+
I should've paid attention in health class.
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
This combines Peter's nervous rambling (MCU) with realistic incompetence (Blue Ruin).
|
|
225
|
+
|
|
226
|
+
## Configuration Examples
|
|
227
|
+
|
|
228
|
+
### Pure MCU Style
|
|
229
|
+
```json
|
|
230
|
+
{
|
|
231
|
+
"cinematic_styles": {
|
|
232
|
+
"selected": ["mcu-avengers"]
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Pure Blue Ruin Style
|
|
238
|
+
```json
|
|
239
|
+
{
|
|
240
|
+
"cinematic_styles": {
|
|
241
|
+
"selected": ["blue-ruin"]
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
```
|
|
245
|
+
|
|
246
|
+
## Tips for AI Agents
|
|
247
|
+
|
|
248
|
+
When applying a cinematic style:
|
|
249
|
+
|
|
250
|
+
1. **Read the full style guide** before writing
|
|
251
|
+
2. **Identify key characteristics** of the selected style
|
|
252
|
+
3. **Apply consistently** throughout the screenplay
|
|
253
|
+
4. **Don't mix styles** unless intentionally creating contrast
|
|
254
|
+
5. **Reference examples** from the style guide
|
|
255
|
+
6. **Maintain tone** appropriate to the style
|
|
256
|
+
7. **Respect the rules** of the cinematic universe/film being emulated
|
|
257
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cinematic-styles",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"displayName": "Cinematic Style Guides",
|
|
5
|
+
"description": "Film and franchise-specific screenplay style guides capturing the unique voice, structure, and techniques of iconic films and cinematic universes",
|
|
6
|
+
"type": "writing-standards",
|
|
7
|
+
"category": "screenplay",
|
|
8
|
+
"tags": [
|
|
9
|
+
"screenplay",
|
|
10
|
+
"cinematic-style",
|
|
11
|
+
"film-analysis",
|
|
12
|
+
"franchise",
|
|
13
|
+
"mcu",
|
|
14
|
+
"thriller",
|
|
15
|
+
"action",
|
|
16
|
+
"ensemble",
|
|
17
|
+
"character-driven"
|
|
18
|
+
],
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"required": [],
|
|
21
|
+
"optional": ["writing-standards/screenplay"]
|
|
22
|
+
},
|
|
23
|
+
"augment": {
|
|
24
|
+
"characterCount": 150000,
|
|
25
|
+
"priority": "high",
|
|
26
|
+
"category": "cinematic-styles",
|
|
27
|
+
"appliesTo": {
|
|
28
|
+
"filePatterns": [
|
|
29
|
+
"**/*.fountain",
|
|
30
|
+
"**/*.screenplay",
|
|
31
|
+
"**/screenplay/**/*.md",
|
|
32
|
+
"**/screenplays/**/*"
|
|
33
|
+
],
|
|
34
|
+
"languages": ["fountain", "markdown"]
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"installation": {
|
|
38
|
+
"required": false,
|
|
39
|
+
"steps": [
|
|
40
|
+
"Link module: augx link writing-standards/screenplay/cinematic-styles",
|
|
41
|
+
"Configure active style in .augment/screenplay-config.json",
|
|
42
|
+
"Select specific film/franchise style to apply"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"configuration": {
|
|
46
|
+
"schema": "../schemas/feature-selection.json",
|
|
47
|
+
"defaultConfig": {
|
|
48
|
+
"enabled": true,
|
|
49
|
+
"selected": []
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"contents": [
|
|
53
|
+
"rules/mcu-avengers.md - Marvel Cinematic Universe ensemble superhero style",
|
|
54
|
+
"rules/blue-ruin.md - Incompetent protagonist thriller style (Jeremy Saulnier)",
|
|
55
|
+
"examples/style-applications.md - Cinematic style application examples"
|
|
56
|
+
],
|
|
57
|
+
"references": {
|
|
58
|
+
"mcu": "Marvel Cinematic Universe (2008-present)",
|
|
59
|
+
"blueRuin": "Blue Ruin (2013) - Jeremy Saulnier",
|
|
60
|
+
"futureStyles": "Additional film/franchise styles to be added"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|