init-landing-system

init-landing-system is a skill for Claude Code from monthu56/landforge. It costs 113 tokens per session (1,085 once invoked), scanned A, original, MIT.

A setup tool that installs a landing-page generation system into an existing Git project. The system includes tools for creating pages, running A/B tests, keeping an audit log, preparing ads, and related project files.

In plain words
What is it for?
Use it to bootstrap the system in a new project or copy it into another repository, with project details such as the brand, domains, and page slug.
Why use it?
It saves you from assembling the landing-page workflow and its supporting files by hand. Existing files are not overwritten by default.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: reads .claude/ paths; mentions CLAUDE.md; names the AskUserQuestion tool.

Good fit Use it to bootstrap the system in a new project or copy it into another repository, with project details such as the brand, domains, and page slug.

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

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 init-landing-system

README.md
[![agentmods](https://agentmods.dev/badge/skills/monthu56/landforge/init-landing-system.svg)](https://agentmods.dev/skills/monthu56/landforge/init-landing-system)
Your own site
<a href="https://agentmods.dev/skills/monthu56/landforge/init-landing-system"><img src="https://agentmods.dev/badge/skills/monthu56/landforge/init-landing-system.svg" alt="Measured on agentmods" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,085 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.00113 $0.01085
Opus 5 $0.00056 $0.00543
Sonnet 5 $0.00023 $0.00217
Haiku 4.5 $0.00011 $0.00109

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

Security

Grade A, and why

init-landing-system 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 7d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (reference/system/skills/landing-ads/scripts/build_utm.py, reference/system/skills/landing-ads/scripts/check_ads.py, reference/system/skills/landing-experiment/scripts/check_experiment.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

.claude/skills/init-landing-system/SKILL.md · 70 lines

How it starts

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

init-landing-system — развёртывание системы в проекте

Ставит всю систему генерации лендингов в существующий проект из снимка (reference/system/) + шаблонов (reference/templates/), подставляя инфраструктурные значения целевого проекта. Безопасно: существующие файлы по умолчанию не перезаписываются.

Когда и где

  • Запускать в целевом проекте (куда ставим систему), не в эталоне-источнике.
  • Чтобы skill был доступен в любом проекте — установить его в user-level: bash scripts/install_user.sh (копирует skill со снимком в ~/.claude/skills/). После этого /init-landing-system доступен везде.
  • Снимок системы обновляется из эталона скриптом scripts/sync_templates.sh (запускать в эталонном репо после изменений в скиллах/CI/инфре, затем переустановить в user-level).

Workflow

1. Проверки

  • Целевой проект — git-репозиторий (если нет — предложи git init).
  • Это не сам эталон-источник (init_project.py предупредит, если увидит себя в целевом).

2. Собрать параметры

Нужно (если не заданы — спроси через AskUserQuestion):

  • brand — название проекта/бренда;
  • prod-domain — канонический прод-домен;
  • staging-domain — staging-домен;
  • slug — базовый slug (из него имена контейнеров <slug>-landing / new-<slug>-landing и каталоги /root/<container>; можно переопределить --prod-container/--staging-dir и т.д.).

3. Предпросмотр (dry-run)

python3 .claude/skills/init-landing-system/scripts/init_project.py \
  --brand "<Brand>" --prod-domain <prod> --staging-domain <staging> --slug <slug> \
  --target <path-to-project> --dry-run

Покажет, что будет записано и что уже существует (конфликты).

4. Развернуть

Убери --dry-run. Существующие файлы пропускаются (перечислятся). Чтобы перезаписать конкретные — повтори с --force (осторожно: затрёт правки целевого проекта).

5. Что получит проект

.claude/skills/ (4 генераторных скилла), .github/workflows/ (deploy + cleanup-preview под домены проекта), deploy/nginx.{prod,staging}.conf, docs/adr/ (README + template), experiments/README.md, .gitignore, стартовые README.md и CLAUDE.md.

Read the full file on GitHub · 70 lines

Files

What ships with it

32 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. 7d ago First seen · 70 lines · 0 tokens per session scan A 19d2cc0c73b9

Subscribe to this mod's changes

init-landing-system is a skill published in the GitHub repository monthu56/landforge (10 stars, last pushed 3mo ago), licensed MIT. It adds 113 tokens to every session and 1,085 once invoked, about $0.0006 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-31.

Related

Other skills, from other repositories

Landing Page Copy Improver

Rewrites landing page copy to be more compelling, benefit-focused, and conversion-optimized.

Notysoty/openagentskills · 24 tokens

landing-page-scaffold

Generate a self-contained landing page HTML prototype with five standard sections (Hero → Social Proof → Features → Pricing → CTA), outputting a single inlined HTML file ready to preview in any browser. Triggered when the user asks to build, generate, or scaffold a landing page, wireframe, or marketing page prototype…

serejaris/kimi-skills · 81 tokens

devops-engineer

Creates Dockerfiles, configures CI/CD pipelines, writes Kubernetes manifests, and generates Terraform/Pulumi infrastructure templates. Handles deployment automation, GitOps configuration, incident response runbooks, and internal developer platform tooling. Use when setting up CI/CD pipelines, containerizing…

Jeffallan/claude-skills · 107 tokens

webhook-management

Configure and validate CCAM webhook targets across supported chat, incident, automation, and generic providers. Use when listing provider requirements, creating or updating a target, scoping it to alert rules, sending a test notification, reviewing delivery history, or deleting a target.

hoangsonww/Claude-Code-Agent-Monitor · 56 tokens

Supply Chain Security

Software supply chain security — SBOM generation and analysis, dependency confusion and typosquatting detection, malicious package indicators, CI/CD pipeline hardening, and artifact provenance/signing (SLSA, Sigstore).

Masriyan/Claude-Code-CyberSecurity-Skill · 47 tokens

review-tooling

Detect what dev tooling infrastructure a project has and flag gaps across linters, formatters, pre-commit hooks, test runners, and CI/CD pipelines. Returns structured findings without applying changes. Use when the user asks to "review tooling", "check project tooling", "what tooling is missing", "review dev…

tobihagemann/turbo · 74 tokens