AlexK020908

28 mods across 1 repository, 2 stars between them.

system-design

01

AlexK020908/infra-designer

Skill Claude CodeCodex

System-design judgment for planning cloud infrastructure — how to choose and size components (databases, caches, queues, scaling, consistency, realtime). Use when deciding WHICH infrastructure components a workload needs (and during /plan-infra in the infra-designer plugin).

2 2mo ago A 54 tokens original MIT

infra-designer

03

AlexK020908/infra-designer

Plugin Claude Code

Plan, deploy, and audit cloud infrastructure from a single reproducible spec, backed by a registry of declarative components that compile to plain Terraform.

2 2mo ago A tokens not measured original MIT

infra-designer

04

AlexK020908/infra-designer

Cursor rule

Plan, deploy, and audit cloud infrastructure from a reproducible spec via the infra-designer engine.

2 2mo ago A 0 tokens original MIT

audit

05

AlexK020908/infra-designer

Command

Diff live infrastructure against the spec and report drift by component name.

2 2mo ago A 13 tokens original MIT

deploy

06

AlexK020908/infra-designer

Command

Compile the infra spec to Terraform and deploy it, iterating on any apply errors.

2 2mo ago A 17 tokens original MIT

plan-infra

07

AlexK020908/infra-designer

Command

Confirm requirements with the user first, then design cloud infrastructure and write a reproducible spec + diagram into the repo.

2 2mo ago A 23 tokens original MIT

research-component

09

AlexK020908/infra-designer

Command

Research and add a new infra component from a documentation link the user provides — crawl the docs, fan out subagents over the relevant subpages, then write, register, and validate the component.

2 2mo ago A 39 tokens original MIT

alb

10

AlexK020908/infra-designer

Skill Claude CodeCodex

The only entry-point/load-balancer node in the catalog — there is no API Gateway type, so public traffic enters here and gateway-style concerns get pushed into the services. Config knobs: listenerPort (443), targetPort (3000), sslPolicy, scheme, healthCheckPath (default /health).

2 2mo ago A 0 tokens original MIT

apprunner-service

11

AlexK020908/infra-designer

Skill Claude CodeCodex

Fully managed compute for containerized web apps/APIs — no servers to patch. Default compute choice when an app just needs to run a container behind HTTPS.

2 2mo ago A 0 tokens original MIT

dynamodb-table

12

AlexK020908/infra-designer

Skill Claude CodeCodex

Fully-managed key-value store; single-digit-ms reads/writes at any scale. Config knobs here: billingMode, pointInTimeRecovery, streamEnabled. When to pick DynamoDB at all → data-modeling.md; key/index design rules → db-indexing.md.

2 2mo ago A 0 tokens original MIT

ec2-instance

13

AlexK020908/infra-designer

Skill Claude CodeCodex

One virtual machine that boots Docker (user-data) and runs the app's container. Cheapest fixed-cost compute: a t3.small is $15/mo flat, no per-request pricing — undercuts managed compute for steady hobby/MVP traffic.

2 2mo ago B 0 tokens original MIT

ecs-service

14

AlexK020908/infra-designer

Skill Claude CodeCodex

Serverless containers with no EC2 to manage — more configurable than App Runner. Config knobs: minCount/maxCount (auto-scaling bounds), assignPublicIp.

2 2mo ago A 0 tokens original MIT

elasticache-redis

15

AlexK020908/infra-designer

Skill Claude CodeCodex

In-memory data structure store: microsecond commands, sub-millisecond network reads, 100k+ writes/sec per node. Fast because everything lives in RAM and runs on one thread.

2 2mo ago A 0 tokens original MIT

kinesis-stream

16

AlexK020908/infra-designer

Skill Claude CodeCodex

Managed, ordered, replayable event stream — the deployable streaming primitive. Records are retained (default 24h, up to 365 days) and each consumer reads independently at its own offset, so the same events can feed many pipelines and be re-read after a bug fix. Config knobs: streamMode, retentionHours.

2 2mo ago A 0 tokens original MIT

lambda-function

17

AlexK020908/infra-designer

Skill Claude CodeCodex

Event-driven compute that scales to zero — essentially $0 for low-traffic background jobs. Config knobs: memoryMB, timeoutSec, reservedConcurrency.

2 2mo ago A 0 tokens original MIT

rds-postgres

18

AlexK020908/infra-designer

Skill Claude CodeCodex

Single-node managed Postgres. Default choice for relational data — and often replaces other nodes (see "Built-ins"). Config knobs: instanceClass, storageGB, encrypted, multiAz, publiclyAccessible, dbName.

2 2mo ago A 0 tokens original MIT

s3-bucket

19

AlexK020908/infra-designer

Skill Claude CodeCodex

Managed object storage. Buckets are always private — serve public content via CloudFront + OAC (see aws.cloudfront.distribution).

2 2mo ago A 0 tokens original MIT

scheduler-schedule

20

AlexK020908/infra-designer

Skill Claude CodeCodex

Managed cron (EventBridge Scheduler): fires on a schedule and triggers exactly ONE target — an aws.lambda.function or an aws.sqs.queue. Config knobs: scheduleExpression (default rate(1 day)), timezone (default UTC).

2 2mo ago A 0 tokens original MIT

sns-topic

22

AlexK020908/infra-designer

Skill Claude CodeCodex

Pub/sub fan-out: one published message is delivered to EVERY subscriber, where a queue delivers each message to ONE consumer. Config knob: fifo (false).

2 2mo ago A 0 tokens original MIT

sqs-queue

23

AlexK020908/infra-designer

Skill Claude CodeCodex

Managed message queue; the catalog's only queue node. Config knobs: fifo (false), visibilityTimeoutSec (30), retentionDays (4), dlqEnabled (true). Use it for async work handoff — see long-running-tasks.md for the job pattern, scaling-writes.md for write buffering, multi-step-processes.md for workflow chains.

2 2mo ago A 0 tokens original MIT

database

24

AlexK020908/infra-designer

Skill Claude CodeCodex

A managed Postgres with a public, pooled, TLS endpoint — plus auth, storage, and realtime if you want them. The serverless-friendly database that pairs with a Vercel frontend or any external/edge compute. Provisioned in the Supabase dashboard, not IaC.

2 2mo ago A 0 tokens original MIT