Agent skill

persona-local-dev-loop

Local development with Persona sandbox, ngrok for webhooks, mock verifications. Use when working with Persona identity verification. Trigger with phrases like "persona local-dev-loop", "persona local-dev-loop". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill persona-local-dev-loop --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.4.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/persona-local-dev-loop/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# persona local dev loop | sed 's/\b\(.\)/\u\1/g' ## Overview Sandbox testing with test inquiry templates, ngrok tunnel for webhook testing, mock API responses for CI. ## Prerequisites - Completed `persona-install-auth` setup - Valid Persona API key (sandbox or production) ## Instructions ### Step 1: Set Up Sandbox Environment ```bash set -euo pipefail # Use sandbox API key for all development echo 'PERSONA_API_KEY=persona_sandbox_xxxxxxxx' > .env echo 'PERSONA_API_VERSION=2023-01-05' >> .env ``` ### Step 2: Expose Local Webhooks with ngrok ```bash # Terminal 1: Start your webhook server npm run dev # localhost:3000 # Terminal 2: Tunnel with ngrok ngrok http 3000 # Copy the HTTPS URL and configure in Persona Dashboard > Webhooks ``` ### Step 3: Create Test Inquiries ```python import os, requests HEADERS = { "Authorization": f"Bearer {os.environ['PERSONA_API_KEY']}", "Persona-Version": "2023-01-05", } # Create inquiry with sandbox template resp = requests.post("https://withpersona.com/api/v1/inquiries", headers=HEADERS, json={ "data": { "attributes": { "inquiry-template-id": "itmpl_YOUR_SANDBOX_TEMPLATE", "reference-id": f"test-{int(time.time())}", } } }) print(f"Test inquiry: {resp

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Set Up Sandbox Environment
  5. Step 2: Expose Local Webhooks with ngrok
  6. Step 3: Create Test Inquiries
  7. Step 4: Mock API Responses for CI
  8. Output
  9. Error Handling
  10. Resources
  11. Next Steps
Commands it runs
set -euo pipefail
Use sandbox API key for all development
echo 'PERSONA_API_KEY=persona_sandbox_xxxxxxxx' > .env
echo 'PERSONA_API_VERSION=2023-01-05' >> .env
Terminal 1: Start your webhook server
npm run dev  # localhost:3000
Terminal 2: Tunnel with ngrok
ngrok http 3000
Copy the HTTPS URL and configure in Persona Dashboard > Webhooks
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the persona-local-dev-loop skill do?

Local development with Persona sandbox, ngrok for webhooks, mock verifications. Use when working with Persona identity verification. Trigger with phrases like "persona local-dev-loop", "persona local-dev-loop". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill persona-local-dev-loop --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going