# Cursor Skills Integrations

> CURSOR-SKILLS rules for integrations (webhooks, microservices, DBs, queues).

- Skill: `agent-kit-startup/cursor-skills-integrations` (Agent Skill)
- Install (CLI): `npx skillmds@latest add agent-kit-startup/cursor-skills-integrations`
- Raw SKILL.md: https://api.skillmd.com/api/skills/agent-kit-startup/cursor-skills-integrations/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: agent-kit-startup (https://skillmd.com/u/agent-kit-startup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/agent-kit-startup/cursor-skills-integrations

---


# CURSOR-SKILLS - Integrations

Source: [cursor-skills/integrations](https://github.com/araguaci/cursor-skills/tree/main/integrations)

## CURSOR setup

- Docker, Kubernetes, GitLens, Remote Development, Database Client, REST Client.

## Typical structure

```
project/
├── src/   ├── tests/   ├── configs/   ├── docker/   ├── k8s/
└── .env
```

## Principles

- Microservices; error handling and logging; secure communication; retries and idempotency when applicable.

## Webhooks

- Standardized events and payloads; validation (e.g. signature); retry; security.

## Microservices

- Consistent APIs; discovery; load balancing; health checks; communication tests.

## Database

- Connection pooling; transactions; indexes; prepared statements; avoid N+1; naming conventions.

## Communication

- HTTP, gRPC, or WebSocket as appropriate; error handling; queues (RabbitMQ, Kafka, etc.) when it makes sense.

