{"id":49915758,"url":"https://github.com/two-tech-dev/endgit-cli","last_synced_at":"2026-05-16T16:10:49.402Z","repository":{"id":355143689,"uuid":"1223667197","full_name":"two-tech-dev/endgit-cli","owner":"two-tech-dev","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-09T15:21:57.000Z","size":99,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-09T16:48:34.896Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/two-tech-dev.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-04-28T14:38:32.000Z","updated_at":"2026-05-09T15:21:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/two-tech-dev/endgit-cli","commit_stats":null,"previous_names":["two-tech-dev/endgit-cli"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/two-tech-dev/endgit-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/two-tech-dev","download_url":"https://codeload.github.com/two-tech-dev/endgit-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/two-tech-dev%2Fendgit-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33109465,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":[],"created_at":"2026-05-16T16:10:43.322Z","updated_at":"2026-05-16T16:10:49.395Z","avatar_url":"https://github.com/two-tech-dev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EndGit CLI\n**Command-line tool for the Endstone plugin ecosystem**   \nEndGit CLI allows developers to publish, search, and install Endstone plugins directly from the terminal.\n\n[![Release](https://github.com/two-tech-dev/endgit-cli/actions/workflows/release.yml/badge.svg)](https://github.com/two-tech-dev/endgit-cli/actions/workflows/release.yml)   \n\n## Installation\n\n**Windows:**\n```powershell\nirm https://endgit.dev/installer.ps1 | iex\n```\n\n**Linux / macOS:**\n```bash\ncurl -sSL https://endgit.dev/installer.sh | bash\n```\n\n\n## Usage\n\n```bash\n# Login with your EndGit account\nendgit login\n\n# Search plugins\nendgit search \u003cquery\u003e\n\n# View plugin details\nendgit info \u003cplugin\u003e\n\n# Install a plugin (latest version)\nendgit install \u003cplugin\u003e\n\n# Install a specific version\nendgit install \u003cplugin\u003e@1.2.0\n\n# Install a dev build by commit\nendgit install \u003cplugin\u003e@abc1234\n\n# Initialize a new plugin project\nendgit init\n\n# Update EndGit to the latest version\nendgit update\n```\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `endgit login` | Authenticate with EndGit |\n| `endgit logout` | Logout of EndGit |\n| `endgit search \u003cquery\u003e` | Search the plugin marketplace |\n| `endgit info \u003cplugin\u003e` | Show detailed plugin information |\n| `endgit install \u003cplugin[@version]\u003e` | Install a plugin to your server |\n| `endgit init` | Initialize a new plugin project |\n| `endgit publish` | Package and publish your plugin |\n| `endgit update` | Update EndGit CLI to the latest version |\n\n## Building\n\n### Requirements\n\n- Go 1.26+ (see `go.mod` for exact version)\n- `GOPATH/bin` added to your system `PATH`\n\n### Build from Source\n\n```bash\ngit clone https://github.com/two-tech-dev/endgit-cli.git\ncd endgit-cli\n\n# Development build\ngo build -o endgit .\n\n# Production build (with version injection)\ngo build -ldflags=\"-s -w -X github.com/two-tech-dev/endgit-cli/cmd.Version=v0.1.5\" -o endgit .\n```\n\n### Run Locally\n\n```bash\ngo run .\n```\n\n## License\n\nThis project is licensed under the [GNU Affero General Public License v3.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwo-tech-dev%2Fendgit-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftwo-tech-dev%2Fendgit-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftwo-tech-dev%2Fendgit-cli/lists"}