Claude Mkt
my personal claude marketplace for claude plugins
Installation
npx claude-mktAsk AI about Claude Mkt
Powered by Claude Β· Grounded in docs
I know everything about Claude Mkt. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Claude Code Plugin Marketplace
A curated marketplace for professional Claude Code plugins focused on infrastructure, automation, and platform engineering.
Available Plugins
π’ Kubernetes Platform Engineer
Comprehensive Kubernetes platform engineering and operations
- 11 Specialized Agents: Helm charts, cluster management, monitoring, security, Talos/Flatcar Linux, GitOps, CDK8s
- 6 Slash Commands: Deployments, security reviews, cluster setup (Talos/Flatcar), GitOps configuration
- Focus Areas: Production-grade Kubernetes operations, security hardening, GitOps workflows, platform automation
π§ Ansible Engineer
Enterprise Ansible automation development and operations
- 5 Specialized Agents: Orchestration, playbook development, code review, security review, Jinja2 templates
- 6 Slash Commands: Project initialization, development workflows, comprehensive reviews
- Focus Areas: Infrastructure as Code, configuration management, security compliance, best practices
π Network Engineer
Professional network infrastructure design and configuration
- 7 Specialized Agents: FRR routing, interfaces, netplan, SONiC NOS, architecture review, NIST security
- 8 Slash Commands: Network design, configuration generation, security reviews, deployment orchestration
- Focus Areas: Data center networking, routing protocols (BGP/OSPF/IS-IS), NIST compliance, infrastructure automation
π MCP Engineer
Model Context Protocol server and client development
- 8 Specialized Agents: Server/client architecture, Python/TypeScript development, testing, deployment, security
- 7 Slash Commands: Project initialization, server/client development, testing, security review, deployment
- Focus Areas: MCP protocol implementation, FastMCP & official SDKs, MCP Inspector testing, Docker deployment
Quick Start
Installation
-
Clone this marketplace repository:
git clone <repository-url> claude-mkt cd claude-mkt -
Install a plugin in Claude Code:
# Navigate to the plugin directory cd plugins/k8s # Follow Claude Code plugin installation instructions
Usage
Each plugin provides:
- Specialized Agents - Autonomous experts that can be launched via the Task tool
- Slash Commands - Quick-access workflows accessible via
/command-name
Example workflow:
# Use a slash command for guided workflow
/k8s-deploy my-app production
# Or launch an agent directly for complex tasks
Task tool β kubernetes-orchestrator agent
Plugin Details
Kubernetes Platform Engineer
Agents:
k8s-orchestrator- Coordinates complex multi-phase Kubernetes operationsk8s-config-developer- Develops Kubernetes manifests for standard K8s and K3shelm-chart-developer- Develops production-ready Helm chartsk8s-cluster-manager- Manages clusters using kubectl for deployments and operationsk8s-monitoring-analyst- Analyzes monitoring data and provides optimization recommendationsk8s-security-reviewer- Security audits based on CIS benchmarksk8s-network-engineer- Engineers cluster networking with CNIs (Cilium, Calico)talos-linux-expert- Talos Linux cluster specialistflatcar-linux-expert- Flatcar Container Linux cluster specialistk8s-cicd-engineer- GitOps CI/CD with ArgoCD and Fluxcdk8s-engineer- CDK8s (Cloud Development Kit for Kubernetes) development
Commands:
/k8s-deploy- Deploy applications with full validation/k8s-full-stack-deploy- Complete stack deployment orchestration/k8s-security-review- Comprehensive security audits/k8s-setup-talos- Talos Linux cluster setup/k8s-setup-flatcar- Flatcar Linux cluster setup/k8s-setup-gitops- GitOps environment configuration (ArgoCD/Flux)
Ansible Engineer
Agents:
ansible-orchestrator- Coordinates Ansible project workflowsansible-developer- Develops playbooks, roles, and tasksansible-code-reviewer- Code quality and best practices reviewansible-security-reviewer- Security compliance and vulnerability reviewjinja2-developer- Jinja2 template development
Commands:
/ansible-project-init- Initialize complete Ansible projects/develop-ansible- Role and playbook development/review-ansible-code- Code quality review/review-ansible-security- Security and compliance review/create-jinja2-template- Template development workflow/ansible-full-review- Comprehensive code and security review
Network Engineer
Agents:
network-orchestrator- Coordinates network engineering workflowsfrr-config-generator- FRRouting (BGP, OSPF, IS-IS) configurationinterfaces-config-generator- Debian/Ubuntu /etc/network/interfacesnetplan-config-generator- Modern Ubuntu netplan YAMLsonic-engineer- SONiC NOS configuration (data center switches)network-architecture-reviewer- Configuration review and validationnetwork-security-reviewer- NIST-based security review
Commands:
/design-network- Network architecture design/generate-frr-config- FRR routing configuration/generate-interfaces-config- Traditional interfaces configuration/generate-netplan-config- Modern Ubuntu networking/sonic-config- SONiC switch configuration/review-network-config- Configuration review/review-network-security- NIST security review/deploy-network- End-to-end deployment orchestration
MCP Engineer
Agents:
mcp-orchestrator- Coordinates MCP development tasks across specialized agentsmcp-server-architect- Designs MCP server architecture (tools, resources, prompts)mcp-client-architect- Designs MCP client architecture for server integrationmcp-python-developer- Develops MCP servers/clients in Python (FastMCP & SDK, Python 3.11+)mcp-typescript-developer- Develops MCP servers/clients in TypeScript (@modelcontextprotocol/sdk)mcp-testing-engineer- Tests MCP servers/clients with unit tests and MCP Inspectormcp-deployment-engineer- Handles local and Docker deployment of MCP serversmcp-security-reviewer- Security reviews for MCP implementations
Commands:
/mcp-init-project- Initialize new MCP server or client project/develop-mcp-server- Develop MCP server with tools, resources, and prompts/develop-mcp-client- Develop MCP client for server integration/test-mcp- Test MCP server or client functionality/review-mcp-security- Security review of MCP implementations/deploy-mcp- Deploy MCP server locally or with Docker/mcp-full-stack-dev- End-to-end orchestrated MCP development workflow
Features
Production-Ready
- Comprehensive step-by-step workflows
- Extensive validation and testing procedures
- Rollback procedures for safe operations
- Best practices and security hardening
Security-Focused
- NIST compliance frameworks
- CIS benchmark alignment
- Security reviews and audits
- Vulnerability scanning and remediation
Well-Documented
- Detailed agent descriptions
- Example configurations
- Troubleshooting guides
- Validation commands
Modular Design
- Orchestrator pattern for complex workflows
- Specialized agents for focused tasks
- Composable commands and workflows
- Easy to extend and customize
Contributing
Adding a New Plugin
-
Create plugin directory:
mkdir -p plugins/my-plugin/{agents,commands} -
Create
plugin.json:{ "name": "my-plugin", "version": "1.0.0", "description": "Plugin description", "agents": [...], "commands": [...] } -
Add agents in
agents/directory with YAML frontmatter:--- name: agent-name description: Use this agent when... model: sonnet|opus color: color-name --- -
Add commands in
commands/directory with frontmatter and workflows:--- description: Command description argument-hint: Optional arguments --- -
Update
.claude-plugin/marketplace.json
Plugin Quality Standards
- Agents: Include frontmatter, comprehensive documentation, use cases, examples
- Commands: Step-by-step workflows, validation commands, troubleshooting, rollback procedures
- Testing: Test all agents and commands before publishing
- Documentation: Clear README with usage examples
Repository Structure
claude-mkt/
βββ .claude-plugin/
β βββ marketplace.json # Marketplace metadata
βββ plugins/
β βββ k8s/
β β βββ plugin.json # Plugin configuration
β β βββ README.md # Plugin documentation
β β βββ agents/ # Specialized agents
β β β βββ k8s-orchestrator.md
β β β βββ helm-chart-developer.md
β β β βββ ...
β β βββ commands/ # Slash commands
β β βββ k8s-deploy.md
β β βββ k8s-security-review.md
β β βββ ...
β βββ ansible/
β β βββ plugin.json
β β βββ README.md
β β βββ agents/
β β βββ commands/
β βββ networking/
β β βββ plugin.json
β β βββ README.md
β β βββ agents/
β β βββ commands/
β βββ mcp/
β βββ plugin.json
β βββ README.md
β βββ agents/
β βββ commands/
βββ README.md # This file
Best Practices
Using Orchestrators
For complex multi-step operations, use orchestrator agents that can coordinate multiple specialist agents:
/k8s-full-stack-deploy my-app
ββ k8s-orchestrator
ββ helm-chart-developer (generate charts)
ββ k8s-config-developer (develop manifests)
ββ k8s-security-reviewer (security audit)
ββ k8s-cluster-manager (deploy with validation)
Security Reviews
Always run security reviews for production deployments:
/k8s-security-review production-namespace
/review-ansible-security playbook.yml
/review-network-security network-config/
Iterative Development
Use specialist agents for focused development, then review:
1. Task tool β helm-chart-developer (develop chart)
2. Task tool β k8s-security-reviewer (review security)
3. /k8s-deploy my-app staging
4. /k8s-security-review staging
5. /k8s-deploy my-app production
Support
For issues, questions, or contributions:
- Open an issue in this repository
- Review existing plugin documentation
- Check agent descriptions for usage guidance
License
See individual plugin directories for licensing information.
Version History
1.0.0 (Current)
- β Kubernetes Platform Engineer plugin (11 agents, 6 commands)
- β Ansible Engineer plugin (5 agents, 6 commands)
- β Network Engineer plugin (7 agents, 8 commands)
- β MCP Engineer plugin (8 agents, 7 commands)
- β 31 specialized agents total
- β 27 slash commands total
- β Comprehensive documentation
- β Production-ready workflows
