kirby-forms-and-frontend-actions

kirby-forms-and-frontend-actions is a skill for Claude Code, Codex from bnomei/kirby-mcp. It costs 43 tokens per session (542 once invoked), scanned A, original, MIT.

Kirby tools for receiving website form submissions, including contact details, uploaded files, emails, page creation, and user registration. They cover checking, validating, storing, and responding to submitted data.

In plain words
What is it for?
Use them for contact forms, file uploads, emails with attachments, frontend-created pages, and registration or login flows.
Why use it?
They help prevent unsafe or incomplete submissions by checking request origin, input values, spam signals, and upload limits before processing data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use them for contact forms, file uploads, emails with attachments, frontend-created pages, and registration or login flows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions
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 bnomei/kirby-mcp --skill kirby-forms-and-frontend-actions
Clone the repo
git clone --depth 1 https://github.com/bnomei/kirby-mcp

Made for: Claude Code, Codex.

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 kirby-forms-and-frontend-actions

README.md
[![agentmods](https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions/github.svg)](https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions)
Your own site
<a href="https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions"><img src="https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions/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 kirby-forms-and-frontend-actions

Your own site · 80×15
<a href="https://agentmods.dev/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions"><img src="https://agentmods.dev/badge/skills/bnomei/kirby-mcp/kirby-forms-and-frontend-actions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 542 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00043 $0.00542
Opus 5 $0.00022 $0.00271
Sonnet 5 $0.00009 $0.00108
Haiku 4.5 $0.00004 $0.00054

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

Security

Grade A, and why

kirby-forms-and-frontend-actions 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 13d 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/kirby-forms-and-frontend-actions/SKILL.md · 62 lines

How it starts

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

Kirby Forms and Frontend Actions

KB entry points

  • kirby://kb/scenarios/39-basic-contact-form
  • kirby://kb/scenarios/40-frontend-file-uploads
  • kirby://kb/scenarios/41-email-with-attachments
  • kirby://kb/scenarios/42-creating-pages-from-frontend
  • kirby://kb/scenarios/43-user-registration-and-login

Required inputs

  • Form fields and validation rules.
  • Spam protection choice and error handling expectations.
  • Storage target and email settings.
  • Upload constraints (MIME/size) if files are involved.

Default controller flow

  • Verify CSRF and require the expected POST fields.
  • Validate and normalize input; return errors early.
  • Apply a single spam guard (default: honeypot).
  • Persist data or send email, then redirect with a success state.

Error payload shape

return [
  'errors' => ['email' => 'Invalid email'],
  'old' => $data,
];

Upload storage convention

  • Store files under a dedicated page (e.g. page('uploads')) or the current page.
  • Normalize filenames and enforce MIME/size limits before saving.

Common pitfalls

  • Missing CSRF verification on POST handlers.
  • Accepting uploads without MIME or size checks.

Workflow

  1. Clarify the form type, validation rules, spam protection, storage target, and email requirements.
  2. Call kirby:kirby_init and read kirby://roots.
  3. Inspect existing templates/controllers/snippets for patterns:
    • kirby:kirby_templates_index
    • kirby:kirby_controllers_index
    • kirby:kirby_snippets_index
  4. Read relevant config options via kirby://config/{option} (e.g. email, routes) when needed.
  5. Search the KB with kirby:kirby_search (examples: "basic contact form", "frontend file uploads", "email with attachments", "creating pages from frontend").
  6. Implement controller-driven validation and CSRF checks; keep templates thin and escape output.
  7. For uploads, enforce MIME/size limits and store files in safe locations.
  8. Verify by submitting forms in a browser and rendering success/error states with kirby:kirby_render_page.

Read the full file on GitHub · 62 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. 13d ago First seen · 62 lines · 43 tokens per session scan A f8f5ee1c27b9

Subscribe to this mod's changes

kirby-forms-and-frontend-actions is a skill published in the GitHub repository bnomei/kirby-mcp (59 stars, last pushed 13d ago), licensed MIT. It adds 43 tokens to every session and 542 once invoked, about $0.0002 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.