{"id":50303272,"url":"https://github.com/plugarut/lilcurio","last_synced_at":"2026-05-28T14:01:22.376Z","repository":{"id":338084764,"uuid":"1155725660","full_name":"PlugaruT/lilcurio","owner":"PlugaruT","description":null,"archived":false,"fork":false,"pushed_at":"2026-02-12T18:48:31.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-13T02:16:21.009Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/PlugaruT.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}},"created_at":"2026-02-11T20:45:55.000Z","updated_at":"2026-02-12T18:48:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/PlugaruT/lilcurio","commit_stats":null,"previous_names":["plugarut/lilcurio"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/PlugaruT/lilcurio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlugaruT%2Flilcurio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlugaruT%2Flilcurio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlugaruT%2Flilcurio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlugaruT%2Flilcurio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PlugaruT","download_url":"https://codeload.github.com/PlugaruT/lilcurio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlugaruT%2Flilcurio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33611254,"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-05-28T02:00:06.440Z","response_time":99,"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":[],"created_at":"2026-05-28T14:01:18.601Z","updated_at":"2026-05-28T14:01:22.371Z","avatar_url":"https://github.com/PlugaruT.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lilcurio\n\nOffline CLI for [Apicurio Schema Registry](https://www.apicur.io/registry/) rule checking. Validate schemas and check compatibility between versions — no running registry needed.\n\nUses Apicurio's own `schema-util` libraries directly as a standalone tool.\n\n## Install (macOS)\n\n```bash\ncurl -L https://github.com/PlugaruT/lilcurio/releases/latest/download/lilcurio-macos-aarch64 -o lilcurio\nchmod +x lilcurio\nsudo mv lilcurio /usr/local/bin/\n```\n\nPre-built binaries for Linux and Windows are also available on the [Releases](../../releases) page.\n\n## Usage\n\n### Validate a schema\n\n```bash\nlilcurio validate schema.json --type json --level full\n```\n\nValidity levels: `full` (default), `syntax_only`, `none`\n\n### Check compatibility between versions\n\n```bash\n# Check if v2 is backward-compatible with v1\nlilcurio compatibility v1.json v2.json --type json --level backward\n\n# Transitive: check v3 against all previous versions\nlilcurio compatibility v1.json v2.json v3.json --type json --level backward-transitive\n```\n\nThe last file is always the **proposed** new version. All preceding files are existing versions (oldest first).\n\nCompatibility levels: `backward` (default), `backward-transitive`, `forward`, `forward-transitive`, `full`, `full-transitive`, `none`\n\n### Check compatibility against git (diff mode)\n\n```bash\n# Compare working tree version against last commit\nlilcurio diff schema.json --type json --level backward\n\n# Compare against a specific git ref (branch, tag, commit)\nlilcurio diff schema.json --type json --level backward --ref main\n```\n\nAutomatically retrieves the previous version from git and compares it with the current file on disk. The file must be tracked in a git repository.\n\n### Options\n\n| Flag | Description |\n|------|-------------|\n| `-t, --type` | Schema type: `json` (required) |\n| `-l, --level` | Rule level (see above) |\n| `--json` | Output results as JSON |\n| `-h, --help` | Show help |\n| `-V, --version` | Show version |\n\n### Exit codes\n\n| Code | Meaning |\n|------|---------|\n| `0` | Check passed |\n| `1` | Rule violation (details printed) |\n| `2` | Error (bad args, missing file, etc.) |\n\n### JSON output\n\n```bash\nlilcurio compatibility v1.json v2.json --type json --level backward --json\n```\n\n```json\n{\n  \"status\": \"FAIL\",\n  \"command\": \"compatibility\",\n  \"file\": \"v2.json\",\n  \"level\": \"BACKWARD\",\n  \"violations\": [\n    { \"description\": \"SUBSCHEMA_TYPE_CHANGED\", \"context\": \"/properties/name\" }\n  ]\n}\n```\n\n## Installation\n\n### Download a binary\n\nGrab a pre-built binary from [Releases](../../releases) — no Java required.\n\n### Build from source\n\nRequires Java 17+.\n\n```bash\nmvn clean package\njava -jar target/lilcurio-0.1.0-SNAPSHOT.jar --help\n```\n\n### Build a native binary\n\nRequires [GraalVM](https://www.graalvm.org/) with `native-image`.\n\n```bash\n# Generate reflection configs via tracing agent\n./scripts/generate-native-config.sh\n\n# Build native binary\nmvn -Pnative package -DskipTests\n\n# Result\n./target/lilcurio --version\n```\n\n## Supported schema types\n\n- **JSON Schema** — full validity and compatibility support\n\nAvro and Protobuf support is planned (the architecture is designed for it).\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplugarut%2Flilcurio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplugarut%2Flilcurio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplugarut%2Flilcurio/lists"}