# License Check

> License compliance checking and conflict detection

- Skill: `manastalukdar/license-check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add manastalukdar/license-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/manastalukdar/license-check/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: manastalukdar (https://skillmd.com/u/manastalukdar)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/manastalukdar/license-check

---


# License Compliance Checker

I'll analyze your project dependencies for license compliance, detect conflicts, and ensure legal compatibility.

Arguments: `$ARGUMENTS` - focus area (commercial, gpl, conflicts) or specific packages

## License Compliance Philosophy

**Core Principles:**
- Identify all dependency licenses
- Detect incompatible license combinations
- Flag copyleft licenses for commercial projects
- Generate compliance documentation
- Track license changes

## Token Optimization

**Expected range**: 300–1,500 tokens (initial), 100 tokens (cache hit)

**Caching**: Caches license results keyed by dependency checksum in `.claude/cache/license-check/` for 7 days. Invalidated when `package.json` changes.

**Early exit**: Returns immediately if all licenses are compatible with the project license.

**Patterns used**: Grep-before-Read, early exit, caching, Bash for system queries

