en un clic
fill-form
**Trigger:** `/fill-form [URL] [optional: form data file]`
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
**Trigger:** `/fill-form [URL] [optional: form data file]`
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
First-run setup wizard that personalizes the Claude Code OS to the user's identity, business type, and LLC purpose
Run a structured, read-only codebase audit using parallel agents. Surfaces dead code, security gaps, wiring issues, type safety problems, and UI shells. Produces a prioritized fix plan. Use for ship-readiness checks, pre-launch reviews, or periodic hygiene sweeps.
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, or extract information from web pages.
Expert guide for building CI/CD pipelines with GitHub Actions, Vercel, and other platforms. Use when automating builds, tests, deployments, or release workflows.
Expert guide for building command-line interfaces with Node.js (Commander, Inquirer, Ora) or Python (Click, Typer, Rich). Use when creating CLI tools, terminal UX, argument parsing, or interactive prompts.
Comprehensive code review skill for TypeScript, JavaScript, Python, Swift, Kotlin, Go. Includes automated code analysis, best practice checking, security scanning, and review checklist generation. Use when reviewing pull requests, providing code feedback, identifying issues, or ensuring code quality standards.
| name | Fill Form |
| description | **Trigger:** `/fill-form [URL] [optional: form data file]` |
Trigger: /fill-form [URL] [optional: form data file]
Automate web form filling with built-in retry logic and verification, addressing common friction points from browser automation.
For each form field:
Text Inputs:
Dropdowns/Selects (CRITICAL - High friction area):
Checkboxes/Radio:
Date Pickers:
waitUntil: 'networkidle' for all navigations~/form-automation-logs/{date}.json/fill-form https://example.com/application
Interactive mode - Claude will ask for field values as needed.
/fill-form https://example.com/application ./form-data.json
Batch mode - Uses provided JSON file for field values.
{
"fields": {
"firstName": "the user",
"lastName": "Belaval",
"email": "your-email@example.com",
"state": "CA",
"agreeToTerms": true
},
"submit_button": "#submit-btn",
"success_indicator": ".confirmation-message"
}