BeClaude

infra

New
1Community RegistryGeneralby DoubleslashSE

Infrastructure troubleshooting plugin for diagnosing and resolving issues across GitHub Actions, Railway, Supabase, and Postgres. Focuses on log analysis, error pattern recognition, and proactive health monitoring.

Community PluginView Source

Overview

A collection of plugins for Claude Code that extend its capabilities with specialized workflows, skills, and agents.

Available Plugins

PluginDescriptionVersion
business-analystSenior Business Analyst for requirements gathering, codebase analysis, stakeholder interviews, and SRS document generation1.1.0
claude-automationAutomation tooling for Claude Code: autonomous script builder and related harnesses1.0.0
dotnet-developerGeneral .NET development workflow with automated validation through build, test, and static analysis quality gates1.0.0
dotnet-tddTest-Driven Development for .NET following TDD, SOLID, DRY, KISS, YAGNI, and CQS principles1.2.2
flow-workflowLightweight meta-orchestrator that leverages your plugin ecosystem through capability-based routing2.0.4
infraInfrastructure troubleshooting for diagnosing and resolving issues across GitHub Actions, Railway, Supabase, and Postgres1.0.0
node-tddNode.js Test-Driven Development with TypeScript support, SOLID principles, clean code practices, and functional patterns1.1.1
workshop-facilitatorWorkshop facilitation for design thinking, brainstorming, and collaborative problem-solving sessions1.0.1

Installation

Install a plugin by pointing Claude Code to the plugin directory:

bash
claude --plugin-dir ./Plugins/dotnet-tdd

Repository Structure

code
Plugins/
├── business-analyst/        # Requirements & SRS generation
├── claude-automation/       # Autonomous script builder & harnesses
├── dotnet-developer/        # .NET development workflow
├── dotnet-tdd/              # .NET TDD plugin
├── flow-workflow/           # Meta-orchestrator for plugin routing
├── infra/                   # Infrastructure troubleshooting
├── node-tdd/                # Node.js TDD plugin
├── workshop-facilitator/    # Workshop facilitation
└── [future-plugins]/

Plugin Anatomy

Each plugin follows a standard structure:

code
plugin-name/
├── .claude-plugin/
│   └── plugin.json      # Required: Plugin manifest
├── agents/              # Optional: Subagent definitions
├── commands/            # Optional: Slash commands
├── hooks/               # Optional: Event hooks
├── skills/              # Optional: Knowledge files
└── README.md            # Plugin documentation

plugin.json

json
{
  "name": "plugin-name",
  "version": "1.0.0",
  "description": "What the plugin does",
  "author": "Your Name <email>",
  "commands": ["./commands/command.md"],
  "agents": ["./agents/agent.md"],
  "skills": ["./skills/skill-name"],
  "hooks": "./hooks/hooks.json"
}

Contributing

Want to add a plugin? Submit a PR with your plugin in the Plugins/ directory following the structure above.

License

MIT

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/infra.md https://raw.githubusercontent.com/DoubleslashSE/claude-marketplace/main/SKILL.md
3
Invoke in Claude Code
/infra
View source on GitHub
plugin

Frequently Asked Questions

What is infra?

Infrastructure troubleshooting plugin for diagnosing and resolving issues across GitHub Actions, Railway, Supabase, and Postgres. Focuses on log analysis, error pattern recognition, and proactive health monitoring.

How to install infra?

To install infra, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /infra.

What is infra best for?

infra is a community categorized under General. It is designed for: plugin. Created by DoubleslashSE.