Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

form-auto表格自动

Agent Skill

form-auto 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,441

周安装

301

GitHub Stars

2

下载量

2,336
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:form-auto(表格自动)
来源仓库:https://github.com/tobewin/form-auto
安装命令:
openclaw skills install form-auto
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install form-auto

简介

Form Auto 技能自动填写网络表单,支持工作申请、注册和调查场景。

  • 适用于需要批量处理表单提交的用户。form-auto 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 兼容 OpenClaw 宿主生态系统。
  • 使用时需确认表单字段映射和提交权限。
  • 建议先测试小样本数据,确保填写准确性和提交成功。

SKILL.md

name
form-auto
description
Universal form auto-fill tool for OpenClaw. Use when user needs to fill out web forms automatically. Supports job applications, registrations, surveys, and any web form. Requires OpenClaw v2026.3.22+ with browser access. 表单自动填写、一键填表、自动填报。
version
1.0.0
license
MIT-0
metadata
{"openclaw": {"emoji": "📝", "requires": {"bins": ["python3"], "env": []}, "minVersion": "2026.3.22", "needsBrowser": true}}

Form Auto

Universal web form auto-fill tool. Automatically fills out any web form using OpenClaw's browser automation.

Features

  • 📝 Universal Form Fill: Works with any web form
  • 🔐 Browser Session: Uses existing login state
  • 🎯 Smart Detection: Auto-detects form fields
  • 📋 Template Support: Save and reuse form data
  • 🌍 Multi-Language: Supports Chinese and English
  • Fast & Accurate: Reliable form filling

Trigger Conditions

  • "帮我填表" / "Help me fill out this form"
  • "自动填写报名表" / "Auto-fill registration form"
  • "填写求职申请" / "Fill job application"
  • "填写问卷" / "Fill out survey"
  • "form-auto [url]"

⚠️ Privacy Warning

This skill accesses your browser profile to fill forms.

  • 🔐 Reads browser session to access forms
  • 📝 Fills form fields with your data
  • 🌐 Interacts with websites on your behalf
  • ⚠️ Only use on trusted websites

Step 1: Get User Information

Ask user for the information needed to fill the form:

请提供需要填写的信息:

基本信息:
- 姓名: ___
- 手机号: ___
- 邮箱: ___
- 地址: ___

其他信息(根据表单):
- 公司: ___
- 职位: ___
- 备注: ___

Or use saved profile from previous sessions.


Step 2: Open Form URL

// Open the form page
await browser.open({
  url: "https://example.com/form"
})

// Wait for page load
await browser.wait({ timeout: 5000 })

Step 3: Detect Form Fields

// Detect all form fields on the page
const formFields = await browser.evaluate(() => {
  const fields = []
  
  // Find all input elements
  document.querySelectorAll('input, select, textarea').forEach(el => {
    const field = {
      type: el.type || el.tagName.toLowerCase(),
      name: el.name || '',
      id: el.id || '',
      placeholder: el.placeholder || '',
      label: '',
      required: el.required
    }
    
    // Try to find associated label
    if (el.id) {
      const label = document.querySelector(`label[for="${el.id}"]`)
      if (label) field.label = label.innerText.trim()
    }
    
    // Or find parent label
    if (!field.label) {
      const parentLabel = el.closest('label')
      if (parentLabel) field.label = parentLabel.innerText.trim()
    }
    
    // Or use placeholder as label
    if (!field.label && el.placeholder) {
      field.label = el.placeholder
    }
    
    fields.push(field)
  })
  
  return fields
})

console.log("检测到的表单字段:", formFields)

Step 4: Fill Form Fields

// Fill each field based on type and label
async function fillForm(userData) {
  for (const field of formFields) {
    const value = matchFieldToData(field, userData)
    
    if (value) {
      // Fill input/textarea
      if (field.type === 'text' || field.type === 'email' || 
          field.type === 'tel' || field.type === 'textarea') {
        await browser.evaluate((id, name, val) => {
          const el = id ? document.getElementById(id) : 
                     document.querySelector(`[name="${name}"]`)
          if (el) {
            el.value = val
            el.dispatchEvent(new Event('input', { bubbles: true }))
            el.dispatchEvent(new Event('change', { bubbles: true }))
          }
        }, field.id, field.name, value)
      }
      
      // Fill select
      if (field.type === 'select-one') {
        await browser.evaluate((id, name, val) => {
          const el = id ? document.getElementById(id) : 
                     document.querySelector(`[name="${name}"]`)
          if (el) {
            el.value = val
            el.dispatchEvent(new Event('change', { bubbles: true }))
          }
        }, field.id, field.name, value)
      }
      
      // Fill checkbox/radio
      if (field.type === 'checkbox' || field.type === 'radio') {
        if (value === 'true' || value === true) {
          await browser.evaluate((id, name) => {
            const el = id ? document.getElementById(id) : 
                       document.querySelector(`[name="${name}"]`)
            if (el && !el.checked) {
              el.click()
            }
          }, field.id, field.name)
        }
      }
    }
  }
}

