{"id":32477901,"url":"https://github.com/tuist/fabrik","last_synced_at":"2026-05-02T22:32:57.412Z","repository":{"id":320560229,"uuid":"1081814814","full_name":"tuist/fabrik","owner":"tuist","description":"The Kubernetes of development environments","archived":false,"fork":false,"pushed_at":"2026-04-22T16:01:56.000Z","size":2904,"stargazers_count":16,"open_issues_count":14,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T18:05:24.402Z","etag":null,"topics":["bazel","build-cache","caching","cargo","compiler-cache","gradle","infrastructure","rust","sccache"],"latest_commit_sha":null,"homepage":"https://fabrik.tuist.dev","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tuist.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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-10-23T10:25:34.000Z","updated_at":"2026-02-22T06:55:41.000Z","dependencies_parsed_at":"2025-12-15T18:02:45.804Z","dependency_job_id":"edb1b640-9914-4969-8727-967b6affe92d","html_url":"https://github.com/tuist/fabrik","commit_stats":null,"previous_names":["tuist/fabrik"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/tuist/fabrik","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuist%2Ffabrik","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuist%2Ffabrik/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuist%2Ffabrik/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuist%2Ffabrik/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tuist","download_url":"https://codeload.github.com/tuist/fabrik/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tuist%2Ffabrik/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32552366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T22:28:24.418Z","status":"ssl_error","status_checked_at":"2026-05-02T22:28:14.225Z","response_time":132,"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":["bazel","build-cache","caching","cargo","compiler-cache","gradle","infrastructure","rust","sccache"],"created_at":"2025-10-26T23:16:11.983Z","updated_at":"2026-05-02T22:32:57.406Z","avatar_url":"https://github.com/tuist.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fabrik\n\nA polyglot, agent-native build system. Bazel's ambitions, none of its mistakes.\n\n\u003e [!WARNING]\n\u003e 🚧 **Pre-alpha.** Not yet usable for real builds. The CLI runs and the cache works, but\n\u003e there is no language plugin yet (it's the next phase). See the\n\u003e [roadmap](docs/roadmap.md) for what lands when.\n\n## What you get\n\n- 🌍 **One build system for the whole polyglot stack.** Rust, Go, C/C++,\n  TypeScript, Python, Java/Kotlin, Elixir, Swift, Android, iOS.\n- ⚡ **Trustworthy, content-addressed caching** that's shareable across\n  machines via the Bazel REAPI protocol.\n- 🎯 **Honest boundaries.** When fidelity has to drop (Gradle, Vite, Mix),\n  Fabrik says so out loud rather than pretending.\n- 🤖 **Agent-native.** The build graph is a typed, queryable data\n  structure. Humans and AI agents talk to the same gRPC API.\n- 📈 **OpenTelemetry-native** with build-specific semantic conventions.\n\nThe full picture is in [docs/design.md](docs/design.md).\n\n## Install\n\nThe recommended path is [mise](https://mise.jdx.dev) with the GitHub backend:\n\n```sh\nmise use --global github:tuist/fabrik@latest\nfabrik --version\n```\n\nPin to a specific release if you want reproducibility:\n\n```sh\nmise use --global github:tuist/fabrik@0.1.0\n```\n\nOr download a prebuilt archive directly from\n[releases](https://github.com/tuist/fabrik/releases). Each release ships\nbinaries for:\n\n- 🐧 Linux x86_64\n- 🍎 macOS x86_64 and arm64\n- 🪟 Windows x86_64\n\n## Quick taste\n\n```sh\n# Run a command through the action cache.\nfabrik run -e PATH=/usr/bin:/bin -- /bin/sh -c 'echo hello'\n\n# A second identical invocation replays the cached stdout/stderr/exit\n# without re-running the command.\nfabrik run -e PATH=/usr/bin:/bin -- /bin/sh -c 'echo hello'\n\n# Cache stats.\nfabrik cache stats\n```\n\nThe cache lives under `\u003cworkspace\u003e/.fabrik/`. Use `-C \u003cdir\u003e` to point at\na different workspace, the same way `make -C` works.\n\n## Contributing\n\nPhase 0 (walking skeleton: CAS, action executor, CLI) shipped in 0.1.0.\nThe next phase brings the Rust language plugin so Fabrik can build\nitself. Track progress in the [roadmap](docs/roadmap.md).\n\nTo build from source:\n\n```sh\nmise install\ncargo build --release\ncargo test\nmise exec -- shellspec\n```\n\nCI runs lint, tests, and a Windows compile check on every PR. See\n[.github/workflows/ci.yml](.github/workflows/ci.yml) and\n[CONTRIBUTING](docs/contributing.md) (coming soon).\n\n## License\n\n[MIT](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuist%2Ffabrik","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftuist%2Ffabrik","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftuist%2Ffabrik/lists"}