
Loops
- 41 installs
- 76 repo stars
- Updated August 4, 2026
- vm0-ai/vm0-skills
Helps with ai & agent building tasks during AI-assisted development.
About
loops is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- loops
- AI & Agent Building
- AI-coding skill
Loops by the numbers
- 41 all-time installs (skills.sh)
- Ranked #8,148 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/vm0-ai/vm0-skills --skill loopsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 41 |
|---|---|
| repo stars | ★ 76 |
| Last updated | August 4, 2026 |
| Repository | vm0-ai/vm0-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Troubleshooting
If requests fail, run zero doctor check-connector --env-name LOOPS_TOKEN or zero doctor check-connector --url https://app.loops.so/api/v1/api-key --method GET
Core APIs
Test API Key
Verify your API key is valid:
curl -s "https://app.loops.so/api/v1/api-key" --header "Authorization: Bearer $LOOPS_TOKEN"Create Contact
Write to /tmp/loops_request.json:
{
"email": "user@example.com",
"firstName": "Jane",
"lastName": "Doe",
"userId": "clerk_user_abc123",
"subscribed": true,
"userGroup": "free"
}curl -s -X POST "https://app.loops.so/api/v1/contacts/create" --header "Authorization: Bearer $LOOPS_TOKEN" --header "Content-Type: application/json" -d @/tmp/loops_request.jsonDocs: https://loops.so/docs/api-reference/create-contact
Update Contact
Write to /tmp/loops_request.json:
{
"email": "user@example.com",
"userGroup": "pro",
"planUpgradedAt": "2024-01-15"
}curl -s -X PUT "https://app.loops.so/api/v1/contacts/update" --header "Authorization: Bearer $LOOPS_TOKEN" --header "Content-Type: application/json" -d @/tmp/loops_request.jsonFind Contact
Find a contact by email address. Replace <email> with the actual email:
curl -s "https://app.loops.so/api/v1/contacts/find?email=<email>" --header "Authorization: Bearer $LOOPS_TOKEN"Delete Contact
Write to /tmp/loops_request.json:
{
"email": "user@example.com"
}curl -s -X DELETE "https://app.loops.so/api/v1/contacts/delete" --header "Authorization: Bearer $LOOPS_TOKEN" --header "Content-Type: application/json" -d @/tmp/loops_request.jsonSend Event
Trigger an automated email loop by sending an event. Events map to loops configured in your Loops dashboard.
Write to /tmp/loops_request.json:
{
"email": "user@example.com",
"eventName": "signup",
"eventProperties": {
"planType": "free",
"signupSource": "landing_page"
}
}curl -s -X POST "https://app.loops.so/api/v1/events/send" --header "Authorization: Bearer $LOOPS_TOKEN" --header "Content-Type: application/json" -d @/tmp/loops_request.jsonDocs: https://loops.so/docs/api-reference/send-event
Send Transactional Email
Send a one-off email using a transactional template. Replace <transactional-id> with the ID from your Loops dashboard.
Write to /tmp/loops_request.json:
{
"transactionalId": "<transactional-id>",
"email": "user@example.com",
"dataVariables": {
"firstName": "Jane",
"resetLink": "https://app.example.com/reset?token=abc123"
}
}curl -s -X POST "https://app.loops.so/api/v1/transactional" --header "Authorization: Bearer $LOOPS_TOKEN" --header "Content-Type: application/json" -d @/tmp/loops_request.jsonDocs: https://loops.so/docs/api-reference/send-transactional-email
List Transactional Emails
curl -s "https://app.loops.so/api/v1/transactional" --header "Authorization: Bearer $LOOPS_TOKEN" | jq '[.[] | {id, name}]'List Mailing Lists
curl -s "https://app.loops.so/api/v1/lists" --header "Authorization: Bearer $LOOPS_TOKEN" | jq '[.[] | {id, name}]'List Contact Properties
curl -s "https://app.loops.so/api/v1/contacts/customFields" --header "Authorization: Bearer $LOOPS_TOKEN" | jq '[.[] | {key, label, type}]'Guidelines
1. Contact identity: Use email as the primary identifier. Optionally pass userId (e.g., Clerk user ID) to link contacts across systems. 2. Event names: Must exactly match the event name configured in your Loops dashboard loop trigger. 3. Transactional IDs: Find the transactionalId in Loops under Transactional > [template] > API. 4. Rate limit: 10 requests per second per team. Implement exponential backoff on HTTP 429. 5. Field length: Maximum 500 characters per field value. 6. No CORS: All requests must be server-side — never expose the API key to the browser.