makigjuro/cloudstack-ai-plugins

Claude Code plugin marketplace — AI-powered full-stack cloud engineer for .NET 10 + React 19 + Azure/Terraform/Helm projects. 29 skills, 6 agents, 14 rules.

1Stars on the repository
47Mods indexed here, across every type
1mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

add-helm-chart

01

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scaffold a new Helm chart with standard templates and values. Use when deploying a new microservice or component to Kubernetes and it needs its own chart.

1 1mo ago A 35 tokens original MIT

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scaffold a new Terraform module with variables, main, and outputs. Use when provisioning a new cloud resource (database, cache, storage, etc.) that needs its own Terraform module and optional IaC wrapper wiring.

1 1mo ago A 48 tokens original MIT

complete-infra

03

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Complete infrastructure task — lint, validate, review, and submit PR. Use when an infrastructure-only branch is ready for submission — runs Terraform/Helm validation and creates the PR, skipping application/frontend checks.

1 1mo ago A 45 tokens original MIT

infra-apply

04

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Run terraform plan for review and optionally apply infrastructure changes. Use when the user wants to preview or deploy infrastructure — always shows the plan before any apply.

1 1mo ago A 34 tokens original MIT

infra-lint

05

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Lint Terraform, Terragrunt, and Helm charts only — skips application and frontend checks. Use for infrastructure-only changes when /lint would be overkill.

1 1mo ago A 35 tokens original MIT

infra-plan

06

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Plan infrastructure changes — Terraform modules, Helm charts, CI/CD pipelines. Use when the user wants to add or modify cloud infrastructure, Kubernetes resources, or deployment pipelines.

1 1mo ago A 36 tokens original MIT

trivy-scan

07

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scan Terraform and Helm charts for security misconfigurations using trivy. Use for a fast IaC security check — catches issues that /infra-lint doesn't (secrets, public-access defaults, missing encryption, weak TLS, over-broad IAM). Invoked automatically by /infra-lint and /complete-infra.

1 1mo ago B 71 tokens original MIT

code-review

08

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Review code changes for security, architecture, and quality issues. Use for deep PR-level review -- checks OWASP vulnerabilities, hexagonal architecture violations, code smells, and test gaps. For a quick architecture-only check, use /check-architecture instead.

1 1mo ago A 53 tokens original MIT

complete-task

09

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Complete current task with all quality gates, code review, QA check, and submit PR. Use when implementation is done and you want to run the full verification pipeline (build, lint, tests, review, QA) and create the pull request.

1 1mo ago A 52 tokens original MIT

create-pr

10

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Create a pull request with a structured description linking to the GitHub issue. Use when ready to push and open a PR -- auto-detects changed services/layers and generates a structured PR body with test plan.

1 1mo ago A 46 tokens original MIT

create-tasks

11

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Create GitHub issues from a feature plan or PRD -- automatically determines single issue vs epic + task issues. Use after /prd or /plan-feature to push tasks to GitHub, or whenever the user wants to create structured issue(s) for a feature.

1 1mo ago A 56 tokens original MIT

diagnose

12

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Investigate and diagnose problems using structured evidence gathering and hypothesis testing. Use whenever something is broken, failing, or behaving unexpectedly -- build errors, test failures, runtime exceptions, deployment issues, or performance problems.

1 1mo ago A 44 tokens original MIT

docs

13

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Generate or update project documentation from code -- API docs, service docs, architecture docs, or runbooks. Use after adding endpoints, entities, events, or infrastructure changes, or when documentation may be stale.

1 1mo ago A 43 tokens original MIT

init

14

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scan a project and generate cloudstack.json configuration. Use when setting up cloudstack-ai-plugins for the first time, onboarding a new project, or when the user says "init", "setup", "configure", "get started", or "onboard".

1 1mo ago A 54 tokens original MIT

lint

15

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Run all linters and formatters -- dotnet format, ESLint, helm lint, and terraform validate. Use to verify formatting before a PR. Note that hooks auto-fix on save/commit; this skill is for explicit verification across the full codebase. For infrastructure-only changes, use /infra-lint instead.

1 1mo ago A 67 tokens original MIT

plan-feature

16

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Break down a feature into a structured plan with acceptance criteria, affected services, and implementation tasks. Use for simple features that don't need a full PRD -- or when the user describes what they want to build and needs a task breakdown. For complex features needing full requirements, success metrics, and…

1 1mo ago A 69 tokens original MIT

prd

17

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Generate a Product Requirements Document through guided discovery questions and codebase analysis. Use for complex features that need structured requirements, success metrics, and technical planning before implementation.

1 1mo ago A 34 tokens original MIT

run-local

18

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Start the local development environment. Supports .NET Aspire AppHost or Docker Compose based on project configuration. Use to spin up all services locally for manual testing.

1 1mo ago A 34 tokens original MIT

run-tests

19

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Run .NET tests with smart change detection -- auto-detects changed files via git diff and runs only affected test projects. Use whenever the user wants to run tests, verify changes, check if tests pass, run unit tests, integration tests, or test a specific service.

1 1mo ago A 58 tokens original MIT

start-work

20

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Create a feature branch from a GitHub issue and set up the working context. Use whenever starting implementation on a new issue -- creates the branch, fetches requirements, and begins building automatically.

1 1mo ago A 41 tokens original MIT

task-check

21

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

QA check to verify implementation matches GitHub issue requirements. Use to validate that all acceptance criteria from the linked issue are met before creating a PR.

1 1mo ago A 32 tokens original MIT

add-command

22

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scaffold a new CQRS command with handler, validator, and POST endpoint following project conventions. Use whenever the user wants to add a write operation, mutation, POST/PUT/DELETE endpoint, or any state-changing action to a microservice.

1 1mo ago A 52 tokens original MIT

add-entity

23

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scaffold a new domain entity with value object ID, aggregate root, factory method, and domain event. Use whenever the user wants to add a new domain concept, database table, persisted object, or aggregate root to the system.

1 1mo ago A 50 tokens original MIT

add-event-handler

24

makigjuro/cloudstack-ai-plugins

Skill Claude CodeCodex

Scaffold a WolverineFx event handler for domain events or integration events. Use whenever the user wants to react to domain events, publish messages, send notifications, update read models, or add async side effects.

1 1mo ago A 45 tokens original MIT