uni1-image-ad: Instructions file for Claude Code

CLAUDE.md

uni1-image-ad CLAUDE.md is an instructions file for Claude Code from krusemediallc/uni1-image-ad. It costs 4,070 tokens per session, scanned A, original, MIT.

Project instructions for creating image advertisements for Meta, the company behind Facebook and Instagram, using Luma’s uni-1 image model and uploading them to Meta advertising accounts.

In plain words
What is it for?
Useful when setting up the project or changing its ad prompts, image-generation workflow, Meta uploads, or Luma integration.
Why use it?
They document the required setup, environment keys, model restrictions, and installation flow so the workflow uses the intended services and credentials.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

This is krusemediallc/uni1-image-ad's own configuration. It tells Claude Code how to work on uni1-image-ad itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything uni1-image-ad configures →

Reuse

Borrowing it

Nothing to install: this file belongs to krusemediallc/uni1-image-ad. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/krusemediallc/uni1-image-ad/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/krusemediallc/uni1-image-ad

Made for: Claude Code.

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 uni1-image-ad CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/krusemediallc/uni1-image-ad/claude-md/github.svg)](https://agentmods.dev/instructions/krusemediallc/uni1-image-ad/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/krusemediallc/uni1-image-ad/claude-md"><img src="https://agentmods.dev/badge/instructions/krusemediallc/uni1-image-ad/claude-md/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 uni1-image-ad CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/krusemediallc/uni1-image-ad/claude-md"><img src="https://agentmods.dev/badge/instructions/krusemediallc/uni1-image-ad/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 4,070 This file is loaded in full into every session.
When invoked 4,070 The same file — it is already loaded in full.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.04070 $0.04070
Opus 5 $0.02035 $0.02035
Sonnet 5 $0.00814 $0.00814
Haiku 4.5 $0.00407 $0.00407

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

Security

Grade A, and why

uni1-image-ad CLAUDE.md scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST https://agents.lumalabs.ai/v1/generations \
CLAUDE.md · 209 lines

How it starts

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

Uni1 — uni-1 image ads for Meta

A workbench for generating Meta/Facebook image ads with Luma's uni-1 model and uploading them to a Meta ad account via the Meta Ads CLI. The whole project is built around uni-1 specifically — its reference-grounded generation, brand-fidelity behavior, and aspect-ratio support are baked into the prompt library and the workflow. The model lock is enforced at the tooling layer, not left to humans to remember.

If a user asks you to "install this" / "set this up" / "help me get started" on a fresh clone: the install flow is two scripts plus walking them through .env. Run them in order:

  1. ./install.sh — checks Python 3.12+ and uv, installs the meta-ads CLI if missing, symlinks the skill into ~/.claude/skills/, scaffolds .env from .env.example. Idempotent. Will tell the user exactly what failed if a prereq is missing.
  2. Walk the user through .env — they need to provide LUMA_API_KEY, ACCESS_TOKEN, and AD_ACCOUNT_ID. You can't generate these for them. The Meta token in particular requires a multi-step UI flow in Meta Business Suite — see "Required env vars" + "Meta token setup" in README.md for the exact steps and scope list.
  3. ./verify.sh — confirms .env is filled, the skill is symlinked, meta auth status returns Authenticated, and the Luma API key works. Exits non-zero with a clear error if anything is wrong.
  4. Tell the user to restart Claude Code. Skills load at session start; the new symlink won't be picked up by the current session. They need to open a fresh Claude Code session in this repo, then they can say "make a uni-1 image ad" to use the skill.

If you're an agent helping someone set this up, read the rest of this file too for context on credentials, hard rules, and common pitfalls.

Repository layout

.
├── .env                            # local secrets, gitignored — see "Required env vars"
├── .env.example                    # template; copy to .env and fill in
├── .gitignore
├── CLAUDE.md                       # ← you are here (agent-facing setup notes)
├── README.md                       # human-facing intro + quickstart
├── install.sh                      # symlinks ./skills/* → ~/.claude/skills/
├── verify.sh                       # confirms env + skills + Meta auth + Luma API are working
├── skills/                         # Claude Code skills (versioned in this repo)
│   ├── uni1-image-ad/              # template-USING skill — generate + upload Meta ads
│   │   ├── SKILL.md
│   │   ├── scripts/                # generate_image.py, top_spending_ads.py, create_text_variant_creative.py
│   │   ├── references/             # prompt-library.md, ad-copy-frameworks.md, meta-cli-flags.md
│   │   └── state.json              # per-account cache (gitignored once populated)
│   └── image-ad-clone/             # template-CREATING skill — reverse-engineer ads into reusable prompts
│       ├── SKILL.md
│       └── references/template-format.md
├── docs/luma-agents-api/           # offline Luma API reference
│   ├── quickstart.md
│   ├── model.md                    # uni-1 capabilities, params, output specs
│   ├── image-generation.md         # type: "image" — every parameter
│   ├── image-editing.md            # type: "image_edit" — source + image_ref
│   ├── rate-limits.md              # 30 RPM / 10 concurrent jobs, headers, backoff
│   ├── error-handling.md           # every status code + failure_code
│   └── faq.md
├── Ad References/                  # swipe-file of real ads (used to seed prompts)
├── iterations/                     # validation runs that built the prompt library
│   ├── run_round.py                # parallel batch runner — fires N generations at once
│   ├── r1/                         # round-1 reproductions of Ad References
│   └── ag1-v2/                     # AG1 example fills, chrome-stripped (PNGs gitignored)
└── generated/                      # output PNGs + runs.jsonl audit log (gitignored)

Read the full file on GitHub · 209 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 · 209 lines · 4,070 tokens per session scan A e949f25223dc

Subscribe to this mod's changes

uni1-image-ad CLAUDE.md is an instructions file published in the GitHub repository krusemediallc/uni1-image-ad (11 stars, last pushed 4mo ago), licensed MIT. It adds 4,070 tokens to every session, about $0.0204 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens