Form Builder Pro

v1.0.0

表单构建器专业版 - 支持JSON Schema验证、动态渲染、条件逻辑的表单引擎 | Form Builder Pro - JSON Schema validation, dynamic rendering, conditional logic form engine

0· 67·0 current·0 all-time
byLv Lancer@kaiyuelv

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for kaiyuelv/form-builder-pro.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Form Builder Pro" (kaiyuelv/form-builder-pro) from ClawHub.
Skill page: https://clawhub.ai/kaiyuelv/form-builder-pro
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install form-builder-pro

ClawHub CLI

Package manager switcher

npx clawhub@latest install form-builder-pro
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (form builder with JSON Schema, YAML, conditional rendering) matches the included files (scripts/form_engine.py, examples, tests) and the declared Python dependencies (jsonschema, pyyaml, jinja2). There are no unrelated credentials, binaries, or config paths required.
Instruction Scope
SKILL.md describes form creation, YAML/JSON loading, validation, and template rendering — and the code and examples follow that scope. The examples write a YAML file to /tmp and load it, which is expected for examples; there are no instructions to read unrelated system files, fetch external endpoints, or exfiltrate data.
Install Mechanism
No install spec is provided (instruction-only for the platform), and a lightweight requirements.txt lists standard Python packages on public registries. Nothing is downloaded from arbitrary URLs and no archives are extracted by an install script.
Credentials
The skill requests no environment variables, credentials, or config paths. The code does not reference os-level secrets or external service keys. This is proportionate for a local form engine library.
Persistence & Privilege
always is false and model invocation is normal. The skill does not request permanent/system-wide privileges or modify other skills' configurations.
Assessment
This package appears to be a straightforward Python form engine. Before installing or using it in production: 1) Review places that render Jinja2 templates (form.render) and avoid rendering untrusted templates because Jinja2 templates can execute code if unsandboxed. 2) Be cautious if you accept custom validator callables from untrusted users — those run arbitrary Python code. 3) Examples write temp files (/tmp); ensure file paths and permissions meet your security policy. 4) Install dependencies in an isolated environment (venv) and run the provided tests locally to confirm behavior.

Like a lobster shell, security has layers — review code before you run it.

latestvk979pngx986djq772hajtmpg1s851kn3
67downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

表单构建器专业版

强大的表单生成与验证工具,支持JSON Schema、YAML配置、条件渲染等高级功能。

概述

本Skill提供完整的表单解决方案:

  • JSON Schema 表单定义与验证
  • YAML 配置文件支持
  • 动态表单渲染
  • 字段条件显示逻辑
  • 多步骤向导表单
  • 自定义验证规则
  • Jinja2 模板引擎
  • 表单数据序列化/反序列化

依赖

  • Python >= 3.8
  • jsonschema >= 4.19.0
  • pyyaml >= 6.0
  • jinja2 >= 3.1.0

文件结构

form-builder-pro/
├── SKILL.md                  # 本文件
├── README.md                 # 使用文档
├── requirements.txt          # 依赖声明
├── scripts/
│   └── form_engine.py        # 表单引擎脚本
├── examples/
│   └── basic_usage.py        # 使用示例
└── tests/
    └── test_form.py          # 单元测试

快速开始

from scripts.form_engine import FormBuilder, Field

# 创建表单
builder = FormBuilder()

# 添加字段
builder.add_field(Field(
    name="email",
    type="email",
    label="电子邮箱",
    required=True,
    validation={"pattern": r"^[\w\.-]+@[\w\.-]+\.\w+$"}
))

# 从YAML加载表单
form = builder.load_from_yaml("form_config.yaml")

# 验证数据
result = form.validate({"email": "test@example.com"})

许可证

MIT


Form Builder Pro

Powerful form generation and validation tool supporting JSON Schema, YAML config, conditional rendering.

Overview

This Skill provides a complete form solution:

  • JSON Schema form definition and validation
  • YAML configuration file support
  • Dynamic form rendering
  • Field conditional display logic
  • Multi-step wizard forms
  • Custom validation rules
  • Jinja2 template engine
  • Form data serialization/deserialization

Dependencies

  • Python >= 3.8
  • jsonschema >= 4.19.0
  • pyyaml >= 6.0
  • jinja2 >= 3.1.0

File Structure

form-builder-pro/
├── SKILL.md                  # This file
├── README.md                 # Usage documentation
├── requirements.txt          # Dependencies
├── scripts/
│   └── form_engine.py        # Form engine script
├── examples/
│   └── basic_usage.py        # Usage examples
└── tests/
    └── test_form.py          # Unit tests

Quick Start

from scripts.form_engine import FormBuilder, Field

# Create form
builder = FormBuilder()

# Add fields
builder.add_field(Field(
    name="email",
    type="email",
    label="Email",
    required=True,
    validation={"pattern": r"^[\w\.-]+@[\w\.-]+\.\w+$"}
))

# Load from YAML
form = builder.load_from_yaml("form_config.yaml")

# Validate data
result = form.validate({"email": "test@example.com"})

License

MIT

Comments

Loading comments...