Install
$ agentstack add skill-celticht32-couchbase-skills-for-claude-ai-couchbase-transactions ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Couchbase Distributed Transactions
A skill for designing and implementing multi-document ACID transactions in Couchbase. Goes deeper than the overview in couchbase-app-integration/references/transactions-app-side.md.
Distinct from:
couchbase-app-integration— general SDK patterns; has a transactions overview but not the depth needed for production transaction designcouchbase-mcp— thecb_transaction_runtool for running transactions via the MCP server
When this skill applies
- "How do I atomically update multiple documents?"
- "How do transactions work under the hood?"
- "My transaction is retrying — why?"
- "How do I handle a transaction conflict?"
- "What happens if the client crashes mid-transaction?"
- "Transactions are slow — how do I tune them?"
- "What are ATRs and why does my bucket have them?"
- "How do I model data to minimize transaction use?"
Pick the right reference
| Question | Read | |---|---| | "When should I use transactions vs single-doc ops vs subdoc?" | references/when-to-use.md | | "How do they work? ATRs, two-phase commit, retry, expiry" | references/mechanics.md | | "Code patterns — Python, Java, Node; error handling; retry logic" | references/patterns.md |
Core principle: try to design around transactions
Transactions in Couchbase are meaningfully slower than equivalent single-document KV operations — they do substantially more work (staging, two-phase commit across documents, Active Transaction Record bookkeeping, and possible retries) — and add retry complexity. Before reaching for a transaction, ask: can this be modeled as a single-document update? Often the answer is yes. See references/when-to-use.md for the decision framework.
When you do need transactions, they're correct and reliable — just plan for the cost.
Quick tool map
| Task | Tool | |---|---| | Run a transaction via MCP | cb_transaction_run | | Single-document atomic op (no transaction needed) | cb_mutate_in | | Check for orphaned ATR documents | cb_query on _txn:atr-* keys |
Related skills
couchbase-app-integration— SDK setup and the single-document operations that transactions wrapcouchbase-data-modeling— modeling decisions that reduce the need for transactionscouchbase-mcp—cb_transaction_runfor executing transactions via the MCP server
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: celticht32
- Source: celticht32/Couchbase-Skills-for-Claude.ai
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.