{"id":35137971,"url":"https://github.com/lex00/wetwire","last_synced_at":"2026-01-13T22:02:50.734Z","repository":{"id":331385608,"uuid":"1123813134","full_name":"lex00/wetwire","owner":"lex00","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-06T17:31:51.000Z","size":2863,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-07T08:57:57.754Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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":null,"contributing":null,"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":"2025-12-27T17:18:03.000Z","updated_at":"2026-01-06T17:31:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lex00/wetwire","commit_stats":null,"previous_names":["lex00/wetwire"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/lex00/wetwire","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lex00","download_url":"https://codeload.github.com/lex00/wetwire/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lex00%2Fwetwire/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400614,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":"2025-12-28T10:17:29.489Z","updated_at":"2026-01-13T22:02:50.727Z","avatar_url":"https://github.com/lex00.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wetwire\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Go](https://img.shields.io/badge/Go-1.23+-blue?logo=go)](https://golang.org/)\n\nDeclarative infrastructure-as-code designed for AI-human collaboration.\n\n## What is Wetwire?\n\nWetwire is a pattern for writing infrastructure-as-code using Go structs. The primary workflow is **design mode**, where an AI agent and human developer work together to generate infrastructure.\n\n```\nDeveloper: \"I need a Lambda function that processes S3 uploads\"\n     ↓\nAI Agent: Generates flat, declarative code\n     ↓\nLinter: Enforces patterns\n     ↓\nDeveloper: Reviews, refines, iterates\n```\n\nThe name is a reference to William Gibson's \"Johnny Mnemonic\" — representing the interface between human developers and AI agents.\n\n## Key Features\n\n- **Flat declarations** — Scannable blocks, no nested constructor calls\n- **AI-optimized** — Patterns designed for generation and review\n- **Type-safe** — Full IDE support and static analysis\n- **Lint-enforced** — Rules guide toward analyzable code\n\n## Documentation\n\n### Core Documentation\n\n| Document | Description |\n|----------|-------------|\n| [Wetwire Specification](docs/WETWIRE_SPEC.md) | Philosophy, requirements, and algorithms |\n| [Feature Matrix](docs/FEATURE_MATRIX.md) | Cross-domain feature comparison |\n| [FAQ](docs/FAQ.md) | Frequently asked questions |\n\n### For Contributors\n\n| Document | Description |\n|----------|-------------|\n| [Domain Guide](docs/DOMAIN_GUIDE.md) | How to create a new domain package |\n| [Documentation Guide](docs/DOCUMENTATION_GUIDE.md) | Documentation standards and style |\n\n### Architecture\n\n| Document | Description |\n|----------|-------------|\n| [Architecture](docs/architecture/ARCHITECTURE.md) | System design and implementation details |\n| [Code Generation](docs/architecture/CODEGEN_WORKFLOW.md) | Schema fetching and code generation |\n\n## Repositories\n\n### Core Package\n\n| Repository | Description |\n|------------|-------------|\n| [wetwire-core-go](https://github.com/lex00/wetwire-core-go) | Agent infrastructure, providers, MCP |\n\n### Domain Packages — Infrastructure\n\n| Repository | Description |\n|------------|-------------|\n| [wetwire-aws-go](https://github.com/lex00/wetwire-aws-go) | AWS CloudFormation synthesis |\n| [wetwire-k8s-go](https://github.com/lex00/wetwire-k8s-go) | Kubernetes manifest synthesis |\n| [wetwire-azure-go](https://github.com/lex00/wetwire-azure-go) | Azure ARM template synthesis |\n\n### Domain Packages — CI/CD\n\n| Repository | Description |\n|------------|-------------|\n| [wetwire-github-go](https://github.com/lex00/wetwire-github-go) | GitHub Actions synthesis |\n| [wetwire-gitlab-go](https://github.com/lex00/wetwire-gitlab-go) | GitLab CI synthesis |\n\n### Domain Packages — Observability\n\n| Repository | Description |\n|------------|-------------|\n| [wetwire-honeycomb-go](https://github.com/lex00/wetwire-honeycomb-go) | Honeycomb query synthesis |\n\n### Domain Packages — Graph\n\n| Repository | Description |\n|------------|-------------|\n| [wetwire-neo4j-go](https://github.com/lex00/wetwire-neo4j-go) | Neo4j GDS pipeline synthesis |\n\n## Status\n\n| Domain | Status |\n|--------|--------|\n| AWS CloudFormation | ✅ Active |\n| GitHub Actions | ✅ Active |\n| GitLab CI | ✅ Active |\n| Kubernetes | ✅ Active |\n| Azure ARM | ✅ Active |\n| Honeycomb | 🔨 Scaffold |\n| Neo4j GDS | 🔨 Scaffold |\n\n**Status Key:**\n- ✅ **Active** — Feature-complete, in production use\n- 🔨 **Scaffold** — Repository created, under development\n\n## Getting Started\n\n### With Claude Code (Recommended)\n\nThe easiest way to use wetwire is with [Claude Code](https://claude.ai/claude-code):\n\n1. Install a domain package:\n   ```bash\n   go install github.com/lex00/wetwire-github-go@latest\n   ```\n\n2. Add the MCP server to your Claude Code settings (`~/.claude/settings.json`):\n   ```json\n   {\n     \"mcpServers\": {\n       \"wetwire-github\": {\n         \"command\": \"wetwire-github-mcp\"\n       }\n     }\n   }\n   ```\n\n3. Start Claude Code in your project and ask it to generate infrastructure\n\n### Manual Setup\n\n1. Read the [Wetwire Specification](docs/WETWIRE_SPEC.md) for philosophy and patterns\n2. Choose a domain package and follow its Quick Start guide:\n   - [wetwire-aws-go](https://github.com/lex00/wetwire-aws-go) — Quick Start\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flex00%2Fwetwire","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flex00%2Fwetwire/lists"}