Define onboarding steps per product tier, embed them in your app via script tag, track completion per user. Appcues charges $249/mo for this.
Every operation in Concierge is available through a JSON REST API. No SDK required — use curl, fetch, or any HTTP client.
GET /api/checklists — list all checklists with optional search and filter query parametersPOST /api/checklists — create a new checklist recordGET /api/checklists/{id} — retrieve a single checklist by IDPUT /api/checklists/{id} — update an existing checklistDELETE /api/checklists/{id} — remove a checklistGET /api/stats — aggregated statistics with status breakdownGET /api/health — health check endpoint for monitoringA devops team integrates Concierge into their CI pipeline. A post-deploy hook creates a checklist record via the API. The stats endpoint feeds a Grafana panel. When something goes wrong, the team searches checklists by keyword to find related records without switching tools.
Every checklist your team creates contains context that matters — customer name, template, steps, progress, assignee. When that data lives in a third-party service, you are one acquisition or policy change away from losing access. Concierge keeps it local.
GET /api/checklists — List all checklists. Supports ?q=keyword for search and ?status=value for filteringPOST /api/checklists — Create a new checklist. Send JSON with at least customer_nameGET /api/checklists/{id} — Fetch one checklist by IDPUT /api/checklists/{id} — Update fields on an existing checklistDELETE /api/checklists/{id} — Remove a checklistGET /api/stats — Returns total count and breakdown by statusGET /api/health — Returns {"status":"ok"} for uptime monitoringStart Concierge with a port and a data directory. It creates its SQLite database on first run and serves both the API and the dashboard on the same port. Create checklists through the web interface or POST JSON to the API. Filter by template, steps, or search by keyword. Update records with PUT, delete with DELETE. The stats endpoint returns aggregate counts grouped by status for monitoring.
Self-hosted customer onboarding checklists. Self-hosted on your infrastructure. Your data never leaves your server.
curl -fsSL https://stockyard.dev/install.sh | sh -s -- --tool concierge
PORT=10120 ./concierge
http://localhost:10120
Single binary. Embedded SQLite. No Docker. No database. No dependencies.
Your license key arrives by email within 5 minutes of checkout. Set it as an environment variable and restart the binary.
export CONCIERGE_LICENSE_KEY=stockyard_xxxxxxxxxxxxxxxxxxxx ./concierge
No cloud connectivity required. The binary validates the key offline with Ed25519 signatures.