{"id":38049997,"url":"https://github.com/flowexec/tuikit","last_synced_at":"2026-05-01T02:03:59.536Z","repository":{"id":220878481,"uuid":"752821210","full_name":"flowexec/tuikit","owner":"flowexec","description":"Opinionated set of Go TUI development types and tools","archived":false,"fork":false,"pushed_at":"2026-04-29T22:54:09.000Z","size":393,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-30T00:34:21.955Z","etag":null,"topics":["charmbracelet","go","tui"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flowexec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","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":"2024-02-04T22:09:54.000Z","updated_at":"2026-04-29T22:53:26.000Z","dependencies_parsed_at":"2024-02-12T00:28:05.239Z","dependency_job_id":"026d2699-4eee-4185-b421-5c06fe2916fb","html_url":"https://github.com/flowexec/tuikit","commit_stats":null,"previous_names":["jahvon/tuikit","flowexec/tuikit"],"tags_count":41,"template":false,"template_full_name":null,"purl":"pkg:github/flowexec/tuikit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowexec%2Ftuikit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowexec%2Ftuikit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowexec%2Ftuikit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowexec%2Ftuikit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flowexec","download_url":"https://codeload.github.com/flowexec/tuikit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowexec%2Ftuikit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32482460,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["charmbracelet","go","tui"],"created_at":"2026-01-16T20:03:56.293Z","updated_at":"2026-05-01T02:03:59.518Z","avatar_url":"https://github.com/flowexec.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terminal UI Kit \n\n[![Go Report Card](https://goreportcard.com/badge/github.com/flowexec/tuikit)](https://goreportcard.com/report/github.com/flowexec/tuikit)\n[![Go Reference](https://pkg.go.dev/badge/github.com/flowexec/tuikit.svg)](https://pkg.go.dev/github.com/flowexec/tuikit)\n[![GitHub release](https://img.shields.io/github/v/release/flowexec/tuikit)](https://github.com/flowexec/tuikit/releases)\n\nThis repo contains types, interfaces, and utilities for building terminal user interfaces in Go.\nIt's an opinionated framework that uses [charm](https://charm.sh) TUI components and packages for rendering\nand handling terminal events.\n\n## Usage\n\nFirst, install the package:\n\n```bash\ngo get -u github.com/flowexec/tuikit@latest\n```\n\nYou can then use the package in your Go code:\n\n```go\npackage main\n\nimport (\n    \"context\"\n\n    \"github.com/flowexec/tuikit\"\n    \"github.com/flowexec/tuikit/views\"\n)\n\nfunc main() {\n    ctx := context.Background()\n    // Define your application metadata\n    app := \u0026tuikit.Application{Name: \"MyApp\"}\n\n    // Create and start the container\n    container, err := tuikit.NewContainer(ctx, app)\n    if err != nil {\n        panic(err)\n    }\n    if err := container.Start(); err != nil {\n        panic(err)\n    }\n    \n    // Create and set your view - the example below used the Markdown view type.\n    // There are other view types available in the views package.\n    view := views.NewMarkdownView(container.RenderState(), \"# Hello, world!\")\n    if err := container.SetView(view); err != nil {\n        panic(err)\n    }\n    \n    // Wait for the container to exit. Before getting here, you can handle events, update the view, etc.\n    container.WaitForExit()\n}\n```\n\nAlso see the [sample app](sample/main.go) for examples of how different views can be used.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowexec%2Ftuikit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflowexec%2Ftuikit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowexec%2Ftuikit/lists"}