web-forms

web-forms is a skill for Claude Code, Codex from lubusIN/frappe-skills. It costs 37 tokens per session (1,524 once invoked), scanned A, original, MIT.

A guide for building public web forms in Frappe. Frappe is a web application framework, and its Web Forms let people submit information without access to the administration interface.

In plain words
What is it for?
Use it to create support requests, feedback forms, registrations, self-service submissions, and similar portals connected to a Frappe DocType.
Why use it?
It helps expose selected fields safely to customers or other external users instead of requiring them to use the internal Desk interface. It also covers login, editing, resubmission, and file uploads.

Skill for Claude CodeCodex

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

Good fit Use it to create support requests, feedback forms, registrations, self-service submissions, and similar portals connected to a Frappe DocType.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lubusin/frappe-skills/web-forms
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 lubusIN/frappe-skills --skill web-forms
Clone the repo
git clone --depth 1 https://github.com/lubusIN/frappe-skills

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 web-forms

README.md
[![agentmods](https://agentmods.dev/badge/skills/lubusin/frappe-skills/web-forms/github.svg)](https://agentmods.dev/skills/lubusin/frappe-skills/web-forms)
Your own site
<a href="https://agentmods.dev/skills/lubusin/frappe-skills/web-forms"><img src="https://agentmods.dev/badge/skills/lubusin/frappe-skills/web-forms/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 web-forms

Your own site · 80×15
<a href="https://agentmods.dev/skills/lubusin/frappe-skills/web-forms"><img src="https://agentmods.dev/badge/skills/lubusin/frappe-skills/web-forms.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,524 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.00037 $0.01524
Opus 5 $0.00018 $0.00762
Sonnet 5 $0.00007 $0.00305
Haiku 4.5 $0.00004 $0.00152

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

Security

Grade A, and why

web-forms 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 10d 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.

web-forms/SKILL.md · 191 lines

How it starts

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

Frappe Web Forms

Build public-facing web forms for data collection, submissions, and customer self-service.

When to use

  • Creating forms for external users (no Desk access)
  • Building support/ticket submission forms
  • Collecting customer feedback or registrations
  • Enabling self-service data entry portals
  • Replacing simple portal pages with form-based workflows

Inputs required

  • Target DocType for form submissions
  • Which fields to expose on the web form
  • Authentication requirements (login required vs guest)
  • Whether users can edit/resubmit entries
  • File upload requirements

Procedure

0) Prerequisites

Ensure the target DocType exists and has the fields you want to expose.

1) Create the Web Form

  1. Type "new web form" in the awesomebar
  2. Enter a Title (becomes the URL slug)
  3. Select the DocType for record creation
  4. Add introduction text (optional, shown above the form)
  5. Click "Get Fields" to import all fields, or add fields manually
  6. Set field order and which are required
  7. Publish the form

2) Configure settings

Setting Purpose
Login Required Require authentication before form access
Allow Edit Let users edit their submitted entries
Allow Multiple Let users submit more than one entry
Show as Card Display in card layout style
Max Attachment Size Limit file upload sizes
Success URL Redirect after successful submission
Success Message Custom message after submission

3) Make it a Standard Web Form (app-bundled)

Check "Is Standard" (visible in Developer Mode) to export the form as files:

my_app/
└── my_module/
    └── web_form/
        └── contact_us/
            ├── contact_us.json    # Web form metadata
            ├── contact_us.py      # Server-side customization
            └── contact_us.js      # Client-side customization

4) Add server-side customization

# contact_us.py
import frappe

def get_context(context):
    """Add custom context variables to the web form."""
    context.categories = frappe.get_all("Support Category",
        filters={"enabled": 1},
        fields=["name", "label"],
        order_by="label asc"
    )

def validate(doc):
    """Custom validation before the document is saved."""
    if not doc.email:
        frappe.throw("Email address is required")

    # Prevent duplicate submissions
    existing = frappe.db.exists("Support Ticket", {"email": doc.email, "status": "Open"})
    if existing:
        frappe.throw("You already have an open ticket. Please wait for a response.")

Read the full file on GitHub · 191 lines

Files

What ships with it

1 file 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. 10d ago First seen · 191 lines · 37 tokens per session scan A bfd54e7fc42a

Subscribe to this mod's changes

web-forms is a skill published in the GitHub repository lubusIN/frappe-skills (57 stars, last pushed 1mo ago), licensed MIT. It adds 37 tokens to every session and 1,524 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.

Related

Other skills, from other repositories

airflow-plugins

Builds Airflow 3.1+ plugins that embed FastAPI apps, custom UI pages, React components, middleware, macros, and operator links directly into the Airflow UI. Use when building anything custom inside Airflow 3.1+ that involves Python and a browser-facing interface - creating an Airflow plugin, adding a custom UI page or…

astronomer/agents · 147 tokens

nextjs-patterns

Next.js best practices, server components, app router patterns, caching strategies, and full-stack architecture.

cosmicstack-labs/mercury-agent-skills · 24 tokens

yida-canvas-data-binding

A method for connecting a YidaCodeCanvas page to real data from Yida forms, connectors, or same-site APIs. YidaCodeCanvas is the component used to run custom React pages inside Yida.

openyida/openyida · 134 tokens

openyida

A skill for creating and changing applications on 宜搭 (Yida), a Chinese low-code platform for building business apps with less hand-written code. It first checks the available tools, login status, project folder, and target application before making changes.

openyida/openyida · 197 tokens

jeecg-codegen

A JeecgBoot code generator that turns a natural-language request into a CRUD module: code for creating, reading, updating, and deleting records. It produces Java backend code, Vue 3 frontend code, menus, permissions, and database migration SQL.

jeecgboot/skills · 91 tokens

frontmcp-development

Use when building any FrontMCP server component other than a tool (for tools, use create-tool). Covers @Resource static resources and parameterized URI templates; @Prompt reusable prompts (RAG, multi-turn); @Provider singleton dependency-injection providers (database pools, API clients); @Agent autonomous LLM agents…

agentfront/frontmcp · 196 tokens