{"id":35690874,"url":"https://github.com/lex00/wetwire-aws-go","last_synced_at":"2026-01-21T06:43:57.678Z","repository":{"id":332031410,"uuid":"1126981702","full_name":"lex00/wetwire-aws-go","owner":"lex00","description":"Go DSL for AWS CloudFormation with AI-assisted design","archived":false,"fork":false,"pushed_at":"2026-01-18T06:33:36.000Z","size":22894,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-18T07:35:22.951Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lex00.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":"NOTICE","maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-02T23:48:42.000Z","updated_at":"2026-01-18T06:33:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lex00/wetwire-aws-go","commit_stats":null,"previous_names":["lex00/wetwire-aws-go"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/lex00/wetwire-aws-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-aws-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-aws-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-aws-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-aws-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lex00","download_url":"https://codeload.github.com/lex00/wetwire-aws-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-aws-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28628838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-05T23:11:08.725Z","updated_at":"2026-01-21T06:43:57.673Z","avatar_url":"https://github.com/lex00.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wetwire-aws (Go)\n\n[![CI](https://github.com/lex00/wetwire-aws-go/actions/workflows/ci.yml/badge.svg)](https://github.com/lex00/wetwire-aws-go/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/lex00/wetwire-aws-go/branch/main/graph/badge.svg)](https://codecov.io/gh/lex00/wetwire-aws-go)\n[![Go Reference](https://pkg.go.dev/badge/github.com/lex00/wetwire-aws-go.svg)](https://pkg.go.dev/github.com/lex00/wetwire-aws-go)\n[![Go Report Card](https://goreportcard.com/badge/github.com/lex00/wetwire-aws-go)](https://goreportcard.com/report/github.com/lex00/wetwire-aws-go)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Release](https://img.shields.io/github/v/release/lex00/wetwire-aws-go.svg)](https://github.com/lex00/wetwire-aws-go/releases)\n\nAWS CloudFormation synthesis using Go struct literals.\n\n## Installation\n\n```bash\ngo install github.com/lex00/wetwire-aws-go/cmd/wetwire-aws@latest\n```\n\n## Quick Example\n\n```go\npackage infra\n\nimport (\n    \"github.com/lex00/wetwire-aws-go/resources/s3\"\n    \"github.com/lex00/wetwire-aws-go/resources/iam\"\n    \"github.com/lex00/wetwire-aws-go/resources/lambda\"\n    . \"github.com/lex00/wetwire-aws-go/intrinsics\"\n)\n\nvar MyBucket = s3.Bucket{\n    BucketName: \"my-data\",\n}\n\nvar MyRole = iam.Role{\n    RoleName: \"processor-role\",\n}\n\nvar MyFunction = lambda.Function{\n    FunctionName: \"processor\",\n    Runtime:      lambda.RuntimePython312,\n    Role:         MyRole.Arn,  // Type-safe GetAtt reference\n}\n```\n\n```bash\nwetwire-aws build ./infra \u003e template.json\n```\n\n## Serverless (SAM) Support\n\nBuild serverless applications with type-safe SAM resources:\n\n```go\npackage infra\n\nimport \"github.com/lex00/wetwire-aws-go/resources/serverless\"\n\nvar ProcessorFunction = serverless.Function{\n    Handler:    \"bootstrap\",\n    Runtime:    \"provided.al2\",\n    CodeUri:    \"./src\",\n    MemorySize: 128,\n    Timeout:    30,\n}\n```\n\nAll 9 SAM resource types supported: `Function`, `Api`, `HttpApi`, `SimpleTable`, `LayerVersion`, `StateMachine`, `Application`, `Connector`, `GraphQLApi`.\n\n## AI-Assisted Design\n\nCreate infrastructure interactively with AI:\n\n```bash\n# No API key required - uses Claude CLI\nwetwire-aws design \"Create an encrypted S3 bucket\"\n\n# Automated testing with personas\nwetwire-aws test --persona beginner \"Create a Lambda function\"\n```\n\nUses [Claude CLI](https://claude.ai/download) by default (no API key required). Falls back to Anthropic API if Claude CLI is not installed. See [CLI Reference](docs/CLI.md#design) for details.\n\n## Documentation\n\n**Getting Started:**\n- [Quick Start](docs/QUICK_START.md) - 5-minute tutorial\n- [FAQ](docs/FAQ.md) - Common questions\n\n**Reference:**\n- [CLI Reference](docs/CLI.md) - All commands\n- [SAM Guide](docs/SAM.md) - Serverless resources\n- [Lint Rules](docs/LINT_RULES.md) - WAW rule reference\n\n**Advanced:**\n- [Internals](docs/INTERNALS.md) - Architecture and extension points\n- [Adoption Guide](docs/ADOPTION.md) - Team migration strategies\n- [Examples](docs/EXAMPLES.md) - Imported template catalog\n\n## Development\n\n```bash\ngit clone https://github.com/lex00/wetwire-aws-go.git\ncd wetwire-aws-go\ngo mod download\ngo test ./...           # Run tests\n./scripts/ci.sh         # Full CI checks\n```\n\nSee [Developer Guide](docs/DEVELOPERS.md) and [Contributing](CONTRIBUTING.md) for details.\n\n## License\n\nMIT - See [LICENSE](LICENSE) for details. Third-party attributions in [NOTICE](NOTICE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire-aws-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flex00%2Fwetwire-aws-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire-aws-go/lists"}