AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Lovstudio Fill Web Form

skill-lovstudio-skills-fill-web-form · by lovstudio

>

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add skill-lovstudio-skills-fill-web-form

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-lovstudio-skills-fill-web-form)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Lovstudio Fill Web Form? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

fill-web-form — Fill Web Forms from Local Knowledge Base

Fetch a web form, extract all fields, deep-search the user's local knowledge base for matching information, and output a ready-to-use markdown document.

When to Use

  • User provides a URL to a web form and wants help filling it
  • Conference speaker applications, event registrations, profile forms
  • Any scenario where form fields can be answered from existing local materials

Workflow (MANDATORY)

Step 1: Fetch and extract form fields

Use WebFetch to retrieve the form page and extract ALL fields:

WebFetch(url, prompt="Extract ALL form fields. For each field list: label,
type (text/textarea/select/radio/checkbox/file), required status, options
if applicable, min length constraints. Return structured list.")

If the form has radio/select fields, make a second WebFetch call to get the exact option text for each.

Step 2: Deep-search local knowledge base

Launch an Agent (subagent_type: Explore, thoroughness: very thorough) to search the user's knowledge base. The agent prompt MUST include:

  1. The complete list of form fields from Step 1
  2. Instructions to search for:
  • Personal/professional bio and profile files
  • Speaking/conference history
  • Project descriptions and achievements
  • Company/organization info
  • Published articles and their topics
  • Awards, credentials, media mentions
  1. Search locations (adapt to user's repo structure):
  • Profile/about files (**/profile/**, **/about/**, **/bio/**)
  • CLAUDE.md files for project context
  • Posts and articles directories
  • Project directories
  • Any official.md, awards.md, resume files
  1. Also check user memory (MEMORY.md) for cached info

Run this in parallel with any additional WebFetch calls from Step 1.

Step 3: Map fields to content

For each form field, synthesize the best answer from search results:

| Field Type | Strategy | |-----------|----------| | Short text (name, company, city) | Direct extraction from profile | | Bio/introduction (min chars) | Compose from official bio, expand to meet minimum | | Long-form (case background, solution) | Synthesize from articles, projects, talks | | Radio/select | Pick the best-matching option based on profile | | File upload | Mark as "needs manual upload" with specs | | Private (phone, email) | Mark as "needs manual input", suggest if found |

If required fields remain unknown after local search, use AskUserQuestion to collect only those missing values. Do not ask for fields already inferred from context.

Step 4: Generate output document

Write a markdown document with ALL form fields filled. Format:

---
title: " - 填写内容"
status: draft
---

# 

> 表单地址:

---

## 1. 

---

## 2. 

...

Rules:

  • Number every field matching the form order
  • For radio/select: prefix chosen option with **✅ 选择:**
  • For file uploads: use > ⚠️ 需上传:
  • For private fields: use > ⚠️ 需手动填写(with suggestion if available)
  • For textarea fields with min length: ensure content meets or exceeds minimum
  • Include a summary table at the end showing field → status (filled/manual)
  • MANDATORY: Append an "inspected sources" section at the end of the document

with a tree of all files that were read/searched during knowledge base retrieval:

---

## 附录:检索文件路径

knowledge-base/ ├── profile/ │ └── official.md ← 个人简介 ├── posts/standalone/2025/ │ ├── 07-10-Vol-51...md ← 演讲经历 │ └── 06-25-comate...md ← AI工具评测 ├── 1-Projects/lovpen/ │ └── ... ← 产品信息 └── CLAUDE.md ← 项目上下文

This tree helps the user verify source coverage and spot missing materials.

Output naming: Follow user's naming convention. Default: 手工川---v0.1.md

Step 5: Present summary

After writing the file, show:

  1. A summary table of all fields with fill status
  2. Count of auto-filled vs needs-manual fields
  3. Remind user which fields need manual action (uploads, private data)
  4. The inspected files tree (same as in the document appendix, for quick review)

Key Principles

  1. Pre-fill aggressively — search deeply, compose content, don't leave blanks
  2. Meet all constraints — character minimums, bullet point counts, etc.
  3. Match form tone — conference apps need professional language, registrations can be brief
  4. Respect privacy — never guess phone numbers or passwords, mark for manual input
  5. Cite sources — when composing from knowledge base, the content should be accurate to the user's real experience

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.