Step 5: Smart Field Matching

def match_field_to_data(field, user_data):
    """Match form field to user data based on label/name"""
    
    label = (field.get('label', '') + ' ' + 
             field.get('name', '') + ' ' + 
             field.get('placeholder', '')).lower()
    
    # Name matching
    if any(kw in label for kw in ['姓名', '名字', 'name', '称呼']):
        return user_data.get('name', '')
    
    # Phone matching
    if any(kw in label for kw in ['手机', '电话', 'phone', 'tel', 'mobile']):
        return user_data.get('phone', '')
    
    # Email matching
    if any(kw in label for kw in ['邮箱', 'email', 'mail']):
        return user_data.get('email', '')
    
    # Address matching
    if any(kw in label for kw in ['地址', 'address', '住址']):
        return user_data.get('address', '')
    
    # Company matching
    if any(kw in label for kw in ['公司', 'company', '单位', '组织']):
        return user_data.get('company', '')
    
    # Position matching
    if any(kw in label for kw in ['职位', 'position', '岗位', '职务']):
        return user_data.get('position', '')
    
    # ID card matching
    if any(kw in label for kw in ['身份证', 'id card', '证件']):
        return user_data.get('id_card', '')
    
    return None

Step 6: Confirm & Submit

// Show filled form summary to user
const summary = await browser.evaluate(() => {
  const filled = []
  document.querySelectorAll('input, select, textarea').forEach(el => {
    if (el.value) {
      filled.push({
        label: el.placeholder || el.name || el.id,
        value: el.value
      })
    }
  })
  return filled
})

// Ask user to confirm
console.log("已填写的字段:")
summary.forEach(item => {
  console.log(`  ${item.label}: ${item.value}`)
})

// Wait for user confirmation before submit
// await browser.click({ selector: 'button[type="submit"]' })

Template System

Save commonly used form data:

{
  "profile_name": "个人信息",
  "data": {
    "name": "张三",
    "phone": "13800138000",
    "email": "zhangsan@example.com",
    "address": "北京市朝阳区xxx",
    "company": "xxx科技有限公司",
    "position": "产品经理"
  }
}

Example Usage

求职申请表

User: "帮我填写这个求职申请表,网址是 https://company.com/apply"

Agent:
1. 打开网址
2. 检测表单字段
3. 询问用户信息(或使用保存的模板)
4. 自动填写
5. 展示填写结果
6. 等待用户确认提交

报名表

User: "填写这个培训班报名表,我的信息:姓名李四,手机13912345678,邮箱lisi@test.com"

Agent:
1. 打开报名表网址
2. 检测字段
3. 直接使用用户提供的信息填写
4. 展示结果确认

Error Handling

表单无法加载       → 提示用户检查网址
字段检测失败       → 提示手动填写或提供更多信息
填写失败           → 记录失败字段,继续填写其他
提交失败           → 提示用户手动提交

Multi-Language Support

  • User language → Output language
  • 支持中文和英文表单

Limitations

  • 验证码: 无法自动填写验证码
  • 复杂表单: 动态加载的表单可能需要额外处理
  • 文件上传: 不支持自动上传文件
  • 支付表单: 不支持自动填写支付信息

Privacy & Security

Data Handling

  • ✅ No data uploaded to external servers
  • ✅ All processing done locally
  • ⚠️ Browser profile accessed during execution
  • ⚠️ Form data entered on websites

Recommendations

  1. Trusted sites only: Only use on trusted websites
  2. Review before submit: Always review before submitting
  3. Sensitive data: Be careful with sensitive information
  4. Separate profile: Use separate browser profile for testing

Notes

  • Requires OpenClaw v2026.3.22+ with browser automation
  • Works with any standard HTML form
  • Supports input, select, textarea, checkbox, radio
  • Can save and reuse form data templates

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.18%
按下载量换算2,107

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills