production-agent

production-agent is a skill for Claude Code from lckx777/copy-chief-black. It costs 52 tokens per session (5,876 once invoked), scanned A, original, MIT.

A production-focused agent for writing direct-response marketing materials with a separate working context. It checks that research and strategic briefings exist before production continues.

In plain words
What is it for?
It is for producing VSLs, landing pages, advertising creatives, and batches of copy after research and briefing have passed their checks.
Why use it?
It helps prevent copy from being written before the required research and briefing work is complete. Validation gates make missing preparation visible before drafting starts.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; reads .claude/ paths; mentions subagents.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is Read ./research/voc/processed/linguistic-patterns.md 2>/dev/null || echo "Linguistic patterns nao encontrado — produzir sem Voice Sample".

Good fit It is for producing VSLs, landing pages, advertising creatives, and batches of copy after research and briefing have passed their checks.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/lckx777/copy-chief-black
agentmods
npx agentmods add skills/lckx777/copy-chief-black/production-agent

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 production-agent

README.md
[![agentmods](https://agentmods.dev/badge/skills/lckx777/copy-chief-black/production-agent/github.svg)](https://agentmods.dev/skills/lckx777/copy-chief-black/production-agent)
Your own site
<a href="https://agentmods.dev/skills/lckx777/copy-chief-black/production-agent"><img src="https://agentmods.dev/badge/skills/lckx777/copy-chief-black/production-agent/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 production-agent

Your own site · 80×15
<a href="https://agentmods.dev/skills/lckx777/copy-chief-black/production-agent"><img src="https://agentmods.dev/badge/skills/lckx777/copy-chief-black/production-agent.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,876 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.
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.00052 $0.05876
Opus 5 $0.00026 $0.02938
Sonnet 5 $0.00010 $0.01175
Haiku 4.5 $0.00005 $0.00588

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

Security

Grade A, and why

production-agent 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 9d 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.

framework/skills/production-agent/SKILL.md · 649 lines

How it starts

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

Production Agent

Subagent especializado em produção de copy com contexto isolado. Garante que research seja lido ANTES de produzir.


Pre-flight Check (Executado Automaticamente)

!~/.claude/hooks/production-preflight.sh $(pwd)

Se pre-flight retornar BLOCKED: PARAR imediatamente. Informar usuário para rodar research phase primeiro.


Contexto da Oferta (Descoberto em Runtime)

Research Disponível

!find . -path "*/research/*" -name "summary.md" 2>/dev/null | head -10

Briefings HELIX

!find . -path "*/briefings/phases/*" -name "*.md" 2>/dev/null | head -10

Síntese Consolidada

!cat ./research/synthesis.md 2>/dev/null | head -50 || echo "Synthesis nao encontrado"


Workflow de Producao (First Principles First) v6.3

Passo 1: GATE VALIDATION (MCP Enforcement)

# Confirma research completo
validate_gate gate_type="research" offer_path="[oferta]"

# Confirma HELIX completo
validate_gate gate_type="briefing" offer_path="[oferta]"
Status Ação
BLOCKED PARAR → Completar fase faltante primeiro
WARNING Mostrar ao usuário → Prosseguir com cautela
PASSED Continuar

⚠️ Passo 1.5: PRE-FLIGHT BLACK (v6.3) - OBRIGATÓRIO

REGRA: Briefing genérico = Produção genérica. RECUSAR antes de começar.

Checklist BLACK PRE-FLIGHT (verificar no briefing):

# Critério Onde Verificar Se Falhar
1 MUP tem mecanismo PROPRIETÁRIO? Fase 5 VOLTAR ao HELIX
2 MUS tem 4 Camadas COMPLETAS? Fase 6 VOLTAR ao HELIX
3 DRE e Escalada Emocional identificadas? Fase 3-4 ADICIONAR ao briefing
4 Especificidade (cena de filme + números, nomes, datas)? Fases 5-6 DETALHAR MUP/MUS
5 MUP/MUS STAND ≥80% confiança? validations/ ITERAR até STAND

Perguntas de Rejeição (responder NÃO para continuar):

  1. "O MUP poderia ser usado por concorrente sem alterar?"
  2. "O MUS é genérico (sem Gimmick Name único)?"
  3. "Falta especificidade no briefing (números redondos, exemplos vagos)?"

Read the full file on GitHub · 649 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 649 lines · 52 tokens per session scan A 137d8e09d0d7

Subscribe to this mod's changes

production-agent is a skill published in the GitHub repository lckx777/copy-chief-black (5 stars, last pushed 6mo ago), licensed MIT. It adds 52 tokens to every session and 5,876 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chronicle

Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…

microsoft/vscode · 72 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens