From ctx-customer-pack
Confluence tools: add_confluence_comment, create_confluence_page, get_confluence_page, search_confluence_pages, update_confluence_page
npx claudepluginhub codota/ctx-customer-pack-distributable --plugin ctx-customer-packThis skill is limited to using the following tools:
> Auto-generated from 5 exported tool(s) in the Context Engine.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Auto-generated from 5 exported tool(s) in the Context Engine.
Add a footer comment to a Confluence page. Requires a connected and enabled Confluence data source. Comments are visible at the bottom of the page.
Call mcp__tabnine-ctx-cloud__add_confluence_comment with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| pageId | string | Yes | The ID of the Confluence page to comment on. |
| body | string | Yes | The comment content in Confluence storage format (XHTML). For example: " This looks good! ". |
Create a new page in a Confluence space. Requires a connected and enabled Confluence data source. The body should be in Confluence storage format (XHTML). Returns the created page ID, title, and URL.
Call mcp__tabnine-ctx-cloud__create_confluence_page with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| spaceId | string | Yes | The Confluence space ID to create the page in. This is the space's internal ID (not the human-readable key). Use search_confluence_pages with CQL 'type = "space"' to find space IDs. |
| title | string | Yes | The title of the new page. |
| body | string | Yes | The page content in Confluence storage format (XHTML). For example: " Hello world " or "TitleContent ". |
| parentId | string | No | Optional parent page ID. If provided, the new page will be created as a child of this page. |
| status | string | No | Page status. Defaults to "current" (published). Use "draft" for unpublished pages. |
Retrieve a Confluence page's content and metadata. Use this to get page context before updating, including the current version number needed for updates. Requires a connected and enabled Confluence data source.
Call mcp__tabnine-ctx-cloud__get_confluence_page with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| pageId | string | Yes | The ID of the Confluence page to retrieve. |
Search for Confluence pages using CQL (Confluence Query Language). Requires a connected and enabled Confluence data source. Example queries: 'title = "Meeting Notes"', 'space = "ENG" AND type = "page"', 'text ~ "deployment"'.
Call mcp__tabnine-ctx-cloud__search_confluence_pages with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | CQL query string. Examples: 'title = "Page Title"', 'space = "ENG" AND text ~ "search term"', 'label = "runbook"'. |
| limit | number | No | Maximum number of results to return. Defaults to 10. |
Update an existing Confluence page's content. Requires a connected and enabled Confluence data source. You must provide the current version number (incremented by 1). Use get_confluence_page first to retrieve the current version.
Call mcp__tabnine-ctx-cloud__update_confluence_page with parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| pageId | string | Yes | The ID of the Confluence page to update. |
| title | string | Yes | The updated title of the page. |
| body | string | Yes | The updated page content in Confluence storage format (XHTML). |
| version | number | Yes | The new version number. Must be the current version + 1. Use get_confluence_page to retrieve the current version first. |