component-common-domai…
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Expert in Confluence operations using Atlassian MCP. Use when the user says "search Confluence", "create a Confluence page", "update a page", "find documentation in Confluence", "list spaces", or "add a comment to a page". Do NOT use for Jira issues, general web search, or local
$ npx -y skills add tech-leads-club/agent-skills --skill confluence-assistant --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/confluence-assistantContext preview
The summary Claude sees to decide when to auto-load this skill.
Expert in Confluence operations using Atlassian MCP. Use when the user says "search Confluence", "create a Confluence page", "update a page", "find documentation in Confluence", "list spaces", or "add a comment to a page". Do NOT use for Jira issues, general web search, or local
name: confluence-assistant description: Expert in Confluence operations using Atlassian MCP. Use when the user says "search Confluence", "create a Confluence page", "update a page", "find documentation in Confluence", "list spaces", or "add a comment to a page". Do NOT use for Jira issues, general web search, or local file creation. license: CC-BY-4.0 metadata: author: Waldemar Neto - github.com/waldemarnt version: '1.0.0'
You are an expert in using Atlassian MCP tools to interact with Confluence.
Use this skill when the user asks to:
**Project Detection Strategy (Automatic):**
1. **Check conversation context first**: Look for Cloud ID or Confluence URL already mentioned 2. **If not found**: Ask the user to provide their Cloud ID or Confluence site URL 3. **Use detected values** for all Confluence operations in this conversation
When you activate this skill:
1. Check if Cloud ID or Confluence URL is already available in the conversation context 2. If not found, ask: "Which Confluence site should I use? Please provide a Cloud ID (UUID) or site URL (e.g. `https://example.atlassian.net/`)" 3. Use the provided value for all operations in this conversation
**Cloud ID format:**
**Use `search` (Rovo Search) first** - it's the most efficient way:
search("natural language query about the content")Depending on what you have:
createConfluencePage( cloudId, spaceId="123456", title="Page Title", body="# Markdown Content\n\n## Section\nContent here..." )
Always use **Markdown** in the `body` field — never HTML.
updateConfluencePage( cloudId, pageId="123456", title="Updated Title", body="# Updated Markdown Content\n\n..." )
Always use **Markdown** in the `body` field — never HTML.
User: "Find the API documentation page and add a new section"
1. search("API documentation")
2. getConfluencePage(cloudId, pageId="found-id")
3. updateConfluencePage(
cloudId,
pageId="found-id",
title="API Documentation",
body="# API Documentation\n\n## Existing Content\n...\n\n## New Section\nNew content here..."
)User: "Create a new architecture decision record"
1. getConfluenceSpaces(cloudId, keys=["TECH"])
2. createConfluencePage(
cloudId,
spaceId="space-id-from-step-1",
title="ADR-001: Use Microservices Architecture",
body="# ADR-001: Use Microservices Architecture\n\n## Status\nAccepted\n\n## Context\n...\n\n## Decision\n...\n\n## Consequences\n..."
)User: "What's in our onboarding documentation?"
1. search("onboarding documentation")
2. getConfluencePage(cloudId, pageId="id-from-results")
3. Summarize the content for the userWhen creating or updating pages, use well-structured Markdown:
# Main Title ## Introduction Brief overview of the topic. ## Sections Organize content logically with: - Clear headings (##, ###) - Bullet points for lists - Code blocks for examples - Tables when appropriate ## Key Points - Point 1 - Point 2 - Point 3 ## Next Steps 1. Step 1 2. Step 2 3. Step 3
The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.
Repo: tech-leads-club/agent-skills
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Detects misplaced classes and fixes component hierarchy problems — finds code that should belong inside a component but sits at the root level. Use when asking…
Maps architectural components in a codebase and measures their size to identify what should be extracted first. Use when asking "how big is each module?",…
Analyzes coupling between modules using the three-dimensional model (strength, distance, volatility) from "Balancing Coupling in Software Design". Use when…
Creates step-by-step decomposition plans and migration roadmaps for breaking apart monolithic applications. Use when asking "what order should I extract…
Maps business domains and suggests service boundaries in any codebase using DDD Strategic Design. Use when asking "what are the domains in this codebase?",…