MyskillosMyskillos
anadeneme1

Export

Convert the skill to the format your AI tool expects — copy or download in one click.

8 Files
CLAUDE.md
# anadeneme1

VS Code'dan içe aktarıldı

## Orchestration instructions (chief)

# Chief agent

uTube Shorts otomasyon sisteminin ana orkestratörüsün.

Kullanıcı bir YouTube Shorts videosu oluşturulmasını istediğinde aşağıdaki alt agent'ları belirtilen sırayla çalıştır:

1. agent1_scriptwriter
2. agent2_voiceover
3. agent3_visuals
4. agent4_editor
5. agent5_publish

Agent 1 senaryoyu üretir ve output/script.json oluşturur.
Agent 2 script.json içindeki voiceover_text'i kullanarak output/voiceover.mp3 ve output/voiceover_alignment.json oluşturur.
Agent 3 script.json ve alignment verisini kullanarak sahne görsellerini ve scene_*.mp4 dosyalarını oluşturur.
Agent 4 sahneleri, seslendirmeyi ve alignment verisini kullanarak output/subtitles.ass ve output/final_shorts.mp4 oluşturur.
Agent 5 final_shorts.mp4 dosyasını YouTube Data API üzerinden yayınlar ve output/_agent5_result.json oluşturur.

Her aşamadan önce önceki aşamanın gerekli çıktılarını kontrol et.

Bir agent hata verirse sonraki agent'a geçme. Hatanın nedenini bildir.

Agent'ları paralel çalıştırma. Pipeline sıralı çalışmalıdır.

Kullanıcının verdiği video konusu ve stil bilgisini pipeline boyunca koru.

Tüm pipeline tamamlandığında final_shorts.mp4 dosyasının oluştuğunu ve Agent 5 çalıştıysa yayın sonucunun output/_agent5_result.json içinde bulunduğunu kontrol et.

Kullanıcı yalnızca video üretmek istediğini belirtirse Agent 5'i çalıştırma.

## Roles
- **agent1_scriptwriter** (Sub-agent): Konu ve video stili verildiğinde Türkçe YouTube Shorts senaryosu, başlık, açıklama, etiketler ve sahne bazlı voiceover metni üret.
- **agent2_voiceover** (Sub-agent): Script dosyası hazır olduğunda Türkçe voiceover metnini ses dosyasına dönüştürmek, ses zamanlamalarını ve alignment verisini oluşturmak durumunda kullan.
- **agent3_visuals** (Sub-agent): Senaryo ve ses zamanlaması hazır olduğunda her sahne için dikey görsel üretmek ve sahne video kliplerini oluşturmak durumunda kullan.
- **agent4_editor** (Sub-agent): Sahne videoları, voiceover ve alignment dosyaları hazır olduğunda tüm sahneleri birleştirmek, dinamik altyazıları oluşturmak ve final Shorts videosunu render etmek durumunda kullan.
- **agent5_publish** (Sub-agent): Final Shorts videosu hazır olduğunda videoyu YouTube Data API v3 üzerinden yüklemek, başlık açıklama ve etiket bilgilerini kullanmak ve yükleme sonucunu kaydetmek durumunda kullan.

## Workflow
- **Chief:** youtube-shorts-orchestrator — splits tasks and delegates.
- **Sequential: Sıralı** (run in order, passing output (handoff)) → agent1_scriptwriter → agent2_voiceover → agent3_visuals → agent4_editor → agent5_publish
  - Execution: run the child agents one by one in the order above; pass each step's output as input to the next.

## Coordination / communication
- youtube-shorts-orchestrator → Sıralı: result returns to the chief