name: pet-sitter-intake version: 5.0.0 description: > Generate professional PDF client intake forms for pet sitting businesses. Use when a pet sitter, dog walker, pet boarder, or pet care professional needs a client intake form, onboarding questionnaire, or pet information sheet. Trigger phrases: "create intake form", "new client form for my pet sitting business", "pet sitter questionnaire", "boarding intake form". Supports fillable PDFs, custom color themes, multi-pet forms, home access sections, and service-specific templates. metadata: clawdbot: emoji: "🐾" anyBins: - python3 platforms: - linux - darwin - win32
Generate polished, professional PDF intake forms for pet sitting businesses. Minimal input required — outputs a complete, branded, client-ready PDF.
Activate when the user: - Asks to create a client intake form for pet sitting - Wants a new client questionnaire or onboarding form - Needs a pet information sheet for their business - Says "make a form for my pet sitting business" - Wants to look professional when taking on new clients - Asks for a boarding intake form, dog walking form, or drop-in visit checklist
| Feature | Description |
|---|---|
| Fillable PDF Fields | Interactive text fields and checkboxes for digital completion |
| 7 Color Themes | lavender, ocean, forest, rose, sunset, neutral, midnight |
| Multi-Pet Support | Generate forms with 1-10 pet profile sections |
| Service Templates | Specialized sections for boarding, walking, drop-in visits |
| Home Access Section | Key codes, alarm info, WiFi, parking (for in-home sitting) |
| Config File Support | Save business presets in YAML for reuse |
Ask the user for:
If inputs are missing, use reasonable defaults or leave fields blank.
python scripts/generate_form.py \
--business-name "Happy Paws Pet Sitting" \
--sitter-name "Jane Smith" \
--services "Dog Walking, Boarding, Drop-in Visits" \
--location "Austin, TX" \
--contact "jane@happypaws.com | (512) 555-1234" \
--theme ocean \
--service-type boarding \
--pets 2 \
--output "/mnt/user-data/outputs/client_intake_form.pdf"
| Option | Description | Default |
|---|---|---|
--business-name |
Business name for header | "Your Business Name" |
--sitter-name |
Sitter name for authorization text | (blank) |
--services |
Comma-separated services | "Pet Sitting, Dog Walking, Boarding" |
--location |
City/state | (blank) |
--contact |
Contact info | (blank) |
--theme |
Color theme name | lavender |
--service-type |
general, boarding, walking, drop_in | general |
--pets |
Number of pet profiles (1-10) | 1 |
--fillable |
Enable fillable PDF fields | (enabled by default) |
--no-fillable |
Generate print-only form | — |
--no-home-access |
Omit home access section | — |
--config |
Path to YAML config file | — |
--output |
Output PDF filename | client_intake_form.pdf |
--list-themes |
Show available themes and exit | — |
For repeat use, create a config.yaml:
business_name: "Happy Paws Pet Sitting"
sitter_name: "Jane Smith"
services: "Dog Walking, Boarding, Drop-in Visits"
location: "Austin, TX"
contact: "jane@happypaws.com"
theme: ocean
service_type: general
num_pets: 1
fillable: true
Then generate with:
python scripts/generate_form.py --config config.yaml --output client_form.pdf
After generation, share the PDF with the user via present_files.
Tell them:
- ✅ The form has fillable fields — clients can type directly into it
- ✅ It's also print-ready for handwritten responses
- ✅ They can customize the theme to match their branding (--list-themes)
- ✅ For multiple pets, use --pets 2 (or more)
- 💡 Suggest saving a config file for their business presets
7w4.net小葱技能站,你的AI助手技能库。
| Theme | Description |
|---|---|
lavender |
Soft purple & peach (default) |
ocean |
Calming blue & sandy yellow |
forest |
Natural sage green & gold |
rose |
Warm pink & tan |
sunset |
Coral orange & sky blue |
neutral |
Professional gray & soft blue |
midnight |
Elegant slate & warm gold |
Run --list-themes to see color codes.
reportlab (PDF generation)pyyaml (optional, for config files)Install dependencies:
pip install reportlab pyyaml
--no-fillable--pets 3 to generate separate profile sections--service-type boarding for drop-off/pickup fields--service-type walking for route/leash behavior fields这个工具质量不错,能生成专业的宠物寄养客户表单,支持多种颜色主题和多宠物家庭,还可以根据服务类型定制内容。文档写得很清楚,配置示例丰富,小白也能快速上手。不足之处是表单预览截图缺失,无法直观看到生成效果;部分示例配置的保存路径设置得不太合理。总体来说是一个实用且易用的表单生成器,适合宠物服务从业者使用。