{"id":16222743,"url":"https://github.com/segararai/uabxautomate","last_synced_at":"2026-05-17T17:07:57.348Z","repository":{"id":216164628,"uuid":"739433076","full_name":"SegaraRai/uabxautomate","owner":"SegaraRai","description":"Automate tool to extract Sprite/Texture2D/TextAsset from asset bundles.","archived":false,"fork":false,"pushed_at":"2024-07-24T17:41:44.000Z","size":37,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T01:41:18.189Z","etag":null,"topics":["assetbundle","unity"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/SegaraRai.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-01-05T14:56:38.000Z","updated_at":"2025-01-08T08:47:16.000Z","dependencies_parsed_at":"2024-01-08T19:44:48.731Z","dependency_job_id":"73d42654-c064-4ea0-9c39-bd5c5adc317f","html_url":"https://github.com/SegaraRai/uabxautomate","commit_stats":null,"previous_names":["segararai/uabxautomate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SegaraRai/uabxautomate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SegaraRai%2Fuabxautomate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SegaraRai%2Fuabxautomate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SegaraRai%2Fuabxautomate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SegaraRai%2Fuabxautomate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SegaraRai","download_url":"https://codeload.github.com/SegaraRai/uabxautomate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SegaraRai%2Fuabxautomate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273849578,"owners_count":25179182,"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","status":"online","status_checked_at":"2025-09-06T02:00:13.247Z","response_time":2576,"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":["assetbundle","unity"],"created_at":"2024-10-10T12:15:05.140Z","updated_at":"2026-05-17T17:07:52.326Z","avatar_url":"https://github.com/SegaraRai.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# uabxautomate\n\n![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)\n\n## Overview\n\nuabxautomate is a robust automation tool designed to streamline and optimize tasks with minimal configuration. With a focus on simplicity and efficiency, this tool empowers users to automate repetitive processes, enhancing productivity and reducing manual workload.\n\n## Key Features\n\n- **Ease of Use**: Simple configuration using TOML files.\n- **Flexibility**: Supports a wide range of automation scenarios.\n- **Performance**: Built with Rust for high performance and reliability.\n\n## Getting Started\n\n### Prerequisites\n\n- [Rust](https://www.rust-lang.org/tools/install)\n\n### Building\n\nClone the repository:\n\n```sh\ngit clone https://github.com/SegaraRai/uabxautomate.git\ncd uabxautomate\n```\n\nBuild the project:\n\n```sh\ncargo build --release\n```\n\nIf you are fortunate, you might be able to obtain pre-built binaries for Windows from [Actions](https://github.com/SegaraRai/uabxautomate/actions).\n\n## Usage\n\nuabxautomate supports two modes of execution: `extract` and `inspect`.\n\n### Extract Mode\n\nThe `extract` command is used for extracting data based on the provided configuration file.\n\nUsage:\n\n```sh\n./target/release/uabxautomate extract -c \u003cCONFIG_FILE\u003e [OPTIONS]\n```\n\nOptions:\n\n- `-c, --config \u003cCONFIG_FILE\u003e`: Specify the path to the configuration file.\n- `-i, --incremental`: Perform incremental extraction.\n- `-d, --dry`: Dry run without making any changes.\n- `-r, --chdir`: Change the working directory.\n\nExample:\n\n```sh\n./target/release/uabxautomate extract -i -c example.toml\n```\n\n#### Configuration File\n\nThe configuration file is written in TOML format and specifies the parameters for the extraction process. Below is an example configuration file:\n\n```toml\n# example.toml\nsrc = \"../assetbundles/**/*.bytes\"\ndest = \"../extracted\"\n\n[[targets]]\n\ntype = \"texture2d\"\ntemplate = \"{container}#{name}\"\nmatch = \"^.+/spines/([^/]+)/[^#]+#(.+)$\"\ndest = \"$1/$2.png\"\n\n[[targets]]\n\ntype = \"text\"\ntemplate = \"{container}#{name}\"\nmatch = \"^.+/spines/([^/]+)/[^#]+#(.+)$\"\ndest = \"$1/$2\"\n```\n\n### Inspect Mode\n\nThe `inspect` command is used for inspecting files.\n\nUsage:\n\n```sh\n./target/release/uabxautomate inspect [OPTIONS] \u003cFILES\u003e...\n```\n\nOptions:\n\n- `-s, --only-supported`: Inspect only supported file types.\n- `-h, --help`: Print help information.\n\nExample:\n\n```sh\n./target/release/uabxautomate inspect -s path/to/file1.bytes path/to/file2.bytes\n```\n\n## Contributing\n\nWe welcome contributions! Please fork the repository and submit pull requests.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegararai%2Fuabxautomate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsegararai%2Fuabxautomate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegararai%2Fuabxautomate/lists"}