A shared folder with AI prompts and code snippets
From workspace: Director.ai
Team: Main
Total snippets: 6
6 snippets
Check expiration dates of SSL certs across a list of domains.
For the following domains: - api.company.com - dashboard.company.com - internal.company.io Use any SSL checker tool to retrieve: - Expiration date - Issuer - Days remaining Alert me if any cert is expiring in less than 20 days. Return results as...
Check all repos in a GitHub org for failed CI workflows in the past 24h.
Go to the GitHub organization "vercel" and scan all public repositories. For each: - Check GitHub Actions workflows - Identify if any failed in the past 24 hours - Return repo name, workflow name, failure reason, and timestamp Only return...
Summarize failing pods in a cluster via web-based K8s dashboard.
Go to the Kubernetes Dashboard linked via my internal URL (example: https://k8s.example.internal). Authenticate via SSO. Find and list: - All pods in `production` namespace in `CrashLoopBackOff` or `ImagePullBackOff` - Include: pod name, node...
Monitor cloud spend changes for cost anomalies.
Log into the CloudCost portal (example: https://cost.company.io). Navigate to daily spend dashboard. Compare today’s spend to the 7-day rolling average. Identify: - Projects or services with >20% increase - Dollar amount of change - Percentage...
Fetch live AWS status page updates for outages or degradation.
Visit the AWS Service Health Dashboard. Retrieve any ongoing issues, partial outages, or degraded performance reports for: - us-east-1 - eu-west-1 - ap-southeast-1 Summarize: - Affected services - Time started - Current impact - AWS update...
Run and compare two Terraform plans for change risks.
Log into Terraform Cloud (or run via CLI), and: - Generate a plan for current state - Generate a new plan after merging PR #582 Compare: - Number of resource deletions - Critical infra changes (databases, load balancers, DNS) - Estimate execution...