Web/A Forms are designed to be "AI-First." Because the syntax is expressive and the data model (JSON-LD) is structured, LLMs can efficiently facilitate migration and data processing.
1. Migration from Excel (Excel to Web/A)
Use this prompt to convert a raw Markdown table (extracted via markitdown) into a functional Web/A Form.
Prompt: Form Conversion
Convert the Markdown content below into Web/A Form syntax using the rules listed.
Web/A Syntax Rules:
- Inputs: Use
[type:key (attributes)].
- Text:
[text:id (label="Label Name")]- Number:
[number:price (placeholder="0")]- Date:
[date:birthday]- Textarea:
[textarea:comment]- Calculations: Use
calc.
- Basic:
[calc:subtotal (formula="price * quantity")]- Sum:
[calc:total (formula="SUM(subtotal)")](for tables)- Tables: Mark columns that should be input fields within the Markdown table.
Task: Keep the original headers and instructions. Ensure all Japanese labels are preserved as
label="..."attributes.Source Markdown: (Paste your Markdown here)
2. Autonomous Data Aggregation
Agents can read collected Web/A Forms and extract data without a proprietary database.
Prompt: Batch Data Extraction
You are a data analyst. I have a folder containing several HTML files (Web/A Forms).
Task:
- Locate the
<script type="application/ld+json">block in each file.- Parse the JSON-LD objects.
- Extract the following fields:
submissionId,issuer, and the keys insidecredentialSubject.- Output a single CSV-formatted table summarizing all submissions.
3. Form Intelligence (Folio Integration)
When an Agent has access to a user's Folio, it can pre-fill new forms.
Prompt: Smart Pre-fill
I need to fill out
new_application.md.
- Read my past submission history in the
history/folder.- Look for my latest personal info in
profile.html.- Fill in the fields in
new_application.mdbased on this context.- If any data is missing, flag it for my review.
For more details on integration, see the MCP Setup Guide.