Generate professional HTML waivers and client intake forms for service businesses. One command, zero dependencies.
Built by Apollyx — AI-powered pages for service businesses.
npm install -g apollyx-waiver-generatorOr use directly with npx:
npx apollyx-waiver-generator tattoo --name "Your Studio"# Generate a tattoo consent waiver
waiver-gen tattoo --name "Ink Studio" --color "#1a1a2e"
# Generate a salon intake form
waiver-gen salon --name "Luxe Hair" --color "#4a0e4e"
# Generate a fitness intake form (PAR-Q)
waiver-gen fitness --name "Peak Performance PT"
# List all available templates
waiver-gen --list| Type | Form | Best For |
|---|---|---|
tattoo |
Consent waiver + medical history | Tattoo artists, PMU artists |
salon |
Hair history + allergy screening | Hair salons, barbers |
fitness |
PAR-Q + injury history + goals | Personal trainers, gyms |
massage |
Health conditions + consent | Massage therapists, bodyworkers |
lash |
Eye health + allergy screening | Lash techs, brow artists |
spa |
Skin profile + contraindications | Estheticians, med spas |
const { generateWaiver, listTemplates } = require('apollyx-waiver-generator');
// Generate HTML string
const html = generateWaiver('tattoo', {
businessName: 'Ink Studio',
primaryColor: '#1a1a2e',
accentColor: '#e94560',
logo: 'https://example.com/logo.png'
});
// Write to file
require('fs').writeFileSync('waiver.html', html);
// List available templates
console.log(listTemplates());| Option | CLI Flag | Default | Description |
|---|---|---|---|
businessName |
--name |
"Your Business" | Your business name |
primaryColor |
--color |
"#1a1a2e" | Primary brand color |
accentColor |
--accent |
"#e94560" | Accent/button color |
logo |
--logo |
null | URL to your logo |
| - | --output |
<type>-waiver.html |
Output filename |
Each generated form is a single HTML file with:
- Mobile-responsive design
- No external dependencies
- Professional styling with your brand colors
- All required fields for the specific industry
- Consent/acknowledgment sections where applicable
If you're a solo service provider, you need intake forms but don't want to:
- Pay $30/month for a form builder
- Spend hours designing forms from scratch
- Deal with complex software
This tool generates industry-specific forms in seconds. Free forever.
Visit apollyx.com for:
- AI-powered page builder
- Online booking pages
- Digital waivers with e-signatures
- Bio link pages
- Client management
MIT