By mattermost
Reviews existing tests for efficacy, correctness, and coverage gaps. Evaluates whether tests actually test what they claim to, prioritizing real interactions over mocking.
Staff-contributed Claude Code plugins for Mattermost engineering workflows. Browse, install, and share skills, agents, hooks, and more.
# Add this marketplace
/plugin marketplace add mattermost/mattermost-ai-marketplace
# Browse available plugins
/plugin
# Install a plugin
/plugin install <plugin-name>@mattermost-ai-marketplace
# Update the marketplace catalog
/plugin marketplace update mattermost-ai-marketplace
| Plugin | Description | Category | Version |
|---|---|---|---|
code-simplifier | Simplifies and refines code for clarity, consistency, and maintainability | code-quality | 1.0.0 |
conflicts | Git merge conflict resolution agent that analyzes intent behind changes | git | 1.0.0 |
figma-implement-design | Translate Figma designs into production-ready code with 1:1 visual fidelity | design | 1.0.0 |
precommit | Discover, run, and resolve all pre-commit code quality checks in a monorepo | code-quality | 1.0.0 |
test-evaluator | Review tests for efficacy, correctness, and coverage gaps | testing | 1.0.0 |
teamimplement | Orchestrate phased implementation with dedicated research, planning, implementation, review, and QA engineers | productivity | 1.0.0 |
issue-resolver | Autonomous issue resolution agent using sub-agents and browser-based validation | productivity | 1.0.0 |
mattermost-test-data | Backfill realistic test data into a Mattermost server using MCP tools | devops | 1.0.0 |
claude-md-improver | Audit and improve CLAUDE.md files — scans, scores quality, and makes targeted updates | productivity | 1.0.0 |
mattermost-plugin-development | Skills for developing Mattermost plugins | development | 1.0.0 |
review-migration | Analyze schema migrations against best practices and generate a review report | code-quality | 1.0.0 |
dev-workflows | Skills for common development workflows — dependency management, module hygiene, and routine maintenance tasks | devops | 1.0.0 |
Add to your project's .claude/settings.json so teammates are prompted to install automatically:
{
"extraKnownMarketplaces": {
"mattermost-ai-marketplace": {
"source": {
"source": "github",
"repo": "mattermost/mattermost-ai-marketplace"
}
}
}
}
Optionally enable specific plugins by default:
{
"enabledPlugins": {
"plugin-name@mattermost-ai-marketplace": true
}
}
mattermost-ai-marketplace/
.claude-plugin/
marketplace.json # Marketplace catalog (lists all plugins)
plugins/
<plugin-name>/
.claude-plugin/
plugin.json # Plugin manifest
skills/
<skill-name>/
SKILL.md # Skill definition
agents/ # Optional: subagent definitions
hooks/ # Optional: lifecycle hooks
README.md # Plugin-level docs
templates/
plugin/ # Starter template for new plugins
skill/ # Starter template for a single skill
CONTRIBUTING.md
LICENSE
See CONTRIBUTING.md for how to add your own plugins.
Maintainers can validate the marketplace from the repo root:
claude plugin validate .
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub mattermost/mattermost-ai-marketplace --plugin test-evaluatorAnalyze Mattermost schema migrations against best practices and generate a filled-out review template
Translate Figma nodes into production-ready code with 1:1 visual fidelity using the Figma MCP workflow. Requires a working Figma MCP server connection.
Git merge conflict resolution agent that analyzes intent behind changes on both branches and makes informed decisions about what to preserve.
Backfill realistic test data into a Mattermost server using MCP tools. Creates users, teams, channels, and natural conversations.
Skills for common development workflows — dependency management, module hygiene, and routine maintenance tasks
Detect test smells, overmocking, flaky tests, and coverage issues. Analyze test effectiveness, maintainability, and reliability. Use when reviewing tests or improving test quality.
Testing workflow skill for high-value test discovery, strategy selection, focused implementation, realistic workload generation, strict review, and suite health diagnostics.
Analyze test failures, identify patterns, and suggest targeted fixes
Use this agent when code changes have been made and you need to write new tests, run existing tests, analyze failures, and fix them while maintaining test integrity. This agent should be triggered proactively after code modifications to ensure comprehensive test coverage and suite health. Examples:\n\n<example>\nContext: The user has just implemented a new feature or modified existing code.\nuser: "I've updated the user authentication logic to support OAuth"\nassistant: "I've successfully updated the authentication logic. Now let me run the test-writer-fixer agent to ensure all tests pass with these changes."\n<commentary>\nSince code changes were made, use the Task tool to launch the test-writer-fixer agent to run relevant tests and fix any failures.\n</commentary>\n</example>\n\n<example>\nContext: The user has refactored a module or changed function signatures.\nuser: "Please refactor this payment processing module to use async/await"\nassistant: "I've completed the refactoring to use async/await throughout the payment module."\n<function call omitted for brevity>\nassistant: "Now I'll use the test-writer-fixer agent to run the tests and fix any issues caused by the refactoring."\n<commentary>\nAfter refactoring code, proactively use the test-writer-fixer agent to ensure tests still pass.\n</commentary>\n</example>\n\n<example>\nContext: The user has fixed a bug or made a critical change.\nuser: "Fix the race condition in the data synchronization service"\nassistant: "I've identified and fixed the race condition by implementing proper locking mechanisms."\n<function call omitted for brevity>\nassistant: "Let me run the test-writer-fixer agent to verify the fix doesn't break existing functionality."\n<commentary>\nAfter bug fixes, use the test-writer-fixer agent to ensure the fix works and doesn't introduce regressions.\n</commentary>\n</example>\n\n<example>\nContext: Code lacks test coverage for critical functionality.\nuser: "Our payment processing module has no tests"\nassistant: "That's a critical gap. Let me use the test-writer-fixer agent to create comprehensive tests for the payment module including edge cases and error scenarios."\n<commentary>\nCritical modules without tests are high-risk areas that need immediate test coverage.\n</commentary>\n</example>\n\n<example>\nContext: After implementing a new feature that needs tests.\nuser: "I've added the social sharing functionality"\nassistant: "Great! The social sharing is implemented. Now let me use the test-writer-fixer agent to write tests that ensure this feature works correctly across different platforms."\n<commentary>\nNew features should always include comprehensive test coverage from the start.\n</commentary>\n</example>
Track and run regression tests to ensure new changes don't break existing functionality
Language-agnostic test plan generation and execution.