{"id":16167363,"url":"https://github.com/windingmotor/vendor-wizard","last_synced_at":"2026-01-19T03:32:42.837Z","repository":{"id":251933444,"uuid":"838888561","full_name":"WindingMotor/Vendor-Wizard","owner":"WindingMotor","description":"🧙 Simplify the management of vendor dependencies in FRC robot projects","archived":false,"fork":false,"pushed_at":"2024-08-06T14:44:11.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T07:37:54.693Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WindingMotor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-08-06T14:37:14.000Z","updated_at":"2024-12-27T14:40:14.000Z","dependencies_parsed_at":"2024-08-06T17:06:37.940Z","dependency_job_id":"7767812f-7a0c-472b-a67b-5998762be7e8","html_url":"https://github.com/WindingMotor/Vendor-Wizard","commit_stats":null,"previous_names":["windingmotor/vendor-wizard"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindingMotor%2FVendor-Wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindingMotor%2FVendor-Wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindingMotor%2FVendor-Wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WindingMotor%2FVendor-Wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WindingMotor","download_url":"https://codeload.github.com/WindingMotor/Vendor-Wizard/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247226196,"owners_count":20904464,"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":[],"created_at":"2024-10-10T03:07:51.775Z","updated_at":"2026-01-19T03:32:42.831Z","avatar_url":"https://github.com/WindingMotor.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🧙 Vendordep Wizard for FRC\n\nVendor Wizard is a tool designed to simplify the management of vendor dependencies (vendordeps) in FRC (FIRST Robotics Competition) projects. It provides both a CLI script and a GUI tool to help teams easily update and maintain their project dependencies.\n\n## Important Note\n\n**The files from this repository MUST be placed in a folder named `tools` at the root of your robot project for the tool to function correctly.**\n\n## Features\n\n- List all vendordeps and their status\n- Update outdated vendordeps\n- CLI script for automation and integration with build processes\n- Gradle integration for automatic updates during builds\n\n## Installation\n\n### Prerequisites\n\n- Python 3.7+\n- Bash (for the CLI script)\n\n### Setup\n\n1. Clone this repository:\n   ```\n   git clone https://github.com/WindingMotor/Vendor-Wizard.git\n   ```\n\n2. Create a new folder named `tools` at the root of your robot project if it doesn't already exist.\n\n3. Move all the cloned files into the `tools` folder in your robot project.\n\n4. Navigate to your the `tools` folder.\n\n5. Create a virtual environment:\n   ```\n   python -m venv venv\n   ```\n\n6. Activate the virtual environment:\n   - On Windows:\n     ```\n     venv\\Scripts\\activate\n     ```\n   - On macOS and Linux:\n     ```\n     source venv/bin/activate\n     ```\n\n7. Install the required Python packages:\n   ```\n   pip install -r tools/requirements.txt\n   ```\n\n## Usage\n\n### CLI Tool\n\nThe CLI tool is located in the `tools` directory and is named `vendor_wizard.sh`. To use it:\n\n1. Make sure you're in your robot project's root directory.\n\n2. Make the script executable:\n   ```\n   chmod +x tools/vendor_wizard.sh\n   ```\n\n3. Run the script with the desired command:\n   ```\n   ./tools/vendor_wizard.sh list\n   ./tools/vendor_wizard.sh update\n   ```\n\n### GUI Tool\n\nTo launch the GUI tool:\n\n1. Ensure you're in the `tools` directory and your virtual environment is activated.\n\n2. Run the Python script:\n   ```\n   python tools/vendor_wizard_gui.py\n   ```\n\n## Gradle Integration\n\nTo integrate Vendor Wizard with your Gradle build process, add the following task to your `build.gradle` file:\n\n```groovy\ntask updateVendordeps(type: Exec) {\n    workingDir \"${rootDir}/tools\"\n    commandLine './vendor_wizard.sh', 'update', '--gradle'\n    standardOutput = new ByteArrayOutputStream()\n    errorOutput = new ByteArrayOutputStream()\n    ignoreExitValue = true\n    doLast {\n        def output = standardOutput.toString()\n        def errorOutput = errorOutput.toString()\n        println output\n        println errorOutput\n    }\n}\ntasks.build.dependsOn updateVendordeps\n```\n\nThis will automatically update your vendordeps when you run the Gradle build.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindingmotor%2Fvendor-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwindingmotor%2Fvendor-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwindingmotor%2Fvendor-wizard/lists"}