{"id":19330014,"url":"https://github.com/amethyst/tools","last_synced_at":"2025-04-22T22:32:48.062Z","repository":{"id":57486013,"uuid":"49041911","full_name":"amethyst/tools","owner":"amethyst","description":"Game development tools for the Amethyst engine","archived":false,"fork":false,"pushed_at":"2020-08-20T05:37:43.000Z","size":236,"stargazers_count":79,"open_issues_count":0,"forks_count":22,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-04-01T00:22:39.387Z","etag":null,"topics":["amethyst","cli","rust","toolls"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/amethyst.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-05T04:27:30.000Z","updated_at":"2024-11-04T13:36:11.000Z","dependencies_parsed_at":"2022-09-11T21:43:51.726Z","dependency_job_id":null,"html_url":"https://github.com/amethyst/tools","commit_stats":null,"previous_names":["amethyst/amethyst_tools","ebkalderon/amethyst_cli"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amethyst%2Ftools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amethyst%2Ftools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amethyst%2Ftools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amethyst%2Ftools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amethyst","download_url":"https://codeload.github.com/amethyst/tools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250334155,"owners_count":21413519,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["amethyst","cli","rust","toolls"],"created_at":"2024-11-10T02:33:18.358Z","updated_at":"2025-04-22T22:32:47.803Z","avatar_url":"https://github.com/amethyst.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DEPRECATED\n\nThis project has been deprecated. For more details please see [this forum post].\n\n[this forum post]: https://community.amethyst.rs/t/end-of-life-for-amethyst-tools-the-cli/1656\n\n# Amethyst Tools\n\n[![Build Status][s1]][tc] [![Crates.io][s2]][ci] [![MIT/Apache License][s3]][li]\n[![Join us on Discord][s4]][di] [![Code coverage][s5]][cc]\n\n[s1]: https://travis-ci.org/amethyst/tools.svg?branch=master\n[s2]: https://img.shields.io/crates/v/amethyst_tools.svg\n[s3]: https://img.shields.io/badge/license-MIT%2FApache-blue.svg\n[s4]: https://img.shields.io/discord/425678876929163284.svg?logo=discord\n[s5]: https://img.shields.io/codecov/c/github/amethyst/tools.svg\n\n[tc]: https://travis-ci.org/amethyst/tools/\n[ci]: https://crates.io/crates/amethyst_tools/\n[li]: https://github.com/amethyst/tools/blob/master/COPYING\n[di]: https://discord.gg/GnP5Whs\n[cc]: https://codecov.io/gh/amethyst/tools\n\n\nCommand-line interface for the [Amethyst][am] engine to create and deploy game\nprojects. This project is a *work in progress* and is very incomplete; pardon\nthe dust!\n\n[am]: https://github.com/amethyst/amethyst\n\n## Vision\n\nOne of the goals of [Amethyst][am] is to split up the traditional \"mega-editor\"\nseen in many other game engines into several small but well-integrated tools,\nadhering to the [Unix philosophy][up]. This approach allows for nifty things\nlike:\n\n[up]: https://en.wikipedia.org/wiki/Unix_philosophy\n\n* Piping and streaming data between tools like regular Unix commands.\n* Network transparency (e.g. mirroring gameplay from your development machine\n  onto a testbed computer or smartphone).\n* Customizing your workflow to your liking with plain ol' shell scripts.\n* Stripping out tools you don't want or need, or easily supplanting them with\n  third-party utilities.\n* Serving as backends for various \"mega-editors\" provided by third parties or\n  written in-house.\n\n## Installing\n\nBy executing\n\n```sh\ncargo install amethyst_tools\n```\n\na binary called `amethyst` will be placed in your `~/cargo/bin` folder.\n\n## Usage\n\n### Creating a new project\n\n```sh\namethyst new \u003cproject_name\u003e\n```\n\n## Contributing\n\n**Note:** Any interaction with the Amethyst project is subject to our [Code of Conduct][coc].\n\nAmethyst is a community-based project that welcomes contributions from anyone. If you're interested in helping out, please read the [contribution guidelines][cm] before getting started.\n\nWe have a [good first issue][gfi] category that groups all issues or feature requests that can be made without having an extensive knowledge of Rust or Amethyst. Working on those issues is a good, if not the best, way to learn.\n\nIf you think you are not ready to code yet, you can still contribute by reviewing code written by other members of the community. Code reviews ensure that code merged into Amethyst is of the highest quality as possible. Pull requests that are available for reviews can be found [here][pr].\n\nIf for some reason we don't have any open PRs in need of a review nor any good first issues (that would be a good thing), feel free to consult our [issue tracker][it].\n\n[coc]: https://github.com/amethyst/amethyst/blob/master/CODE_OF_CONDUCT.md\n[cm]: https://github.com/amethyst/amethyst/blob/master/docs/CONTRIBUTING.md\n[gfi]: https://github.com/amethyst/tools/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22\n[pr]: https://github.com/amethyst/tools/pulls\n[it]: https://github.com/amethyst/tools/issues\n\n## License\n\nAmethyst is free and open source software distributed under the terms of both the [MIT License][lm] and the [Apache License 2.0][la].\n\n[lm]: LICENSE-MIT\n[la]: LICENSE-APACHE\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famethyst%2Ftools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famethyst%2Ftools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famethyst%2Ftools/lists"}