# bradautomates/claude-video License: MIT License Terms and Usage Rights

> Discover the MIT License for bradautomates/claude-video. Understand easy terms for using, modifying, and distributing this open-source code with minimal attribution.

- Repository: [bradautomates/claude-video](https://github.com/bradautomates/claude-video)
- Tags: license-information
- Published: 2026-07-15

---

**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`](https://github.com/bradautomates/claude-video/blob/main/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.json`](https://github.com/bradautomates/claude-video/blob/main/.codex-plugin/plugin.json) specifies `"license": "MIT"`
- [`.claude-plugin/plugin.json`](https://github.com/bradautomates/claude-video/blob/main/.claude-plugin/plugin.json) specifies `"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`](https://github.com/bradautomates/claude-video/blob/main/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:

```python
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:

```bash

# 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:

```json
{
  "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 `LICENSE` file, [`skills/watch/SKILL.md`](https://github.com/bradautomates/claude-video/blob/main/skills/watch/SKILL.md), and plugin configuration files at [`.codex-plugin/plugin.json`](https://github.com/bradautomates/claude-video/blob/main/.codex-plugin/plugin.json) and [`.claude-plugin/plugin.json`](https://github.com/bradautomates/claude-video/blob/main/.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 `LICENSE` file or checking the `license` field 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`](https://github.com/bradautomates/claude-video/blob/main/skills/watch/SKILL.md), and the `"license": "MIT"` entries in both [`.codex-plugin/plugin.json`](https://github.com/bradautomates/claude-video/blob/main/.codex-plugin/plugin.json) and [`.claude-plugin/plugin.json`](https://github.com/bradautomates/claude-video/blob/main/.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.