{"id":36874791,"url":"https://github.com/lex00/wetwire-azure-go","last_synced_at":"2026-01-21T06:43:20.292Z","repository":{"id":331947573,"uuid":"1132274986","full_name":"lex00/wetwire-azure-go","owner":"lex00","description":"Go implementation of wetwire for Azure ARM/Bicep templates","archived":false,"fork":false,"pushed_at":"2026-01-11T21:56:28.000Z","size":132,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-11T21:58:43.267Z","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":"apache-2.0","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":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-11T16:54:41.000Z","updated_at":"2026-01-11T21:56:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lex00/wetwire-azure-go","commit_stats":null,"previous_names":["lex00/wetwire-azure-go"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/lex00/wetwire-azure-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-azure-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-azure-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-azure-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-azure-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lex00","download_url":"https://codeload.github.com/lex00/wetwire-azure-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire-azure-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"last_error":"SSL_read: 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-12T15:05:55.455Z","updated_at":"2026-01-16T09:47:13.049Z","avatar_url":"https://github.com/lex00.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wetwire-azure-go\n\n[![CI](https://github.com/lex00/wetwire-azure-go/actions/workflows/ci.yml/badge.svg)](https://github.com/lex00/wetwire-azure-go/actions/workflows/ci.yml)\n[![Go Reference](https://pkg.go.dev/badge/github.com/lex00/wetwire-azure-go.svg)](https://pkg.go.dev/github.com/lex00/wetwire-azure-go)\n[![Go Report Card](https://goreportcard.com/badge/github.com/lex00/wetwire-azure-go)](https://goreportcard.com/report/github.com/lex00/wetwire-azure-go)\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nGo implementation of wetwire for Azure ARM/Bicep templates.\n\n## Overview\n\nwetwire-azure-go enables defining Azure resources using Go code, with full type safety and IDE support.\n\n## Installation\n\n```bash\ngo install github.com/lex00/wetwire-azure-go/cmd/wetwire-azure@latest\n```\n\n## Quick Start\n\n```go\npackage main\n\nimport (\n    \"github.com/lex00/wetwire-azure-go/resources/storage\"\n)\n\n// MyStorageAccount defines a basic Azure storage account.\n// Resources are declared as package-level variables for AST discovery.\nvar MyStorageAccount = storage.StorageAccount{\n    Name:     \"mystorageaccount\",\n    Location: \"eastus\",\n    SKU: storage.SKU{\n        Name: \"Standard_LRS\",\n    },\n    Kind: \"StorageV2\",\n}\n\nfunc main() {\n    // wetwire-azure build discovers resources via AST parsing\n    // No runtime execution is needed\n}\n```\n\n## Commands\n\n- `wetwire-azure build` - Generate ARM/Bicep templates from Go code\n- `wetwire-azure lint` - Lint Azure resource definitions\n- `wetwire-azure validate` - Validate against Azure schemas\n- `wetwire-azure design` - AI-assisted infrastructure design\n- `wetwire-azure test` - Run synthesis tests with AI personas\n- `wetwire-azure mcp` - Start MCP server for Kiro CLI integration\n\n## AI-Assisted Design\n\nwetwire-azure integrates with Kiro CLI for interactive infrastructure design:\n\n```bash\n# Install Kiro CLI\ncurl -fsSL https://cli.kiro.dev/install | bash\n\n# Start AI-assisted design session\nwetwire-azure design --provider kiro \"Create a storage account with geo-redundant storage\"\n```\n\nSee [docs/AZURE-KIRO-CLI.md](docs/AZURE-KIRO-CLI.md) for detailed setup instructions.\n\n## License\n\nApache 2.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire-azure-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flex00%2Fwetwire-azure-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire-azure-go/lists"}