Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

pet-sitter-intake宠物保姆摄入量

Agent Skill

pet-sitter-intake 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,781

周安装

486

GitHub Stars

公开资料未说明

下载量

3,849
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:pet-sitter-intake(宠物保姆摄入量)
来源仓库:https://github.com/basilanathan/pet-sitter-intake
安装命令:
openclaw skills install pet-sitter-intake
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install pet-sitter-intake

简介

用于生成宠物看护企业的专业 PDF 客户接收表格。

  • 支持宠物保姆、遛狗者等专业人员使用。
  • 可定制字段与品牌标识插入。pet-sitter-intake 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install pet-sitter-intake,需确认文件生成与写入权限。
  • 注意模板内容应符合当地法律法规要求。

SKILL.md

name
pet-sitter-intake
version
5.0.0
description
>
metadata
clawdbot
emoji
🐾
anyBins
platforms

Pet Sitter Client Intake Form Generator

Generate polished, professional PDF intake forms for pet sitting businesses. Minimal input required — outputs a complete, branded, client-ready PDF.

When to Use This Skill

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

Features

FeatureDescription
Fillable PDF FieldsInteractive text fields and checkboxes for digital completion
7 Color Themeslavender, ocean, forest, rose, sunset, neutral, midnight
Multi-Pet SupportGenerate forms with 1-10 pet profile sections
Service TemplatesSpecialized sections for boarding, walking, drop-in visits
Home Access SectionKey codes, alarm info, WiFi, parking (for in-home sitting)
Config File SupportSave business presets in YAML for reuse

Step 1: Collect Inputs

Ask the user for:

  1. Business name (required) — e.g., "Happy Paws Pet Sitting"
  2. Sitter name (optional) — appears in authorization text
  3. Services offered — Pet Sitting, Dog Walking, Boarding, Drop-in Visits, etc.
  4. Location — city/state for the form header
  5. Contact info — email, phone, or website for the footer
  6. Color theme (optional) — show the 7 available themes
  7. Service type (optional) — general, boarding, walking, or drop_in
  8. Number of pets (optional) — if client has multiple pets

If inputs are missing, use reasonable defaults or leave fields blank.

Step 2: Generate the PDF

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"

All CLI Options

OptionDescriptionDefault
--business-nameBusiness name for header"Your Business Name"
--sitter-nameSitter name for authorization text(blank)
--servicesComma-separated services"Pet Sitting, Dog Walking, Boarding"
--locationCity/state(blank)
--contactContact info(blank)
--themeColor theme namelavender
--service-typegeneral, boarding, walking, drop_ingeneral
--petsNumber of pet profiles (1-10)1
--fillableEnable fillable PDF fields(enabled by default)
--no-fillableGenerate print-only form
--no-home-accessOmit home access section
--configPath to YAML config file
--outputOutput PDF filenameclient_intake_form.pdf
--list-themesShow available themes and exit

Using a Config File

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

Step 3: Present to User

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

Form Sections Generated

Page 1 — Pet Owner Information

  • Owner name, address, phone(s), email
  • Emergency contact (name, relationship, phone)
  • Veterinarian info + 24-hour emergency vet
  • Authorized pickup persons
  • Communication preferences (update frequency, contact method)

Page 2 — Home Access *(optional, included by default)*

  • Entry method (lockbox, garage code, hidden key)
  • Alarm code and disarm instructions
  • WiFi network and password
  • Parking instructions
  • Thermostat/HVAC notes
  • Off-limits areas, house rules

Page 3 — Pet Profile

  • Pet name, species, breed, age, weight, color/markings
  • Sex (with spay/neuter status)
  • Microchip and license numbers
  • Flea/tick prevention info

Page 4 — Vaccinations

  • Interactive checkboxes: Rabies, DHPP, Bordetella, FVRCP, FeLV, Canine Influenza
  • Fillable expiration date fields
  • "Other" vaccine option

Page 5 — Health & Behavior

  • Allergies, medical conditions
  • Medications table (name, dosage, frequency, instructions)
  • Behavior assessment: good with strangers/kids/dogs/cats
  • Fear triggers, separation anxiety level
  • Escape artist warnings
  • Commands known, recall reliability
  • Potty training status and schedule
  • Sleep location, crate training

Page 6 — Feeding & Daily Care

  • Food brand/type, amount, storage location
  • Feeding schedule (checkboxes)
  • Treat permissions
  • Exercise needs

Page 7 — Service-Specific *(if not general)*

  • Boarding: drop-off/pickup times, items checklist
  • Walking: leash behavior, route preferences, duration
  • Drop-in: per-visit task checklist

Final Page — Authorization & Agreement

  • Emergency veterinary care authorization
  • Transport authorization
  • Photo/social media release
  • Cancellation policy acknowledgment
  • Liability statement
  • Signature, date, printed name
  • Office use section

Available Themes

ThemeDescription
lavenderSoft purple & peach *(default)*
oceanCalming blue & sandy yellow
forestNatural sage green & gold
roseWarm pink & tan
sunsetCoral orange & sky blue
neutralProfessional gray & soft blue
midnightElegant slate & warm gold

Run --list-themes to see color codes.

Requirements

  • Python 3.8+
  • reportlab (PDF generation)
  • pyyaml (optional, for config files)

Install dependencies:

pip install reportlab pyyaml

Tips

  • For digital-first workflows, keep fillable enabled (default) — clients can complete on phone/computer
  • For print shops or clients who prefer paper, use --no-fillable
  • Multi-pet households: Use --pets 3 to generate separate profile sections
  • Boarding businesses: Use --service-type boarding for drop-off/pickup fields
  • Dog walkers: Use --service-type walking for route/leash behavior fields
  • Save a config file with your branding to generate consistent forms every time

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.86%
按下载量换算3,690

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills