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 organic-socialgit 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/organic-social)<a href="https://agentmods.dev/skills/crealwork/ai-marketing-kit/organic-social"><img src="https://agentmods.dev/badge/skills/crealwork/ai-marketing-kit/organic-social/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/organic-social"><img src="https://agentmods.dev/badge/skills/crealwork/ai-marketing-kit/organic-social.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.00124 | $0.01292 |
| Opus 5 | $0.00062 | $0.00646 |
| Sonnet 5 | $0.00025 | $0.00258 |
| Haiku 4.5 | $0.00012 | $0.00129 |
Grade A, and why
organic-social 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.
- Windows: 모든 호출 Python urllib + utf-8 (curl+cp1252는 이모지 응답에 크래시 — How it starts
The opening of the file, as written. The whole thing — 82 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zernio Social
Zernio 발행 API 하나로 여러 플랫폼에 오가닉 포스트를 올리고 예약한다. 콘텐츠 캘린더 자동화의 실행 레이어. (API 사실관계 검증: 2026-07)
발행 게이트 (MANDATORY)
에이전트의 상한선은 "유저 승인 하의 예약"이다. "만들어줘/써줘"는 발행 승인이 아니다 — "올려줘/스케줄해줘"가 승인이며, 목적지(플랫폼)별로 받는다. 자동화 루프(캘린더)도 최초 셋업 때 캘린더 전체를 승인받고, 콘텐츠가 바뀌면 다시.
Setup
- 계정: zernio.com 가입 → Dashboard → Accounts → 각 플랫폼 연결. Instagram은 Business/Creator 계정만 API 게시 가능 (개인 계정은 IG 앱에서 전환: 설정 → 계정 유형 및 도구 → 프로페셔널 계정으로 전환).
- 키: env
ZERNIO_API_KEY. Basehttps://zernio.com/api/v1,Authorization: Bearer. - VERIFY:
GET /v1/profiles200 +GET /v1/accounts에 대상 플랫폼 accountId. - Windows: 모든 호출 Python urllib + utf-8 (curl+cp1252는 이모지 응답에 크래시 — 실제 중복 게시 사고의 원인이었다).
A. 미디어 업로드 (presign)
POST /media/presign { "filename": "...", "contentType": "video/mp4" }
→ { uploadUrl, publicUrl }
→ PUT 바이트를 uploadUrl로 (긴 영상은 timeout ≥ 1800s)
→ publicUrl을 mediaItems에 사용
B. 포스트 생성 (즉시 / 예약)
POST /posts
{ "content": "캡션...",
"mediaItems": [{ "url": "https://...", "thumbnail": "https://..." }],
"platforms": ["instagram", "youtube"],
"scheduledFor": "2026-07-20T09:00:00Z", "timezone": "Asia/Seoul" }
// 또는 "publishNow": true
- 한 포스트로 여러 플랫폼 동시 타깃 — 같은 시각에 함께 나간다.
- 응답
post.status∈ scheduled|published|draft|pending — 기대값을 ASSERT. scheduled를 기대했는데 published면 이미 라이브 — 즉시 유저에게 보고. - YouTube
platformSpecificData:{title(≤100), visibility, madeForKids}; 커스텀 썸네일은mediaItems[].thumbnail(<2MB, ≥640px, 일반 영상만 — Shorts는 불가; ≤3분 세로 영상은 자동으로 Short 분류). - Instagram:
{contentType: "reels", shareToFeed: true}; 릴스 9:16, 3–90s, ≤300MB, H.264. 릴스 커버는 발행 전에 첨부 — 발행 후 API 변경 불가. - IG는 YouTube보다 1–3분 늦게 게시된다 — 정상이지 실패가 아니다.
C. 수정 · 즉시 발행 · 확인
- 재예약/수정:
PUT /posts/{id}(PATCH는 405). - "지금 올려줘": PUT으로
scheduledFor= now+2분 (과거 시각은 거부될 수 있음) → 30초 간격 GET 폴링 → 전 플랫폼published확인 → platformPostUrl 보고. - 타임아웃 ≠ 실패: 대용량 POST는 클라이언트 타임아웃 후에도 서버에서 성공해
있을 수 있다. 애매하면
GET /v1/posts?limit=10에서 내 콘텐츠를 먼저 찾고, 진짜 없을 때만 재시도. 블라인드 재시도 = 중복 게시.
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 · 82 lines · 124 tokens per session scan A 9828092db157
organic-social is a skill published in the GitHub repository crealwork/ai-marketing-kit (18 stars, last pushed 1mo ago), licensed MIT. It adds 124 tokens to every session and 1,292 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…