@milenyumai/film-kit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +89 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +1 -0
- package/build/lib/configure.d.ts +2 -0
- package/build/lib/configure.js +119 -0
- package/build/lib/defaults.d.ts +2 -0
- package/build/lib/defaults.js +12 -0
- package/build/lib/fs.d.ts +3 -0
- package/build/lib/fs.js +23 -0
- package/build/lib/templates.d.ts +2 -0
- package/build/lib/templates.js +583 -0
- package/build/lib/types.d.ts +25 -0
- package/build/lib/types.js +1 -0
- package/build/postinstall.js +22 -0
- package/content/ARCHITECTURE.md +132 -0
- package/content/FILM-KIT-INFO.md +116 -0
- package/content/MASTER.md +689 -0
- package/content/RULES.md +233 -0
- package/content/agents/prompt-engineer.md +258 -0
- package/content/skills/audio-design/SKILL.md +307 -0
- package/content/skills/coverage-system/SKILL.md +681 -0
- package/content/skills/frame-chaining/SKILL.md +342 -0
- package/content/skills/prompt-structure/SKILL.md +429 -0
- package/content/skills/reference-locking/SKILL.md +303 -0
- package/content/skills/safety-compliance/SKILL.md +242 -0
- package/content/skills/visual-modes/SKILL.md +294 -0
- package/content/workflows/chain.md +106 -0
- package/content/workflows/finish.md +108 -0
- package/content/workflows/generate.md +207 -0
- package/content/workflows/safety-check.md +149 -0
- package/package.json +58 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
# Film Prompt System Architecture
|
|
2
|
+
|
|
3
|
+
> Professional Cinematic Prompt Engineering Toolkit for Google Flow + Veo 3.1
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 📋 Overview
|
|
8
|
+
|
|
9
|
+
Modular system consisting of:
|
|
10
|
+
|
|
11
|
+
- **1 Specialist Agent** - Technical Prompt Engineer
|
|
12
|
+
- **7 Skills** - Domain-specific knowledge modules
|
|
13
|
+
- **4 Workflows** - Slash command procedures
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## 🏗️ Directory Structure
|
|
18
|
+
|
|
19
|
+
```plaintext
|
|
20
|
+
.agent/
|
|
21
|
+
├── ARCHITECTURE.md # This file
|
|
22
|
+
├── MASTER.md # Main rules (entry point for AI tools)
|
|
23
|
+
├── agents/
|
|
24
|
+
│ └── prompt-engineer.md # Primary agent
|
|
25
|
+
├── skills/
|
|
26
|
+
│ ├── safety-compliance/ # Platform safety & celebrity ban
|
|
27
|
+
│ ├── reference-locking/ # Reference image system
|
|
28
|
+
│ ├── frame-chaining/ # Shot continuity protocol
|
|
29
|
+
│ ├── coverage-system/ # Mandatory coverage shots (NEW)
|
|
30
|
+
│ ├── visual-modes/ # Ultra Realism & style modes
|
|
31
|
+
│ ├── audio-design/ # Sound design rules
|
|
32
|
+
│ └── prompt-structure/ # Prompt engineering patterns
|
|
33
|
+
└── workflows/
|
|
34
|
+
├── generate.md # /generate command
|
|
35
|
+
├── chain.md # /chain command
|
|
36
|
+
└── safety-check.md # /safety-check command
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## 🤖 Agent
|
|
42
|
+
|
|
43
|
+
| Agent | Focus | Skills Used |
|
|
44
|
+
|-------|-------|-------------|
|
|
45
|
+
| `prompt-engineer` | Cinematic prompt generation for Veo 3.1 | All 7 skills |
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 🧩 Skills (7)
|
|
50
|
+
|
|
51
|
+
| Skill | Description |
|
|
52
|
+
|-------|-------------|
|
|
53
|
+
| `safety-compliance` | **Platform safety**, celebrity name prohibition, AUTO-ANONYMOUS (otomatik anonimleştirme), AUTO-SAFETY, safe framing, content restrictions |
|
|
54
|
+
| `reference-locking` | **Reference image enforcement**, EXACTLY language, repeat protocol |
|
|
55
|
+
| `frame-chaining` | **Shot continuity**, last frame → first frame chaining, scene transition protocol (fade, dissolve, match cut) |
|
|
56
|
+
| `coverage-system` | **Mandatory coverage shots** (Reaction, OTS, Insert, Cutaway, ECU, Wide) + L-cut/J-cut + 30° kuralı + **180° kuralı** + eyeline match + matching action + multi-character blocking |
|
|
57
|
+
| `visual-modes` | **Ultra Realism** default, stylization triggers, anti-AI artifact rules + **renk sürekliliği** + magic hour + flashback/rüya görsel ayrımı |
|
|
58
|
+
| `audio-design` | **Sound design** rules, voice realism, SFX, ambience, audio direction block + diegetic/non-diegetic ses ayrımı |
|
|
59
|
+
| `prompt-structure` | Image/video prompt templates, camera vocabulary, seed parameter, prompt rewriter, **re-take strategy**, coverage prompt yazım standartları (≥60 kelime) |
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## 🔄 Workflows (4)
|
|
64
|
+
|
|
65
|
+
| Command | Description |
|
|
66
|
+
|---------|-------------|
|
|
67
|
+
| `/generate` | Generate shots and SAVE TO FILES |
|
|
68
|
+
| `/chain` | Continue from last shot file |
|
|
69
|
+
| `/safety-check` | Validate prompts before delivery |
|
|
70
|
+
| `/finish` | Complete project, create summary |
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## 🎯 Skill Loading Protocol
|
|
75
|
+
|
|
76
|
+
```plaintext
|
|
77
|
+
User Scenario → Agent Activated → Load Required Skills
|
|
78
|
+
↓
|
|
79
|
+
safety-compliance (ALWAYS)
|
|
80
|
+
reference-locking (if refs provided)
|
|
81
|
+
frame-chaining (ALWAYS)
|
|
82
|
+
coverage-system (ALWAYS - mandatory)
|
|
83
|
+
visual-modes (check for style triggers)
|
|
84
|
+
audio-design (if dialogue/SFX needed)
|
|
85
|
+
prompt-structure (ALWAYS)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## 📊 Scenario Type Support
|
|
91
|
+
|
|
92
|
+
| Type | Camera Style | Lighting | Duration |
|
|
93
|
+
|------|--------------|----------|----------|
|
|
94
|
+
| **DRAMA/INTIMATE** | Close-ups, shallow DOF | Soft key light | 8s |
|
|
95
|
+
| **ACTION/THRILLER** | Dynamic, shake | High energy | 4s |
|
|
96
|
+
| **HISTORICAL/PERIOD** | Documentary touch | Period-accurate | 8s |
|
|
97
|
+
| **WAR/MILITARY** | Wide + close alternating | Harsh, dramatic | 8s |
|
|
98
|
+
| **NATURE/DOCUMENTARY** | Wide angle, telephoto | Natural, golden hour | 8s |
|
|
99
|
+
| **MUSICAL/PERFORMANCE** | Choreography-matched | Stage lighting | 8s |
|
|
100
|
+
| **COMMERCIAL/AD** | Premium, gimbal smooth | Rim light, clean | 8s |
|
|
101
|
+
| **HORROR/SUSPENSE** | Negative space, POV | Low-key, unsettling | 8s |
|
|
102
|
+
| **COMEDY** | Clear sightlines | Bright, even | 8s |
|
|
103
|
+
| **ROMANCE** | Two-shots, soft focus | Warm, soft | 8s |
|
|
104
|
+
|
|
105
|
+
---
|
|
106
|
+
|
|
107
|
+
## 🔗 Priority Hierarchy
|
|
108
|
+
|
|
109
|
+
| Priority | Rule |
|
|
110
|
+
|----------|------|
|
|
111
|
+
| **P0** | Platform Safety (overrides everything) |
|
|
112
|
+
| **P1** | Reference Fidelity (use refs EXACTLY) |
|
|
113
|
+
| **P2** | Chain Continuity (mandatory chaining) |
|
|
114
|
+
| **P3** | Story Integrity (user scenario fidelity) |
|
|
115
|
+
| **P4** | Visual Quality (Ultra Realism/mode) |
|
|
116
|
+
| **P5** | Technical Optimization |
|
|
117
|
+
| **P6** | User Preference |
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
## 📖 Quick Start
|
|
122
|
+
|
|
123
|
+
1. Load `MASTER.md` as system prompt in your AI tool
|
|
124
|
+
2. Provide your scenario
|
|
125
|
+
3. Share reference images for key characters
|
|
126
|
+
4. Specify batch size (1-10 shots)
|
|
127
|
+
5. Start generating
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
**Version:** 1.3.0 | **Platform:** Google Veo 3.1 | **Method:** Start Frame → End Frame → Video (EXTEND KULLANILMAZ)
|
|
132
|
+
> **Remember:** This system generates ENGLISH prompts optimized for Google Veo 3.1. Turkish headers are used for organization only.
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
# 🎬 Film-Kit Kullanım Kılavuzu
|
|
2
|
+
|
|
3
|
+
> Google Flow + Veo 3.1 için Hollywood standartında sinematik prompt mühendisliği
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 🚀 Hızlı Başlangıç
|
|
8
|
+
|
|
9
|
+
1. **Editörünüzü açın** (Cursor, VS Code, Antigravity)
|
|
10
|
+
2. Bu projeyi açın
|
|
11
|
+
3. AI'ya bir film senaryosu verin
|
|
12
|
+
4. Hollywood kalitesinde promptlar alın!
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## 📁 Dosya Yapısı
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
.agent/ ← Ana sistem klasörü
|
|
20
|
+
├── MASTER.md ← Tüm kuralların merkezi
|
|
21
|
+
├── ARCHITECTURE.md ← Sistem haritası
|
|
22
|
+
├── agents/ ← Uzman ajanlar
|
|
23
|
+
│ └── prompt-engineer.md ← Ana prompt üretici
|
|
24
|
+
├── skills/ ← Modüler yetenekler (7 adet)
|
|
25
|
+
│ ├── safety-compliance/ ← Güvenlik kuralları
|
|
26
|
+
│ ├── reference-locking/ ← Referans görsel kilitleme
|
|
27
|
+
│ ├── frame-chaining/ ← Kare zincirleme
|
|
28
|
+
│ ├── coverage-system/ ← Detay çekimleri (YENİ!)
|
|
29
|
+
│ ├── visual-modes/ ← Görsel modlar
|
|
30
|
+
│ ├── audio-design/ ← Ses tasarımı
|
|
31
|
+
│ └── prompt-structure/ ← Prompt şablonları
|
|
32
|
+
└── workflows/ ← İş akışları
|
|
33
|
+
├── generate.md ← /generate komutu
|
|
34
|
+
├── chain.md ← /chain komutu
|
|
35
|
+
├── safety-check.md ← /safety-check komutu
|
|
36
|
+
└── finish.md ← /finish komutu
|
|
37
|
+
|
|
38
|
+
RULES.md ← AI editörler için kurallar (otomatik okunur)
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 🎯 Temel Komutlar
|
|
44
|
+
|
|
45
|
+
| Komut | Ne Yapar |
|
|
46
|
+
|-------|----------|
|
|
47
|
+
| `/generate` | Senaryodan shot'lar üretir, dosyaya kaydeder |
|
|
48
|
+
| `/chain` | Önceki shot'tan devam eder |
|
|
49
|
+
| `/safety-check` | Tüm promptları güvenlik kontrolünden geçirir |
|
|
50
|
+
| `/finish` | Projeyi tamamlar, özet oluşturur |
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## 📝 Senaryo Verme Örneği
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
Bir Çanakkale Savaşı sahnesi istiyorum:
|
|
58
|
+
|
|
59
|
+
1. Sığınakta dua eden askerler
|
|
60
|
+
2. Subay telefonda: "Anladım paşam. Hemen harekete geçiyoruz."
|
|
61
|
+
3. Subay askerlere: "Kalkın aslanlar! Düşman zırhlıları top menziline giriyorlar!"
|
|
62
|
+
4. Askerler koşarak tabya mevzilerine çıkıyor
|
|
63
|
+
5. Subay dürbünle bakıyor: "Bekle, bekle... Şimdi! Ateş serbest!"
|
|
64
|
+
6. Toplar ateş açıyor
|
|
65
|
+
|
|
66
|
+
Referans görseller:
|
|
67
|
+
- subay.jpg → Subay karakteri
|
|
68
|
+
- askerler.jpg → Askerlerin kıyafetleri
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## ⚠️ Önemli Kurallar
|
|
74
|
+
|
|
75
|
+
### 1. Ünlü İsimleri YASAK
|
|
76
|
+
- ❌ "Atatürk benzeri bir adam"
|
|
77
|
+
- ✅ "50'li yaşlarda, keskin yüz hatları, kısa gri saçlı, mavi gözlü, koyu takım elbiseli bir adam"
|
|
78
|
+
|
|
79
|
+
### 2. Referans Görseller
|
|
80
|
+
- AI, verdiğiniz referans görselleri **birebir** kullanır
|
|
81
|
+
- Her shot'ta `[REFERENCE LOCK]` ile kilitleme yapılır
|
|
82
|
+
|
|
83
|
+
### 3. Diyaloglar
|
|
84
|
+
- Türkçe yazdığınız diyaloglar Türkçe kalır
|
|
85
|
+
- AI çevirmez, aynen kullanır
|
|
86
|
+
|
|
87
|
+
### 4. Süre
|
|
88
|
+
- Varsayılan süre: **8 saniye**
|
|
89
|
+
- Kısa aksiyon: 4-6 saniye
|
|
90
|
+
|
|
91
|
+
---
|
|
92
|
+
|
|
93
|
+
## 🎥 Desteklenen Türler
|
|
94
|
+
|
|
95
|
+
Drama, Komedi, Aksiyon, Korku, Bilim Kurgu, Romantik, Fantastik,
|
|
96
|
+
Tarihi, Belgesel, Gerilim, Müzikal, Western, Noir, Animasyon...
|
|
97
|
+
|
|
98
|
+
---
|
|
99
|
+
|
|
100
|
+
## 🔄 Güncelleme
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
npx @bakiacikgoz/film-kit update
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## 📖 Daha Fazla Bilgi
|
|
109
|
+
|
|
110
|
+
- Ana kurallar: `.agent/MASTER.md`
|
|
111
|
+
- Sistem haritası: `.agent/ARCHITECTURE.md`
|
|
112
|
+
- NPM: https://www.npmjs.com/package/@bakiacikgoz/film-kit
|
|
113
|
+
|
|
114
|
+
---
|
|
115
|
+
|
|
116
|
+
**İyi çekimler!** 🎬
|