بنقرة واحدة
kimi-shot-plan-schema
Pydantic schema definition for structured Kimi shot plans in the Forge Hermes agent.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Pydantic schema definition for structured Kimi shot plans in the Forge Hermes agent.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
A specialized AI agent that ruthlessly evaluates all marketing assets against world-class standards, ensuring only premium content is approved for final delivery.
A specialized framework for generating high-fidelity prompts optimized for Flux.2 (image) and LTX 2.5 (video). Focuses on materiality, optical physics, temporal dynamics, and cinematic technicality to move beyond "vibe-coded" descriptions.
Automates the transformation of narrative Markdown prompts into technical JSON payloads for Z-Image Turbo ComfyUI workflows. Handles extraction, sanitization against banned terms, and dynamic parameter injection (Resolution/Node Targeting).
Transforms narrative script data into cinematic prompt batches for FLUX/LTX.
Expert-tier prompting protocol for Grok Imagine Video Generation (xAI). Focuses on 'Hollywood sequence' narrative prose, SCENE LOCK consistency, and handheld realism.
High-precision prompting protocol for LTX 2.3 (Lightricks) video generation, optimized for ComfyUI VFX pipelines and local control. Incorporates cinematic prose, camera motion selectors, and the community-standard 3-stage sampling hack.
| name | kimi-shot-plan-schema |
| description | Pydantic schema definition for structured Kimi shot plans in the Forge Hermes agent. |
| version | 1 |
| tags | ["pydantic","schema","kimi","shot-plan"] |
| categories | ["mlops"] |
class ShotPlan(BaseModel): campaign_id: str = Field(..., description="Unique identifier for the campaign") shot_id: str = Field(..., description="Unique identifier for the shot within the campaign") sequence: int = Field(..., description="Sequential number of the shot in the scene") narrative_intent: str = Field(..., description="Brief description of what is happening in this shot") visual_brief: str = Field(..., description="Short visual description for the shot generation") characters: List[str] = Field(..., description="List of character names appearing in this shot") environment: str = Field(..., description="Setting or environment description") camera_direction: str = Field(..., description="Camera movement and angle direction") lighting_direction: str = Field(..., description="Lighting setup direction and quality") rationale: str = Field(..., description="Reasoning behind this shot selection and continuity") constraints: List[str] = Field(..., description="Specific constraints that must be met for generation")