couchbase-app-integrationlisted
Install: claude install-skill celticht32/Couchbase-Skills-for-Claude.ai
# Couchbase application integration
A skill for *building application code* that talks to Couchbase. Distinct from the three sibling skills:
- `couchbase-data-modeling` — what to store (server-side)
- `couchbase-sizing` — how much capacity (resource planning)
- `couchbase-mcp` — operations on an existing cluster (admin)
- **`couchbase-app-integration` (this skill)** — how application code reads, writes, and handles errors against Couchbase
If the conversation is "I'm writing Python (or Java, Node, etc.) code that talks to Couchbase," this is the right skill.
## When this skill applies
- "Which Couchbase SDK should I use?"
- "How do I set up the connection?"
- "What's the right way to handle retries?"
- "Should I use synchronous or asynchronous?"
- "What durability level for this write?"
- "Bulk inserting a million documents — how?"
- "Transactions in [language]?"
- "Active-active XDCR — how does my code handle conflicts?"
- "Why does my client get [error]?"
## Pick the right reference
| Question | Read |
|---|---|
| "Which SDK / which version / install how?" | `references/sdks.md` |
| "How do I connect — strings, TLS, mTLS, pooling, lifecycle?" | `references/connection-management.md` |
| "Retries, timeouts, circuit breakers, transient vs durable errors?" | `references/error-handling.md` |
| "Durability levels and scan consistency — what to pick?" | `references/durability-and-consistency.md` |
| "Bulk ops, async patterns, batching — making it fast?" | `references/perfor