From persona-pack
Deploys Persona identity verification service to Cloud Run using Docker, secrets management, and health checks. For GCP-based KYC integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin persona-packThis skill is limited to using the following tools:
Dockerfile, Cloud Run deployment, secrets management, health checks.
Delivers production deployment checklist for Persona identity verification, including Python API example, prerequisites, HTTPS webhooks, compliance, monitoring, and error handling.
Configures Clerk authentication for deployment to Vercel, Netlify, Railway, and Docker. Covers env vars, domain setup, webhooks, and serverless functions.
Interactively sets up GCP Cloud Build + Cloud Run infrastructure. Provisions APIs, Artifact Registry, service accounts, IAM, secrets, and triggers with security best practices.
Share bugs, ideas, or general feedback.
Dockerfile, Cloud Run deployment, secrets management, health checks.
persona-install-auth setupimport os, requests
HEADERS = {
"Authorization": f"Bearer {os.environ['PERSONA_API_KEY']}",
"Persona-Version": "2023-01-05",
}
BASE = "https://withpersona.com/api/v1"
# Deploy Persona verification service to cloud platforms
resp = requests.get(f"{BASE}/inquiries?page[size]=10", headers=HEADERS)
resp.raise_for_status()
inquiries = resp.json()["data"]
for inq in inquiries:
print(f" {inq['id']}: {inq['attributes']['status']}")
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid API key | Check PERSONA_API_KEY |
| 429 Rate Limited | Too many requests | Implement backoff |
| 404 Not Found | Wrong resource ID | Verify ID format |
See related Persona skills for more workflows.