{"id":19220426,"url":"https://github.com/louisbrunner/regenea","last_synced_at":"2026-06-30T16:31:17.654Z","repository":{"id":66205039,"uuid":"158085741","full_name":"LouisBrunner/regenea","owner":"LouisBrunner","description":"A program to manage your family tree. It uses a JSON-based format called `genea`.","archived":false,"fork":false,"pushed_at":"2020-07-06T21:11:19.000Z","size":46,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-30T00:55:07.980Z","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":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LouisBrunner.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}},"created_at":"2018-11-18T13:18:18.000Z","updated_at":"2020-07-06T21:11:21.000Z","dependencies_parsed_at":"2023-03-10T23:43:10.989Z","dependency_job_id":null,"html_url":"https://github.com/LouisBrunner/regenea","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LouisBrunner/regenea","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisBrunner%2Fregenea","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisBrunner%2Fregenea/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisBrunner%2Fregenea/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisBrunner%2Fregenea/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LouisBrunner","download_url":"https://codeload.github.com/LouisBrunner/regenea/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisBrunner%2Fregenea/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34975668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-09T14:35:08.695Z","updated_at":"2026-06-30T16:31:17.519Z","avatar_url":"https://github.com/LouisBrunner.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# regenea [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Go Report Card][report-image]][report-url] [![GoDoc][doc-image]][doc-url]\nA program to manage your family tree. It uses a JSON-based format called `genea`.\n\n# Install it\n\n```\ngo get -u github.com/LouisBrunner/regenea\n```\n\n# Usage\n\nHere is the list of supported actions:\n\n## Check\n\nThis command checks that your family tree is correctly formatted, it will return a zero status code if it's valid and a non-zero otherwise.\n\nUsing a file:\n```\nregenea check tree.genea\n```\n\nUsing stdin:\n```\ncat tree.genea | regenea check\n```\n\n## Report\n\nThis command prints a report of interesting facts and statistics that your family tree contains.\n\nUsing a file:\n```\nregenea report tree.genea\n```\n\nUsing stdin:\n```\ncat tree.genea | regenea report\n```\n\n## Report\n\nThis command prints a report of interesting facts and statistics that your family tree contains.\n\nUsing a file:\n```\nregenea report tree.genea\n```\n\nUsing stdin:\n```\ncat tree.genea | regenea report\n```\n\n## Transform\n\nThis command transforms a family tree from one format to another. Currently only `genea` is supported (V1 and V2).\n\nUsing files:\n```\nregenea transform -in treeV1.genea -inform genea -out treeV2.genea -outform genea\n```\n\nUsing stdin/stdout:\n```\ncat treeV1.genea | regenea report -inform genea -outform genea \u003e treeV2.genea\n```\n\n*Note:* you can use this command to upgrade/downgrade between `genea` versions.\n\nUpgrade:\n```\nregenea transform -in treeV1.genea -inform genea -out treeV2.genea -outform genea\n```\n\nDowngrade (will result in loss of data):\n```\nregenea transform -in treeV2.genea -inform genea -out treeV1.genea -outform genea -outversion 1\n```\n\n## Display\n\nComing soon\n\n# `genea` format\n\nComing soon\n\n[travis-image]: https://travis-ci.org/LouisBrunner/regenea.svg?branch=master\n[travis-url]: https://travis-ci.org/LouisBrunner/regenea\n[coveralls-image]: https://coveralls.io/repos/github/LouisBrunner/regenea/badge.svg?branch=master\n[coveralls-url]: https://coveralls.io/github/LouisBrunner/regenea?branch=master\n[report-image]: https://goreportcard.com/badge/github.com/LouisBrunner/regenea?branch=master\n[report-url]: https://goreportcard.com/report/github.com/LouisBrunner/regenea?branch=master\n[doc-image]: https://godoc.org/github.com/LouisBrunner/regenea?status.svg?branch=master\n[doc-url]: https://godoc.org/github.com/LouisBrunner/regenea?branch=master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisbrunner%2Fregenea","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flouisbrunner%2Fregenea","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisbrunner%2Fregenea/lists"}