{"id":37685589,"url":"https://github.com/fabiandistler/c4r","last_synced_at":"2026-01-16T12:32:00.372Z","repository":{"id":306880544,"uuid":"1027521368","full_name":"fabiandistler/c4r","owner":"fabiandistler","description":"Create C4 Architecture Diagrams in R","archived":false,"fork":false,"pushed_at":"2025-11-08T08:26:15.000Z","size":1829,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-08T08:26:47.589Z","etag":null,"topics":["c4-model","r","software-architecture"],"latest_commit_sha":null,"homepage":"https://fabiandistler.github.io/c4r/","language":"R","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/fabiandistler.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","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}},"created_at":"2025-07-28T06:22:20.000Z","updated_at":"2025-11-08T07:13:43.000Z","dependencies_parsed_at":"2025-07-28T08:27:10.864Z","dependency_job_id":"a9741489-dd5a-403e-a6a7-8f4e6044fe89","html_url":"https://github.com/fabiandistler/c4r","commit_stats":null,"previous_names":["fabiandistler/c4r"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/fabiandistler/c4r","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiandistler%2Fc4r","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiandistler%2Fc4r/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiandistler%2Fc4r/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiandistler%2Fc4r/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabiandistler","download_url":"https://codeload.github.com/fabiandistler/c4r/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabiandistler%2Fc4r/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","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":["c4-model","r","software-architecture"],"created_at":"2026-01-16T12:31:59.772Z","updated_at":"2026-01-16T12:32:00.308Z","avatar_url":"https://github.com/fabiandistler.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\nlibrary(c4r)\n```\n\n# c4r\n\n\u003c!-- badges: start --\u003e\n[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)\n[![CRAN status](https://www.r-pkg.org/badges/version/c4r)](https://CRAN.R-project.org/package=c4r)\n[![R-CMD-check](https://github.com/fabiandistler/c4r/actions/workflows/R-CMD-check.yaml/badge.svg?branch=main)](https://github.com/fabiandistler/c4r/actions/workflows/R-CMD-check.yaml)\n[![Codecov test coverage](https://codecov.io/gh/fabiandistler/c4r/graph/badge.svg)](https://app.codecov.io/gh/fabiandistler/c4r)\n\u003c!-- badges: end --\u003e\n\nc4r provides a simple R interface for creating C4 architecture diagrams. The package focuses on the first three levels of the C4 model (Context, Container, Component), generating diagrams using Graphviz DOT notation rendered through {DiagrammeR}. For the Code level, consider the [{flow}](https://github.com/moodymudskipper/flow) package.\n\n## Installation\n\nc4r is not yet available on CRAN. You can install the development version from GitHub:\n\n``` r\n# install.packages(\"pak\")\npak::pak(\"fabiandistler/c4r\")\n```\n\n## Quick Example\n\n```{r, eval=FALSE}\nlibrary(c4r)\n\n# Create a simple system context diagram\nc4_context(\n  title = \"My System Context\",\n  person = list(c4_person(\"user\", \"User\", \"System user\")),\n  system = list(c4_system(\"app\", \"My App\", \"Does something useful\")),\n  relationships = list(c4_rel(\"user\", \"app\", \"Uses\"))\n)\n```\n\n## Learn More\n\n- **[Getting Started Guide](https://fabiandistler.github.io/c4r/articles/getting-started.html)** - Complete tutorial with examples\n- **[Function Reference](https://fabiandistler.github.io/c4r/reference/)** - API documentation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabiandistler%2Fc4r","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabiandistler%2Fc4r","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabiandistler%2Fc4r/lists"}