From org-generator
Generate a complete Datadog Terraform infrastructure for a new client
How this command is triggered — by the user, by Claude, or both
Slash command
/org-generator:generate <client-name>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# org-generator:generate Generates complete Datadog Terraform infrastructure for a new client engagement. ## Usage ## Arguments - `client-name`: The client identifier (kebab-case, e.g., `acme-corp`) ## Workflow ### Phase 1: Questionnaire Generation 1. Generate a professional markdown questionnaire at `~/datadog_terraform/<client-name>/questionnaire.md` 2. The questionnaire covers: - Organization setup (child org vs existing) - Cloud providers (AWS, GCP, Azure) - Infrastructure components (hosts, containers, serverless) - Services to monitor - Tagging strategy - Te...
Generates complete Datadog Terraform infrastructure for a new client engagement.
/org-generator:generate <client-name>
client-name: The client identifier (kebab-case, e.g., acme-corp)Generate a professional markdown questionnaire at ~/datadog_terraform/<client-name>/questionnaire.md
The questionnaire covers:
STOP and inform user: "Questionnaire generated at ~/datadog_terraform/<client-name>/questionnaire.md. Please fill it out and run /org-generator:apply <client-name> when ready."
After questionnaire is complete, create the S3 backend:
~/Portfolio/aws/variables.tf for <client-name>-backendterraform init, plan, and apply in ~/Portfolio/aws/Generate the client's Datadog Terraform structure:
~/datadog_terraform/<client-name>/
├── backend.tf
├── providers.tf
├── variables.tf
├── outputs.tf
├── modules.tf
├── README.md
├── modules/
│ ├── api_keys/
│ ├── app_keys/
│ ├── roles/
│ ├── teams/
│ ├── users/
│ └── [cloud-specific modules based on questionnaire]
├── installs/
│ ├── agent.md
│ ├── install.sh
│ └── [platform-specific install scripts]
└── k8s/ (if applicable)
Based on questionnaire answers, generate appropriate monitors:
/org-generator:generate acme-corp
This will:
~/datadog_terraform/acme-corp/questionnaire.md/org-generator:apply acme-corpnpx claudepluginhub nokodoko/agents --plugin org-generator/datadogConfigures, troubleshoots, and investigates incidents in Datadog — supports Agent deployment on Kubernetes, APM instrumentation, monitors, dashboards, SLOs, and more via Terraform.
/infraGenerates production-ready Terraform IaC for AWS, Azure, or GCP with multi-env setups, modules (network/compute/database/etc.), scripts, and policies.
/monitorConfigures monitoring dashboards, metrics collection, and alerting rules for a target using Datadog (default), CloudWatch, Prometheus, or Grafana.
/tf-scaffoldScaffolds production-ready Terraform infrastructure for a service with live/, modules/, envs/ structure, resource modules for DB/cache/etc., environment wiring, and CI/CD pipeline.
/infraDesigns Infrastructure as Code configurations using Terraform, CDK, or CloudFormation based on a natural language requirement. Specify optional tool preference.
/create-dashboardGenerates monitoring dashboard specifications for Grafana, Datadog, or CloudWatch with key metrics, panels, layout, interactions, and observability settings.