Skip to content

Releases: appsome/claude-code-mattermost-plugin

v1.0.1

09 Mar 18:35
v1.0.1
600934d

Choose a tag to compare

Patch Release

Changes

  • Added .claude/ to .gitignore to prevent accidental commits of local settings

No functional changes from v1.0.0.

Full Changelog: v1.0.0...v1.0.1

v1.0.0 - Initial Release

09 Mar 15:42
v1.0.0
b36f184

Choose a tag to compare

Claude Code Mattermost Plugin v1.0.0

First official release of the Claude Code Mattermost Plugin, enabling AI-powered coding assistance directly within Mattermost.

Features

  • Slash Commands

    • /claude-start <project-path> - Start a Claude Code session
    • /claude <message> - Send messages to Claude
    • /claude-stop - End the current session
    • /claude-status - Check session status
  • Interactive Components

    • Approve/Reject buttons for file changes
    • Continue, Explain, and Undo actions
    • Real-time streaming responses
  • Dual-Mode Architecture

    • Embedded Mode: Run Claude Code CLI directly (local deployments)
    • Bridge Mode: Connect to external bridge server (Kubernetes deployments)
  • Deployment Options

    • Helm chart for Kubernetes (charts/claude-code-bridge/)
    • Docker Compose for local development
    • Docker image with Claude Code CLI pre-installed

Installation

  1. Download the plugin bundle from the release assets
  2. Upload to Mattermost via System Console > Plugins
  3. Configure the plugin settings:
    • For embedded mode: Ensure Claude Code CLI is installed
    • For bridge mode: Deploy the bridge server and set the Bridge Server URL

Helm Chart

helm install claude-code-bridge ./charts/claude-code-bridge \
  --namespace claude-code \
  --create-namespace \
  --set anthropicApiKey="your-key"

Docker Image

ghcr.io/appsome/claude-code-bridge:v1.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/appsome/claude-code-mattermost-plugin/commits/v1.0.0