{"id":35131316,"url":"https://github.com/albertocavalcante/gvy","last_synced_at":"2026-04-27T17:32:18.348Z","repository":{"id":316515112,"uuid":"1063688755","full_name":"albertocavalcante/gvy","owner":"albertocavalcante","description":"Tools for Apache Groovy (LSP wip)","archived":false,"fork":false,"pushed_at":"2026-01-08T17:47:24.000Z","size":5588,"stargazers_count":1,"open_issues_count":151,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-08T20:44:08.937Z","etag":null,"topics":["groovy","lsp","vscode"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/albertocavalcante.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"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":"docs/roadmap/README.md","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":"2025-09-25T01:38:43.000Z","updated_at":"2026-01-08T17:47:28.000Z","dependencies_parsed_at":"2025-10-26T20:28:17.748Z","dependency_job_id":null,"html_url":"https://github.com/albertocavalcante/gvy","commit_stats":null,"previous_names":["albertocavalcante/groovy-lsp","albertocavalcante/gvy"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/albertocavalcante/gvy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertocavalcante%2Fgvy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertocavalcante%2Fgvy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertocavalcante%2Fgvy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertocavalcante%2Fgvy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/albertocavalcante","download_url":"https://codeload.github.com/albertocavalcante/gvy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/albertocavalcante%2Fgvy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400464,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["groovy","lsp","vscode"],"created_at":"2025-12-28T05:28:42.474Z","updated_at":"2026-01-13T22:02:06.910Z","avatar_url":"https://github.com/albertocavalcante.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Groovy Devtools\n\nGroovy Devtools (gvy) is a monorepo of Apache Groovy tooling. The Groovy Language Server (LSP) is the primary component\nand is still a work in progress, but it already provides core editor features plus framework-aware support for Jenkins\npipelines and Spock tests.\n\n## Status\n\n- Core LSP: completion, hover, navigation, formatting, diagnostics, code actions, rename, folding, semantic tokens\n- Jenkins: metadata-driven completion and diagnostics; deeper context awareness in progress\n- Spock: spec detection and block awareness; richer DSL support in progress\n- Editors: VS Code/Cursor/VSCodium extension in `editors/code/`\n\nSee `docs/roadmap.md` for the user-facing roadmap.\n\n## Documentation\n\n- `docs/README.md`\n- `docs/overview.md`\n- `docs/lsp/usage.md`\n- `docs/lsp/feature-support.md`\n\n## LSP Target\n\nWe target LSP 3.17 and use `lsp4j` 0.24.0. The full support matrix lives in `docs/lsp/feature-support.md`.\n\n## Requirements\n\n- Java 17 or higher\n- Groovy 4.0+\n\n## Building\n\n```bash\n./gradlew build\n```\n\nThis creates a fat JAR under `build/libs/`.\n\n## Running\n\n### Stdio mode (default)\n\n```bash\njava -jar build/libs/groovy-lsp-\u003cversion\u003e.jar\n```\n\n### Socket mode\n\n```bash\njava -jar build/libs/groovy-lsp-\u003cversion\u003e.jar socket 8080\n```\n\n## Development\n\nThis project uses:\n\n- Kotlin 2.0\n- LSP4J for protocol implementation\n- Gradle 9.1 for builds\n\n### Running tests\n\n```bash\n./gradlew test\n```\n\n### GitHub issue XML prompt generator\n\nGenerate a fenced `xml` prompt for a GitHub issue using the Codex CLI:\n\n```bash\n./tools/github-issues/generate-xml-prompt.sh ISSUE_NUMBER [--comment] [--model MODEL]\n```\n\nRequirements: `gh` (authenticated for the repo), `codex` CLI, and `jq` for parsing issue metadata. The tool asks Codex\nto return a pretty-printed XML block inside triple-backtick xml code fences; use `--comment` to post the output back to\nthe GitHub issue instead of printing it locally. The default model is `gpt-5-codex`.\n\n### Monorepo layout\n\n| Path                       | Description                         |\n| -------------------------- | ----------------------------------- |\n| `groovy-lsp/`              | Core language server                |\n| `parser/`                  | Parsing libraries (api/native/core) |\n| `groovy-common/`           | Shared utilities                    |\n| `groovy-diagnostics/`      | Diagnostics (compiler + CodeNarc)   |\n| `groovy-formatter/`        | OpenRewrite-based formatting        |\n| `groovy-jenkins/`          | Jenkins pipeline support            |\n| `groovy-spock/`            | Spock framework support             |\n| `groovy-gdsl/`             | GDSL execution and metadata         |\n| `groovy-testing/`          | Test discovery utilities            |\n| `groovy-junit/`            | JUnit integration                   |\n| `groovy-repl/`             | Groovy REPL                         |\n| `groovy-build-tool/`       | BSP/Gradle integration              |\n| `editors/code/`            | VS Code/Cursor/VSCodium extension   |\n| `jupyter/`                 | Jupyter kernels (Groovy/Jenkins)    |\n| `tools/jenkins-extractor/` | Jenkins metadata extractor          |\n| `tests/`                   | End-to-end LSP scenarios            |\n\n### VS Code Extension\n\nThe VS Code extension is located in `editors/code/`. See [editors/code/README.md](editors/code/README.md) for\nextension-specific documentation.\n\nA standalone mirror is maintained at [vscode-groovy](https://github.com/albertocavalcante/vscode-groovy) (synced via\nCopybara).\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for details.\n\n## License\n\nApache License 2.0 - See [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertocavalcante%2Fgvy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falbertocavalcante%2Fgvy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falbertocavalcante%2Fgvy/lists"}