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.
npx skills add crealwork/ai-marketing-kit --skill paid-adsgit clone --depth 1 https://github.com/crealwork/ai-marketing-kitWrote 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.
[](https://agentmods.dev/skills/crealwork/ai-marketing-kit/paid-ads)<a href="https://agentmods.dev/skills/crealwork/ai-marketing-kit/paid-ads"><img src="https://agentmods.dev/badge/skills/crealwork/ai-marketing-kit/paid-ads/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.
<a href="https://agentmods.dev/skills/crealwork/ai-marketing-kit/paid-ads"><img src="https://agentmods.dev/badge/skills/crealwork/ai-marketing-kit/paid-ads.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00126 | $0.01652 |
| Opus 5 | $0.00063 | $0.00826 |
| Sonnet 5 | $0.00025 | $0.00330 |
| Haiku 4.5 | $0.00013 | $0.00165 |
Grade A, and why
paid-ads 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 11d 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.
4. 모든 호출은 Python urllib + utf-8 (Windows에서 curl+cp1252는 이모지 응답에 How it starts
The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zernio Ads
Zernio Ads API 하나로 Meta(FB/IG)·Google·TikTok·LinkedIn·Pinterest·X 7개 플랫폼의 유료 캠페인을 관리한다. 개발자 앱·앱 리뷰·플랫폼별 SDK 없이 Bearer 토큰 하나. Zernio 발행(포스팅) API를 이미 쓰고 있다면 같은 계정/키를 그대로 쓴다. (검증: zernio.com 공개 문서, 2026-07-16)
돈 게이트 (MANDATORY — 이 스킬의 존재 이유)
- 캠페인 단위 명시 승인: 플랫폼 + 예산(금액/일일·총액) + 기간 + 타깃을 유저에게 제시하고 명시적 "go"를 받기 전에는 어떤 ads 엔드포인트도 호출 금지. "광고 알아봐줘"는 승인 아님; "이 예산으로 돌려줘"가 승인.
- 타임아웃 ≠ 실패: 애매한 에러/타임아웃 시
GET /v1/ads/campaigns로 목록 먼저 조회 — 블라인드 재시도 = 중복 캠페인 = 중복 과금. - 생성 응답의 상태를 ASSERT — 의도와 다르면(즉시 라이브 등) 즉시 유저에게 보고.
- 모든 호출은 Python urllib + utf-8 (Windows에서 curl+cp1252는 이모지 응답에 크래시). 업데이트는 PUT (이 서버에서 PATCH는 405).
- 측정 선행 조건: GA4↔Google Ads 연결, 전환 이벤트, 랜딩 URL UTM이 준비돼 있어야 한다 (analytics-setup 스킬). 측정 없는 지출은 시작하지 않는다.
- A/B는 선택이 아니라 기본: 캠페인당 creative 최소 2개, 권장 3–4개
(훅 축 × 비주얼 축을 다르게 — image-gen 스킬로 변형 세트 생성). 단일 소재
캠페인은 학습 없는 지출이다. 네이밍
{campaign}_{axis}로 성과 추적, 24–48h 점검에서 진 소재는 PUT으로 일시정지.
Setup
- 키: env
ZERNIO_API_KEY(파일/채팅에 값 기록 금지). - Base
https://zernio.com/api/v1,Authorization: Bearer $ZERNIO_API_KEY. - 광고 계정 연결: Zernio Dashboard → Accounts에서 각 플랫폼의 광고 계정
(Meta는
act_…)까지 연결. VERIFY:GET /v1/accounts에 플랫폼 + adAccount 확인. - 전체 문서: docs.zernio.com (ads/boost-post, platforms/meta-ads 등).
A. 오가닉 포스트 부스트 (가장 흔한 경로)
Zernio로 발행/스케줄한 포스트의 postId를 그대로 쓴다.
POST /v1/ads/boost
{
"postId": "POST_ID",
"accountId": "ACCOUNT_ID",
"adAccountId": "act_123456789",
"platform": "facebook",
"name": "Summer sale boost",
"goal": "traffic",
"budget": { "amount": 25, "type": "daily" },
"schedule": { "startDate": "2026-01-15", "endDate": "2026-01-22" },
"targeting": { "age_min": 25, "age_max": 55, "countries": ["US", "GB"] }
}
B. 독립 캠페인 (creative부터)
POST /v1/ads/create
{
"platform": "metaads",
"accountId": "acc_metaads_123",
"adAccountId": "act_1234567890",
"name": "Spring sale - US Feed",
"goal": "conversions",
"budget": { "amount": 75, "type": "daily" },
"schedule": { "startDate": "...", "endDate": "..." },
"placements": ["facebook_feeds", "instagram_feeds", "instagram_reels"],
"creative": {
"headline": "...", "body": "...",
"imageUrl": "https://...",
"callToAction": "SHOP_NOW",
"landingPageUrl": "https://...?utm_source=facebook&utm_medium=cpc&utm_campaign=..."
},
"targeting": { "age_min": 25, "age_max": 55, "countries": ["US"],
"interests": [{ "id": "6003139266461", "name": "DevOps" }] }
}
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.
- 11d ago First seen · 105 lines · 126 tokens per session scan A 4bf9ffc43726
paid-ads is a skill published in the GitHub repository crealwork/ai-marketing-kit (18 stars, last pushed 1mo ago), licensed MIT. It adds 126 tokens to every session and 1,652 once invoked, about $0.0006 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…