{"id":48582543,"url":"https://github.com/zircote/kotlin-lsp","last_synced_at":"2026-04-08T17:34:16.691Z","repository":{"id":331510197,"uuid":"1126933477","full_name":"zircote/kotlin-lsp","owner":"zircote","description":"Claude Code plugin for Kotlin development with kotlin-language-server and ktlint hooks","archived":false,"fork":false,"pushed_at":"2026-02-28T01:36:26.000Z","size":19,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-28T03:44:07.064Z","etag":null,"topics":["android","claude-code-plugin","code-quality","jvm","kotlin","lsp"],"latest_commit_sha":null,"homepage":null,"language":"Kotlin","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/zircote.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":null,"dco":null,"cla":null},"funding":{"github":"zircote"}},"created_at":"2026-01-02T21:03:20.000Z","updated_at":"2026-02-28T01:36:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/zircote/kotlin-lsp","commit_stats":null,"previous_names":["zircote/kotlin-lsp"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/zircote/kotlin-lsp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fkotlin-lsp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fkotlin-lsp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fkotlin-lsp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fkotlin-lsp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zircote","download_url":"https://codeload.github.com/zircote/kotlin-lsp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zircote%2Fkotlin-lsp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31567056,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["android","claude-code-plugin","code-quality","jvm","kotlin","lsp"],"created_at":"2026-04-08T17:34:16.441Z","updated_at":"2026-04-08T17:34:16.662Z","avatar_url":"https://github.com/zircote.png","language":"Kotlin","readme":"# kotlin-lsp\n\n[![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](CHANGELOG.md)\n[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)\n[![Claude Plugin](https://img.shields.io/badge/claude-plugin-orange.svg)](https://docs.anthropic.com/en/docs/claude-code/plugins)\n[![Marketplace](https://img.shields.io/badge/marketplace-zircote--lsp-purple.svg)](https://github.com/zircote/lsp-marketplace)\n[![Kotlin](https://img.shields.io/badge/Kotlin-7F52FF?logo=kotlin\u0026logoColor=white)](https://kotlinlang.org/)\n\nA Claude Code plugin providing comprehensive Kotlin development support through:\n\n- **kotlin-language-server** integration for IDE-like features\n- **12 automated hooks** for Gradle builds, linting, formatting, and testing\n- **Kotlin tool ecosystem** integration (detekt, ktlint)\n\n## Quick Setup\n\n```bash\n# Run the setup command (after installing the plugin)\n/setup\n```\n\nOr manually:\n\n```bash\n# macOS (Homebrew)\nbrew install kotlin-language-server\nbrew install ktlint detekt\n```\n\n## Features\n\n### LSP Integration\n\nThe plugin configures kotlin-language-server for Claude Code via `.lsp.json`:\n\n```json\n{\n    \"kotlin\": {\n        \"command\": \"kotlin-language-server\",\n        \"args\": [],\n        \"extensionToLanguage\": { \".kt\": \"kotlin\", \".kts\": \"kotlin\" },\n        \"transport\": \"stdio\"\n    }\n}\n```\n\n**Capabilities:**\n- Go to definition / references\n- Hover documentation\n- Code completion with null safety\n- Coroutine-aware navigation\n- Real-time diagnostics\n\n### Automated Hooks\n\n| Hook | Trigger | Description |\n|------|---------|-------------|\n| `kotlin-format-on-edit` | `**/*.kt` | Auto-format with ktlint |\n| `kotlin-lint-on-edit` | `**/*.kt` | Lint with detekt |\n| `kotlin-compile-check` | `**/*.kt` | Compile with Gradle |\n| `kotlin-null-check` | `**/*.kt` | Detect !! usage |\n\n## Required Tools\n\n| Tool | Installation | Purpose |\n|------|--------------|---------|\n| `kotlin-language-server` | `brew install kotlin-language-server` | LSP server |\n| `ktlint` | `brew install ktlint` | Linting \u0026 formatting |\n| `detekt` | `brew install detekt` | Static analysis |\n\n## Project Structure\n\n```\nkotlin-lsp/\n├── .claude-plugin/\n│   └── plugin.json           # Plugin metadata\n├── .lsp.json                  # kotlin-language-server configuration\n├── commands/\n│   └── setup.md              # /setup command\n├── hooks/\n│   └── scripts/\n│       └── kotlin-hooks.sh\n├── tests/\n│   └── SampleTest.kt         # Test file\n├── CLAUDE.md                  # Project instructions\n└── README.md                  # This file\n```\n\n## License\n\nMIT\n","funding_links":["https://github.com/sponsors/zircote"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircote%2Fkotlin-lsp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzircote%2Fkotlin-lsp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzircote%2Fkotlin-lsp/lists"}