Skip to content

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-confluence to github.com/plexusone/mcp-confluence (0a3b89f)
  • CLI now uses cobra with --flag style instead of -flag (978eb21)

Upgrade Guide

  • Update import paths from agentplexus to plexusone
  • Update CLI flag syntax from -flag to --flag
  • Update go install path to github.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 agentplexus to plexusone organization (0a3b89f)
  • Server now uses omniskill runtime instead of custom JSON-RPC handler (978eb21)

Dependencies

  • Add github.com/plexusone/omniskill v0.8.0 for skill framework (e91c665)
  • Add github.com/plexusone/omnitoken v0.1.0 for credential management (e91c665)
  • Add github.com/plexusone/omnivault-desktop v0.1.0 for vault providers (e91c665)
  • Add github.com/spf13/cobra v1.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_page tool for reading pages as structured content blocks (df233c7)
  • confluence_read_page_xhtml tool for reading pages as raw Storage Format XHTML (df233c7)
  • confluence_update_page tool for updating pages with structured content blocks (df233c7)
  • confluence_update_page_xhtml tool for updating pages with raw XHTML (df233c7)
  • confluence_create_page tool for creating new pages with structured blocks (df233c7)
  • confluence_create_table tool for creating table blocks from structured data (df233c7)
  • confluence_delete_page tool for deleting pages by ID (df233c7)
  • confluence_search_pages tool 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)