skills/inferen-sh/p-video/SKILL.md
Generate videos with Pruna P-Video and WAN models via inference.sh CLI. Models: P-Video, WAN-T2V, WAN-I2V. Capabilities: text-to-video, image-to-video, audio support, 720p/1080p, fast inference. Pruna optimizes models for speed without quality loss. Triggers: pruna video, p-video, pruna ai video, fast video generation, optimized video, wan t2v, wan i2v, economic video generation, cheap video generation, pruna text to video, pruna image to video
npx skillsauth add aiskillstore/marketplace p-videoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Generate videos with Pruna's optimized video models via inference.sh CLI.

Requires inference.sh CLI (
infsh). Get installation instructions:npx skills add inference-sh/skills@agent-tools
infsh login
infsh app run pruna/p-video --input '{"prompt": "drone shot flying over a forest at sunset"}'
Pruna optimizes AI models for speed without sacrificing quality.
| Model | App ID | Best For |
|-------|--------|----------|
| P-Video | pruna/p-video | Text-to-video, image-to-video, with audio |
| WAN-T2V | pruna/wan-t2v | Text-to-video, 480p/720p |
| WAN-I2V | pruna/wan-i2v | Animate images, 480p/720p |
infsh app run pruna/p-video --input '{
"prompt": "waves crashing on a beach at sunset",
"duration": 5,
"resolution": "720p"
}'
infsh app run pruna/p-video --input '{
"prompt": "gentle camera movement, clouds drifting",
"image": "https://your-image.jpg"
}'
P-Video supports audio input that syncs with the video:
infsh app run pruna/p-video --input '{
"prompt": "person talking in an interview setting",
"audio": "https://your-audio.mp3"
}'
Fast and economical text-to-video:
infsh app run pruna/wan-t2v --input '{
"prompt": "a cat playing with a ball of yarn",
"resolution": "720p",
"duration": 5
}'
Animate any still image:
infsh app run pruna/wan-i2v --input '{
"prompt": "gentle movement, natural motion, subtle breathing",
"image": "https://portrait.jpg",
"resolution": "720p"
}'
infsh app run pruna/p-video --input '{
"prompt": "cinematic landscape with dramatic clouds",
"resolution": "1080p",
"duration": 5
}'
infsh app run pruna/p-video --input '{
"prompt": "quick concept test video",
"draft": true
}'
| Model | Resolutions | Pricing | |-------|-------------|---------| | P-Video | 720p, 1080p | Per second, varies by resolution/draft | | WAN-T2V | 480p, 720p | $0.05 (480p), $0.10 (720p) per video | | WAN-I2V | 480p, 720p | $0.05 (480p), $0.11 (720p) per video |
infsh app list --namespace pruna
# Full platform skill (all 150+ apps)
npx skills add inference-sh/skills@agent-tools
# All video generation models
npx skills add inference-sh/skills@ai-video-generation
# Image-to-video guide
npx skills add inference-sh/skills@image-to-video
# Pruna image generation
npx skills add inference-sh/skills@p-image
# Text-to-speech (for video narration)
npx skills add inference-sh/skills@text-to-speech
Browse all apps: infsh app list
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.