fix-my-look

fix-my-look is a skill for Claude Code from Pika-Labs/Pika-Plugins. It costs 161 tokens per session (2,872 once invoked), scanned A, original, Apache-2.0.

A video-editing skill that changes parts of a video from a written request while preserving the person’s face, movement, speech, audio, and closest supported aspect ratio.

In plain words
What is it for?
Making edits such as turning a scene into a neon night setting, changing an outfit, or placing someone on a beach.
Why use it?
It avoids manually rebuilding a video when you want to change its setting, lighting, clothing, weather, or mood.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the pika plugin — 20 skills, 1 MCP server shipped together

Good fit Making edits such as turning a scene into a neon night setting, changing an outfit, or placing someone on a beach.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pika-labs/pika-plugins/fix-my-look
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Pika-Labs/Pika-Plugins --skill fix-my-look
Clone the repo
git clone --depth 1 https://github.com/Pika-Labs/Pika-Plugins

Made for: Claude Code.

Or install pika, the plugin that ships this one along with the rest of its 20 skills, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fix-my-look

README.md
[![agentmods](https://agentmods.dev/badge/skills/pika-labs/pika-plugins/fix-my-look/github.svg)](https://agentmods.dev/skills/pika-labs/pika-plugins/fix-my-look)
Your own site
<a href="https://agentmods.dev/skills/pika-labs/pika-plugins/fix-my-look"><img src="https://agentmods.dev/badge/skills/pika-labs/pika-plugins/fix-my-look/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fix-my-look

Your own site · 80×15
<a href="https://agentmods.dev/skills/pika-labs/pika-plugins/fix-my-look"><img src="https://agentmods.dev/badge/skills/pika-labs/pika-plugins/fix-my-look.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 161 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,872 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 21 Jul 2026
  • Snyk warn 21 Jul 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00161 $0.02872
Opus 5 $0.00081 $0.01436
Sonnet 5 $0.00032 $0.00574
Haiku 4.5 $0.00016 $0.00287

Measured 10d ago against content hash 51ffcbbbeb3a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

fix-my-look scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fix-my-look/SKILL.md · 218 lines

How it starts

The opening of the file, as written. The whole thing — 218 lines — stays where its author put it; the contents beside it link to each section on GitHub.

fix-my-look

Edit the source's first usable frame with gpt-image-2 from the user's prompt, then propagate that look across the clip with kling reference-video while locking the original face, motion and audio via the original video + audio as references. All prep happens in one normalize_video call for short clips, or one normalize call per segment for longer clips. The output ratio uses the normalized clip's closest supported output ratio; this skill does NOT reframe the source video.

Inputs

  • <source> — path or URL to a video file with audio
  • <change_prompt> — what to change (e.g. "make it night with neon lights", "change my shirt to a leather jacket", "put me on a beach in Hawaii")

Empty-args menu

  1. "What's the source video path?"
  2. "What do you want to change? (e.g. 'put me on a beach', 'make it night')"

Workflow

Working dir: ~/Downloads/fix-my-look/<run-id>/.

Step 0 — Cost, timer and task IDs

Every tool named below is a Pika MCP tool, written by its bare name. Call it under whatever prefix your session exposes for the Pika MCP.

Start a timer when the source and change prompt are known. Before paid generation, call estimate_cost for the planned generate_image_edit, generate_reference_video, any multi-segment edit_concat, and any optional audio/lipsync repair call. If cost is not surfaced by the host, say Cost not surfaced by this harness in the final report instead of guessing. When any tool returns a task_id, copy the exact value into the run notes and reuse it verbatim; do not hand-type long JWT-style task IDs.

Step 1 — Prepare the clip

Local file? upload_asset it first; an HTTPS media URL passes directly. Decide the source windows before normalizing: use one 14.8s window for sources <=15s, and split longer sources into ordered 14.8s windows. Call normalize_video(video_url=<source>, start_s=<offset>, max_duration_s=14.8, extract_audio=true, extract_face_frame=true) once per window. Use the first window's face_frame_url for the edited still; use each window's video_url as that segment's motion/identity reference. For multi-window clips, also call extract_audio_from_video(video_url=<source>) so the final merged output can be restored to one continuous source audio track.

Read the full file on GitHub · 218 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 218 lines · 161 tokens per session scan A 51ffcbbbeb3a

Subscribe to this mod's changes

fix-my-look is a skill published in the GitHub repository Pika-Labs/Pika-Plugins (40 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 161 tokens to every session and 2,872 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens