keitaro-landing

keitaro-landing is a skill for Claude Code from iso73-ops/claude-keitaro. It costs 64 tokens per session (766 once invoked), scanned A, original, MIT.

A tool for creating and managing affiliate marketing pages in Keitaro, including prelanding pages, product pages, registration pages, and moderation-friendly pages. It can produce the page content as HTML.

In plain words
What is it for?
Creating, listing, and updating landing pages or prelanding pages for affiliate offers, with headlines, stories, quizzes, calls to action, trust details, and disclaimers.
Why use it?
It removes the need to write each campaign page and configure it manually in Keitaro. It also helps organize different page types for different advertising campaigns.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths.

Part of the claude-keitaro plugin — 8 skills, 3 agents shipped together

Good fit Creating, listing, and updating landing pages or prelanding pages for affiliate offers, with headlines, stories, quizzes, calls to action, trust details, and disclaimers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iso73-ops/claude-keitaro/keitaro-landing
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 iso73-ops/claude-keitaro --skill keitaro-landing
Clone the repo
git clone --depth 1 https://github.com/iso73-ops/claude-keitaro

Made for: Claude Code.

Or install claude-keitaro, the plugin that ships this one along with the rest of its 8 skills, 3 agents.

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 keitaro-landing

README.md
[![agentmods](https://agentmods.dev/badge/skills/iso73-ops/claude-keitaro/keitaro-landing/github.svg)](https://agentmods.dev/skills/iso73-ops/claude-keitaro/keitaro-landing)
Your own site
<a href="https://agentmods.dev/skills/iso73-ops/claude-keitaro/keitaro-landing"><img src="https://agentmods.dev/badge/skills/iso73-ops/claude-keitaro/keitaro-landing/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 keitaro-landing

Your own site · 80×15
<a href="https://agentmods.dev/skills/iso73-ops/claude-keitaro/keitaro-landing"><img src="https://agentmods.dev/badge/skills/iso73-ops/claude-keitaro/keitaro-landing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 766 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.00064 $0.00766
Opus 5 $0.00032 $0.00383
Sonnet 5 $0.00013 $0.00153
Haiku 4.5 $0.00006 $0.00077

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

Security

Grade A, and why

keitaro-landing 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 12d 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/keitaro-landing/SKILL.md · 117 lines

How it starts

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

Keitaro Landing Page Management

Process

  1. Read keitaro/references/landing-specs.md for vertical-specific specs
  2. Read keitaro/references/keitaro-api.md for landing API endpoints
  3. Determine landing type (prelanding, landing, white page)
  4. Generate content or manage existing landings
  5. Create/update in Keitaro via API

Landing Types

Prelanding (Advertorial/Quiz)

Warmup page before offer. Increases CR by qualifying traffic.

  • Advertorial (fake news article)
  • Quiz/survey funnel
  • Review/comparison page
  • Success story

Landing (Product/Registration Page)

Main conversion page.

  • Product page
  • Registration form
  • Bonus/offer page

White Page (Safe/Compliant)

Clean page for moderation bots.

  • Blog article (health, travel, cooking)
  • Company page
  • News article
  • Must pass Facebook/Google moderation

Generate Landing Content

When user says "generate a prelanding for [vertical] [GEO]":

  1. Identify vertical from references/landing-specs.md
  2. Determine language from GEO
  3. Generate content following vertical specs:
    • Headline (hook)
    • Body (story/review/quiz)
    • CTA button text
    • Trust elements
    • Required disclaimers
  4. Output as HTML

Content Generation Guidelines

  • Write in target GEO language (or English if user prefers)
  • Follow vertical-specific structure from references/landing-specs.md
  • Include all required compliance elements
  • Mobile-first design
  • Fast-loading (minimal external resources)

List Landings

python3 ~/.claude/skills/keitaro/scripts/keitaro_api.py landings list

Show as table:

| ID | Name | Type | Group | Offers | Updated |
|----|------|------|-------|--------|---------|
| 5  | gambling_de_v1 | redirect | Gambling | offer_1 | 2d ago |
| 6  | gambling_de_v2 | redirect | Gambling | offer_1 | 1d ago |
| 8  | white_blog | local | White | — | 5d ago |

Create Landing in Keitaro

After generating content:

  1. Create landing via API:
{
  "name": "gambling_de_prelanding_v1",
  "action_type": "redirect",
  "url": "https://example.com/prelanding/",
  "group_id": 1
}

Read the full file on GitHub · 117 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. 12d ago First seen · 117 lines · 64 tokens per session scan A b3870757d66b

Subscribe to this mod's changes

keitaro-landing is a skill published in the GitHub repository iso73-ops/claude-keitaro (24 stars, last pushed 5mo ago), licensed MIT. It adds 64 tokens to every session and 766 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-08-30.

Related

Other skills, from other repositories

accessibility

Audits code for WCAG 2.2 AA compliance and provides design guidance for accessible components. Covers semantic HTML, ARIA, keyboard nav, contrast, focus management, and motion.

RealDougEubanks/ClaudeMarketplace · 41 tokens

tools-unity-ugui

Unity UI patterns including Canvas optimization, list virtualization, and mobile-friendly UI.

IdoCohen560/claude-unity-game-studio · 22 tokens

uw-ui-toolkit-binder

Generate Unity 6+ UI Toolkit Runtime Data Binding code using MVVM pattern with [CreateProperty], DataBinding, and PropertyPath. Use when creating UI screens, HUDs, menus, inventories, settings panels, or any data-bound UI elements with UI Toolkit. Triggers on requests like "create a health bar", "build the HUD", "make…

IdoCohen560/claude-unity-game-studio · 177 tokens

team-ui

Orchestrate the UI team through the full UX pipeline: from UX spec authoring through visual design, implementation, review, and polish. Integrates with /ux-design, /ux-review, and studio UX templates.

IdoCohen560/claude-unity-game-studio · 47 tokens

r3f-best-practices

React Three Fiber (R3F) and Poimandres ecosystem best practices. Use when writing, reviewing, or optimizing R3F code. Triggers on tasks involving @react-three/fiber, @react-three/drei, zustand, @react-three/postprocessing, @react-three/rapier, or leva.

zebbern/claude-code-guide · 74 tokens

ads-landing

Audit paid-ad landing pages for message match, mobile experience, performance, accessibility, trust, forms, consent, tracking, security, and conversion friction. Use for landing-page audit, post-click experience, LP audit, conversion-rate optimization, form optimization, ad-to-page message match, redirects, blocked…

AgriciDaniel/claude-ads · 81 tokens