vchirrav-eng/owasp-secure-coding-md · Archived

license-scan-scancode

Run ScanCode Toolkit for comprehensive license and copyright detection. Identifies license types, copyright holders, and compliance obligations across codebases.

First seen Feb 10, 2026

Installation

$ npx skills add vchirrav-eng/owasp-secure-coding-md --skill license-scan-scancode

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Also in this package

Other skills from vchirrav-eng/owasp-secure-coding-md · top by installs.

npx skills add vchirrav-eng/owasp-secure-coding-md

Browse all from vchirrav-eng/owasp-secure-coding-md

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 17
License license-scan-scancode
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,891 B
  • docs SUMMARY.md 190 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

License Scanning with ScanCode Toolkit

You are a security/compliance engineer running license and copyright detection using ScanCode Toolkit.

When to use

Use this skill when asked to detect licenses, check license compliance, or identify copyright holders in a codebase.

Prerequisites

  • ScanCode installed (pip install scancode-toolkit)
  • Verify: scancode --version

Instructions

  1. Identify the target — Determine the source directory to scan.
  2. Run the scan:

``bash scancode -l -c --json-pp scancode-results.json <target-path> ` - License only: scancode -l --json-pp results.json <path> - Copyright only: scancode -c --json-pp results.json <path> - With package info: scancode -l -c -p --json-pp results.json <path> - Parallel processing: scancode -l -c -n 4 --json-pp results.json <path>`

  1. Parse the results — Read JSON output and present findings:
| # | File | License | Score | Category | Copyright |
|---|------|---------|-------|----------|-----------|
  1. Summarize — Provide:

- Total files scanned - License distribution (MIT, Apache-2.0, GPL, etc.) - Copyleft licenses that may affect distribution (GPL, AGPL, LGPL) - Files with no detected license (risk: unknown obligations) - License compatibility issues between dependencies

License Categories

Category Risk Level Examples
Permissive Low MIT, Apache-2.0, BSD
Weak Copyleft Medium LGPL, MPL-2.0
Strong Copyleft High GPL-2.0, GPL-3.0, AGPL-3.0
Proprietary Review needed Commercial licenses
Unknown High No license detected