Changelog¶
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, this project adheres to Semantic Versioning, commits follow Conventional Commits, and this changelog is generated by Structured Changelog.
Unreleased¶
v0.2.0 - 2026-05-24¶
Highlights¶
- Composable omniskill architecture for modular, reusable MCP skills
- Vault-backed credentials via omnitoken (1Password, Bitwarden, file, env)
- Cobra CLI with subcommands and direct tool invocation
Breaking¶
- Module path changed from
github.com/agentplexus/mcp-confluencetogithub.com/plexusone/mcp-confluence(0a3b89f) - CLI now uses cobra with
--flagstyle instead of-flag(978eb21)
Upgrade Guide¶
- Update import paths from
agentplexustoplexusone - Update CLI flag syntax from
-flagto--flag - Update
go installpath togithub.com/plexusone/mcp-confluence/cmd/mcp-confluence@latest
Added¶
- Composable Confluence skill using omniskill framework (
4cc2a3d) - Cobra-based CLI with subcommands (serve, get-page, search-pages, etc.) (
978eb21) - Vault-backed credentials via omnitoken (1Password, Bitwarden) (
978eb21) - Direct CLI tool invocation for testing and scripting (
978eb21) - API testing example in cmd/api-confluence (
fefaa60) - Comprehensive MkDocs documentation site (
46d554b)
Changed¶
- Module renamed from
agentplexustoplexusoneorganization (0a3b89f) - Server now uses omniskill runtime instead of custom JSON-RPC handler (
978eb21)
Dependencies¶
- Add
github.com/plexusone/omniskillv0.8.0 for skill framework (e91c665) - Add
github.com/plexusone/omnitokenv0.1.0 for credential management (e91c665) - Add
github.com/plexusone/omnivault-desktopv0.1.0 for vault providers (e91c665) - Add
github.com/spf13/cobrav1.10.2 for CLI framework (e91c665)
Documentation¶
- Add getting started guides (installation, setup, quickstart) (
46d554b) - Add configuration documentation (credentials, environment, Claude Desktop) (
46d554b) - Add storage format reference (overview, blocks) (
46d554b) - Add tools reference documentation (
46d554b) - Update README for vault-backed credentials and new module path (
9c84acd)
v0.1.0 - 2025-12-29¶
Highlights¶
- Initial release with MCP tools for safe Confluence page editing
- Structured content blocks for creating and reading pages
- Lossless XHTML round-trip editing for complex pages
Added¶
confluence_read_pagetool for reading pages as structured content blocks (df233c7)confluence_read_page_xhtmltool for reading pages as raw Storage Format XHTML (df233c7)confluence_update_pagetool for updating pages with structured content blocks (df233c7)confluence_update_page_xhtmltool for updating pages with raw XHTML (df233c7)confluence_create_pagetool for creating new pages with structured blocks (df233c7)confluence_create_tabletool for creating table blocks from structured data (df233c7)confluence_delete_pagetool for deleting pages by ID (df233c7)confluence_search_pagestool for searching pages using CQL (df233c7)- Structured block types: Paragraph, Heading, Table, BulletList, NumberedList, Macro, CodeBlock, HorizontalRule (
df233c7) - Storage package with Parse, Render, and Validate functions (
df233c7) - HTML entity support for Storage Format XHTML (
df233c7) - Confluence REST API client with basic authentication (
df233c7)