{"id":37135028,"url":"https://github.com/flowerloader/tool","last_synced_at":"2026-01-14T15:45:13.976Z","repository":{"id":239822711,"uuid":"800706432","full_name":"flowerLoader/tool","owner":"flowerLoader","description":"Tool - The Flower CLI","archived":false,"fork":false,"pushed_at":"2024-05-22T13:29:20.000Z","size":170,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-22T13:52:24.245Z","etag":null,"topics":["flower-loader","game-modding","go","golang-tools","mod-manager","package-management"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flowerLoader.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}},"created_at":"2024-05-14T20:56:02.000Z","updated_at":"2024-06-22T05:40:14.297Z","dependencies_parsed_at":"2024-05-22T13:52:26.483Z","dependency_job_id":"66a468b8-7185-4b2f-97ae-59707f5ae4f4","html_url":"https://github.com/flowerLoader/tool","commit_stats":null,"previous_names":["flowerloader/tool"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/flowerLoader/tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowerLoader%2Ftool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowerLoader%2Ftool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowerLoader%2Ftool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowerLoader%2Ftool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flowerLoader","download_url":"https://codeload.github.com/flowerLoader/tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flowerLoader%2Ftool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424691,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T15:24:48.085Z","status":"ssl_error","status_checked_at":"2026-01-14T15:23:41.940Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["flower-loader","game-modding","go","golang-tools","mod-manager","package-management"],"created_at":"2026-01-14T15:45:13.308Z","updated_at":"2026-01-14T15:45:13.959Z","avatar_url":"https://github.com/flowerLoader.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003eFlower Loader CLI\u003c/h1\u003e\n\n![Language](https://img.shields.io/badge/Language-Go_1.20+-blue?style=for-the-badge\u0026logo=go)\n![License](https://img.shields.io/badge/License-CC_BY--NC--SA_4.0-yellowgreen?style=for-the-badge\u0026logo=creativecommons)\n\n**Flower Loader** is a Plugin Manager for `Creator of Another World`. With Flower Loader, you can easily manage and develop Plugins. This repository contains the command-line interface (CLI) tool to manage plugins. It is built with Go and is source-available under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.\n\n\u003ch2\u003eGet Involved\u003c/h2\u003e\n\n[![Join the Discord](https://img.shields.io/discord/1239786034561028136?color=5865F2\u0026label=Join+The+Discord\u0026logo=discord\u0026style=for-the-badge)](https://discord.gg/kHSEXyawFY)\n\n\u003ch3\u003eSupported Games\u003c/h3\u003e\n\n[![Steam](https://img.shields.io/badge/Steam-Creator_Of_Another_World-1b2838?style=for-the-badge\u0026logo=steam)](https://store.steampowered.com/app/2761610/Creator_of_Another_World/)  \nby [kuetaro (くえたろう)](https://store.steampowered.com/curator/44822906)\n\n\u003ch2\u003eTable of Contents\u003c/h2\u003e\n\n- [Installing the Tool](#installing-the-tool)\n  - [From a GitHub Release](#from-a-github-release)\n  - [From Source](#from-source)\n- [Usage](#usage)\n- [Development](#development)\n  - [Prerequisites](#prerequisites)\n  - [Clone the Repository](#clone-the-repository)\n  - [Build the Project](#build-the-project)\n  - [Run the Project](#run-the-project)\n- [Plugin Ecosystem](#plugin-ecosystem)\n- [Contributing](#contributing)\n- [FAQ \\\u0026 Troubleshooting](#faq--troubleshooting)\n\n## Installing the Tool\n\n### From a GitHub Release\n\nChoose your method of installation:\n\n\u003cdetails\u003e\n\u003csummary\u003eWindows via PowerShell\u003c/summary\u003e\n\n```powershell\n$INSTALL_DIR = \"C:\\Program Files\\flower\"\n\n# Extract the archive\nExpand-Archive `\n  -DestinationPath $INSTALL_DIR `\n  -Path flower_*.zip `\n  -Force\n\n# Add to PATH\n$env:Path += \";$INSTALL_DIR\"\n\n# Check if it's installed\nflower --version\n```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eLinux via bash (Ubuntu 20/22)\u003c/summary\u003e\n\n```bash\nINSTALL_DIR=\"/usr/local/bin/flower\"\n\n# Extract the archive\nsudo unzip flower_*.zip -d $INSTALL_DIR\n\n# Add to PATH\necho \"export PATH=\\$PATH:$INSTALL_DIR\" \u003e\u003e ~/.profile\nsource ~/.profile\n\n# Check if it's installed\nflower --version\n```\n\u003c/details\u003e\n\n### From Source\n\nFirst, if you haven't, [install Go](https://golang.org/doc/install) (version 1.20 or newer.) Then, run the following:\n\n```bash\ngo install github.com/flowerLoader/tool/cmd/flower@latest\n```\n\n## Usage\n\n- **Install a plugin**: `flower add FlowerTeam.LimitBreaker`\n- **Update all plugins**: `flower update all`\n- **Remove a plugin**: `flower remove FlowerTeam.LimitBreaker`\n- **List plugins**: `flower list`\n- **Search plugins**: `flower search \u003cpartial-term\u003e`\n\n## Development\n\n### Prerequisites\n\n- [Git](https://git-scm.com/downloads)\n- [Go 1.20+](https://golang.org/doc/install)\n\n### Clone the Repository\n\n```bash\ngit clone https://github.com/flowerLoader/tool flower\ncd flower\n```\n\n### Build the Project\n\n```bash\ngo get ./...\ngo build ./cmd/flower\n```\n\n### Run the Project\n\n```bash\n./flower --help\n```\n\n## Plugin Ecosystem\n\nPlugins are hosted in GitHub repositories with the `#flower-plugin` tag. Developers can learn more about creating plugins by visiting our [plugin API documentation](https://github.com/flowerLoader/api) and [loader code](https://github.com/flowerLoader/core).\n\n## Contributing\n\nWe welcome contributions! More information will be added soon!\n\n## FAQ \u0026 Troubleshooting\n\n- **How do I update all plugins at once?**\n  - Use the command `flower update all`.\n  \n- **How do I report an issue?**\n  - Please visit our [GitHub Issues page](https://github.com/flowerLoader/tool/issues).\n\n- **How do I uninstall the tool?**\n  - Delete the folder where the tool is installed. If you installed via `go install`, use `go clean -i github.com/flowerLoader/tool/cmd/flower`.\n\n- More troubleshooting tips and frequently asked questions will be added soon.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowerloader%2Ftool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflowerloader%2Ftool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflowerloader%2Ftool/lists"}