{"id":29659574,"url":"https://github.com/yne/git-issue","last_synced_at":"2026-02-06T23:31:19.614Z","repository":{"id":305542089,"uuid":"1023026569","full_name":"yne/git-issue","owner":"yne","description":"git object based issue management","archived":false,"fork":false,"pushed_at":"2025-07-20T18:16:04.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-20T18:26:46.038Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yne.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-20T11:20:16.000Z","updated_at":"2025-07-20T16:52:42.000Z","dependencies_parsed_at":"2025-07-20T18:37:56.566Z","dependency_job_id":null,"html_url":"https://github.com/yne/git-issue","commit_stats":null,"previous_names":["yne/git-issue"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/yne/git-issue","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yne%2Fgit-issue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yne%2Fgit-issue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yne%2Fgit-issue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yne%2Fgit-issue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yne","download_url":"https://codeload.github.com/yne/git-issue/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yne%2Fgit-issue/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29180355,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T23:15:33.022Z","status":"ssl_error","status_checked_at":"2026-02-06T23:15:09.128Z","response_time":59,"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-07-22T09:36:09.737Z","updated_at":"2026-02-06T23:31:19.596Z","avatar_url":"https://github.com/yne.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# git-issue\n\nAll contributors have differents needs, some would prefere the CLI, while others need a WebUI to get a global overview.\n\nThis is why git-issue harness the power of existing standard to allow Human First collaboration, priorization, and monitoring\n- `Git` for storage, auth, sign, automation (via hook), right management (via branch protection), offline first (decentralised collaboration)\n- `JSON` for it universally supported syntax that any modern programming language can use natively\n- `JSON Schema` for it zero-code datamodeling/validation, state management ability, that user can adapt to it usecase\n\nThis obnoxius stack allow to build any desired interface and tooling on top\n\n## CLI\n\nthe CLI require `JQ` for edit and filtering\n\n```sh\ngit issue pull origin\ngit issue list\ngit issue create 42 # will use $EDITOR + $JSON_VALIDATOR\ngit issue show   42\ngit issue update 42 '.assignee=\"k@yne.fr\"'\ngit issue push origin\n\ngit issue show | jq '.assignee==\"k@yne.fr\"' # filter example\n```\n\n## WebApp\n\nThe demo webapp make use of `Markdown`: for rich description and `JQ`: (via jq.js) for filtering\n\n## TUI\n\ncurrent Bubbletea based TUI for issue browsing\n\n\u003cimg width=\"500\" height=\"250\" alt=\"image\" src=\"https://github.com/user-attachments/assets/ed69970e-3199-4b6c-b66e-7eb75f17ebe2\" /\u003e\n\n\n## State management\n\nState-based fields are JSON Schema validated using the `:old` suffix before submiting the change.\n- The previous value is kept as `field:old` alongside the new value.\n- schema is validating both values \n\n```json\n{\n    \"properties\": { \"status\": { \"enum\": [\"OPEN\", \"PENDING\", \"CLOSE\"] } },\n    \"required\": [\"status\"],\n\n    \"if\": { \"properties\": { \"status:old\": { \"type\": \"string\" } }, \"required\": [\"status:old\"] },\n    \"then\": { \"allOf\": [\n      { \"if\":   { \"properties\": { \"status:old\": { \"const\": \"OPEN\" } } },\n        \"then\": { \"properties\": { \"status\":     { \"enum\": [\"OPEN\", \"PENDING\"] } } } },\n      { \"if\":   { \"properties\": { \"status:old\": { \"const\": \"PENDING\" } } },\n        \"then\": { \"properties\": { \"status\":     { \"enum\": [\"PENDING\", \"CLOSE\"] } } } },\n      { \"if\":   { \"properties\": { \"status:old\": { \"const\": \"CLOSE\" } } },\n        \"then\": { \"properties\": { \"status\":     { \"const\": \"CLOSE\" } } } }\n    ] }\n}\n```\n\n## Similar projects\nPeople did not waited 2025 to store project-related information in git, some of them also use the name git-issue\n- aaiyer/bugseverywhere: store issues in filetree\n- MichaelMure/git-bug: store issues in /bug/ git object namespace","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyne%2Fgit-issue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyne%2Fgit-issue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyne%2Fgit-issue/lists"}