Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@
"category": "sre",
"agents": "./agents/remediator.md",
"skills": "./skills"
},
{
"name": "rh-developer",
"description": "Developer Agentic Collection",
"version": "1.0.0",
"author": {
"name": "Red Hat Ecosystem Engineering",
"email": "eco-engineering@redhat.com"
},
"source": "./rh-developer",
"category": "developer",
"agents": ["./agents/error-handling.md", "./agents/s2i-builder-images.md"],
"skills": "./skills"
}
]
}
13 changes: 13 additions & 0 deletions rh-developer/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "rh-developer",
"version": "1.0.0",
"description": "Developer Agentic Collection",
"author": {
"name": "Red Hat Ecosystem Engineering",
"email": "eco-engineering@redhat.com"
},
"homepage": "https://github.com/dmartinol/ai5-marketplaces",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pls update references to the previous GH repo

"repository": "https://github.com/dmartinol/ai5-marketplaces",
"license": "Apache-2.0",
"keywords": ["developer", "openshift", "rhel", "s2i", "containerization", "deployment", "helm", "podman"]
}
45 changes: 45 additions & 0 deletions rh-developer/.mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"mcpServers": {
"kubernetes": {
"command": "npx",
"args": ["-y", "kubernetes-mcp-server@latest"],
"env": {
"KUBECONFIG": "${KUBECONFIG}"
},
"description": "Kubernetes/OpenShift MCP server for cluster management, resource operations, and Helm deployments",
"security": {
"isolation": "process",
"network": "local",
"credentials": "env-only"
}
},
"podman": {
"command": "npx",
"args": ["-y", "podman-mcp-server@latest"],
"env": {},
"description": "Podman MCP server for container image management and local builds",
"security": {
"isolation": "process",
"network": "local",
"credentials": "none"
}
},
"github": {
"command": "podman",
"args": [
"run", "-i", "--rm",
"-e", "GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
},
"description": "GitHub MCP server for repository browsing and code analysis",
"security": {
"isolation": "container",
"network": "local",
"credentials": "env-only"
}
}
}
}
Loading