{"id":50523046,"url":"https://github.com/johnbean393/KeyType","last_synced_at":"2026-06-20T00:00:55.672Z","repository":{"id":361681957,"uuid":"1255267904","full_name":"johnbean393/KeyType","owner":"johnbean393","description":"An open-source Cotypist with macOS system wide AI autocomplete","archived":false,"fork":false,"pushed_at":"2026-06-08T09:19:18.000Z","size":7711,"stargazers_count":281,"open_issues_count":14,"forks_count":12,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-08T10:25:16.054Z","etag":null,"topics":["ai","ai-autocomplete","autocomplete","completions","cotabby","cotypist","gemma4","llm","macos","qwen3-5"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/johnbean393.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-31T16:08:48.000Z","updated_at":"2026-06-08T09:19:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/johnbean393/KeyType","commit_stats":null,"previous_names":["johnbean393/keytype"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/johnbean393/KeyType","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbean393%2FKeyType","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbean393%2FKeyType/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbean393%2FKeyType/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbean393%2FKeyType/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/johnbean393","download_url":"https://codeload.github.com/johnbean393/KeyType/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/johnbean393%2FKeyType/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34552295,"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-19T02:00:06.005Z","response_time":61,"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":["ai","ai-autocomplete","autocomplete","completions","cotabby","cotypist","gemma4","llm","macos","qwen3-5"],"created_at":"2026-06-03T06:00:31.029Z","updated_at":"2026-06-20T00:00:55.666Z","avatar_url":"https://github.com/johnbean393.png","language":"Swift","funding_links":[],"categories":["AI"],"sub_categories":[],"readme":"\u003cp align=\"center\" width=\"100%\"\u003e\n\u003cimg width=\"120\" alt=\"KeyType app icon\" src=\"https://raw.githubusercontent.com/johnbean393/KeyType/main/.github/images/app-icon.png\"\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eKeyType\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\nAn open-source, on-device, system-wide tab-autocomplete utility for macOS.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/johnbean393/KeyType/releases/latest\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Download_DMG-Latest_Release-blue?style=for-the-badge\u0026logo=apple\u0026logoColor=white\" alt=\"Download DMG\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://youtu.be/1huNPFQHqi8\"\u003e\n    \u003cimg src=\".github/images/demo.gif\" alt=\"KeyType demo video\" width=\"720\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n**KeyType** is an open-source, on-device, system-wide **tab-autocomplete utility for macOS**.\n\nIt watches the focused text field across any app, predicts a short continuation at the cursor\nusing a **local LLM**, and offers it as ghost text that you accept with **Tab**.\n\nIt is a MIT-licensed alternative to the closed-source app *Cotypist*.\n\n## Getting started\n\n### Installation\n\n1. Download the latest release from the [releases](https://github.com/johnbean393/KeyType/releases) page\n2. Double-click the downloaded `KeyType.dmg` file\n3. Drag the `KeyType` app into `Applications`\n4. Open `KeyType` and complete the onboarding\n\n### Development\n\nRequirements: macOS 14+ and a recent version of Xcode.\n\n```sh\ngit clone https://github.com/johnbean393/KeyType.git\ncd KeyType\nopen KeyType.xcworkspace\n```\n\nBuild/run the **KeyType** scheme.\n\nPer-package builds:\n\n```sh\nswift build --package-path Packages/AutocompleteCore\nswift test  --package-path Packages/Prompting\n```\n\n## Repo layout\n\n```\nKeyType/\n├── KeyType.xcworkspace/      ← open this in Xcode\n├── KeyType.xcodeproj/\n├── KeyType/                  ← app target (menu-bar shell)\n├── KeyTypeTests/  KeyTypeUITests/\n├── docs/                     ← the project brief \u0026 playbooks (00–08)\n└── Packages/                 ← local SwiftPM packages (the real logic)\n    ├── AutocompleteCore/         shared domain types \u0026 protocols\n    ├── MacContextCapture/        AX focus + caret + text-field snapshot\n    ├── Prompting/                sectioned, budgeted prompt builder\n    ├── ModelRuntime/             llama.cpp wrapper\n    ├── ConstrainedGeneration/    logit masking, trie admissibility, search\n    ├── TokenProfiles/            ACPF profile reader + offline builder\n    ├── CompletionUI/             overlay rendering (inline ghost text)\n    ├── TextInsertion/            pasteboard / keystroke insertion strategies\n    └── AppCompatibility/         per-app / per-domain override policy\n```\n\n## License\n\nMIT — see [LICENSE](https://github.com/johnbean393/KeyType/blob/main/LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbean393%2FKeyType","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjohnbean393%2FKeyType","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjohnbean393%2FKeyType/lists"}