bradautomates/claude-video License: MIT License Terms and Usage Rights
The bradautomates/claude-video repository is released under the MIT License, a permissive open-source agreement that grants broad rights to use, modify, and distribute the code with minimal attribution requirements.
The bradautomates/claude-video project provides video processing automation capabilities for Claude AI. Understanding the specific licensing terms is essential before integrating this code into commercial or personal projects, as the MIT License determines your legal rights and obligations when using, modifying, or redistributing the source code.
Where the License is Declared
The bradautomates/claude-video license is explicitly declared across multiple authoritative files within the repository, ensuring consistent identification by both human readers and automated tooling.
Root LICENSE File
The primary declaration resides in the LICENSE file at the repository root. This file contains the complete MIT License text, including the copyright notice and permission statement that governs all source code in the project.
Skill Manifest Configuration
In skills/watch/SKILL.md, the license is declared in the front-matter metadata as license: MIT. This declaration helps the Claude Code marketplace and other skill browsers correctly identify the licensing terms when users discover the video watching capability.
Plugin Descriptor Files
The license appears consistently across plugin ecosystem configurations:
.codex-plugin/plugin.jsonspecifies"license": "MIT".claude-plugin/plugin.jsonspecifies"license": "MIT"
These JSON descriptors ensure that both Codex and Claude Code plugin systems enforce the correct licensing metadata when loading the skill.
Documentation References
The README.md file also mentions the MIT license when describing the project's distribution terms, providing additional clarity for developers browsing the repository.
MIT License Rights and Obligations
The bradautomates/claude-video license grants you the following permissions:
- Commercial use – Deploy the code in proprietary or commercial applications without restriction
- Modification – Alter the source code to suit your specific requirements
- Distribution – Share copies of the original or modified software with others
- Private use – Use the software internally without public disclosure
The sole requirement is that you must retain the original copyright notice and permission text in any substantial portions of the software you distribute. Importantly, the MIT License imposes no copyleft obligations, meaning you are not required to distribute your own source code under the same license or disclose proprietary modifications.
Verifying the License Programmatically
When integrating bradautomates/claude-video into dependent projects, you can verify or reference the license programmatically using several approaches.
Reading the license file at runtime:
import pathlib
def get_license() -> str:
"""Return the MIT license text bundled with the project."""
license_path = pathlib.Path(__file__).parent.parent / "LICENSE"
return license_path.read_text(encoding="utf-8")
print(get_license())
Checking package metadata via pip:
# Verify the license using the package's metadata (if installed via pip)
pip show claude-video | grep License
# Expected output: License: MIT
Including the license identifier in wrapper project metadata:
{
"name": "claude-video",
"version": "1.0.0",
"license": "MIT"
}
Summary
- The bradautomates/claude-video repository is licensed under the MIT License, as declared in the root
LICENSEfile,skills/watch/SKILL.md, and plugin configuration files at.codex-plugin/plugin.jsonand.claude-plugin/plugin.json. - This permissive license allows commercial use, modification, and distribution without imposing copyleft requirements or usage restrictions.
- You must include the original copyright notice and license text when distributing substantial portions of the code, but you are not required to disclose your own source code.
- The license can be verified programmatically by reading the
LICENSEfile or checking thelicensefield in the skill's various JSON descriptors.
Frequently Asked Questions
What license covers bradautomates/claude-video?
The bradautomates/claude-video repository is released under the MIT License. This is confirmed by the full license text in the repository's LICENSE file, the license: MIT declaration in skills/watch/SKILL.md, and the "license": "MIT" entries in both .codex-plugin/plugin.json and .claude-plugin/plugin.json.
Can I use bradautomates/claude-video in commercial projects?
Yes. The MIT License explicitly permits commercial use without restriction. You can integrate the claude-video skill into proprietary applications, modify the code for your business needs, and distribute the resulting software without paying royalties or licensing fees.
Do I need to share my source code if I use this project?
No. Unlike copyleft licenses such as GPL, the MIT License does not require you to disclose your source code or license your own projects under the same terms. You are free to use bradautomates/claude-video in closed-source applications, provided you include the original copyright notice and permission text with any substantial portions of the code you distribute.
Where can I find the full license text?
The complete MIT License text is located in the LICENSE file at the root of the repository (https://github.com/bradautomates/claude-video/blob/main/LICENSE). This file contains the full legal text including copyright notices and permission statements required for compliance.
Have a question about this repo?
These articles cover the highlights, but your codebase questions are specific. Give your agent direct access to the source. Share this with your agent to get started:
curl -s "https://instagit.com/install.md" Maintain an open-source project? Get it listed too →