Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计通过

license-compliance许可证合规性

Agent Skill

license-compliance 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

635

周安装

27

GitHub Stars

12

下载量

222
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:license-compliance(许可证合规性)
来源仓库:https://github.com/claude-dev-suite/claude-dev-suite
仓库路径:skills/license-compliance
安装命令:
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill license-compliance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill license-compliance

简介

license-compliance 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态进行整理。

  • 它提供 SPDX 许可证列表和合规性检查指南,支持开源许可证识别和管理。
  • 使用时需结合具体项目依赖和部署环境,避免仅依赖工具输出做决策;涉及商业用途时应核对授权条款。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

License Compliance

When NOT to Use This Skill

  • Security vulnerabilities - Use supply-chain skill for dependency security
  • Code quality issues - Use quality skills for linting/complexity
  • Secrets in dependencies - Use secrets-management skill
  • Package integrity - Use supply-chain for SBOM and verification
Deep Knowledge: Use mcp__documentation__fetch_docs with technology: spdx for comprehensive documentation.

Official References


License Categories

By Permissiveness

CategoryLicensesCommercial Use
Public DomainUnlicense, CC0-1.0Unrestricted
PermissiveMIT, Apache-2.0, BSD-3-Clause, ISCAllowed
Weak CopyleftLGPL-3.0, MPL-2.0, EPL-2.0Allowed (with conditions)
Strong CopyleftGPL-3.0, AGPL-3.0Must open source
Network CopyleftAGPL-3.0, SSPL-1.0Network use triggers

Common SPDX Identifiers

LicenseSPDX IDOSIFSF
MIT LicenseMIT
Apache 2.0Apache-2.0
BSD 3-ClauseBSD-3-Clause
ISC LicenseISC
GPL 3.0GPL-3.0-only
GPL 3.0+GPL-3.0-or-later
LGPL 3.0LGPL-3.0-only
MPL 2.0MPL-2.0
AGPL 3.0AGPL-3.0-only
UnlicenseUnlicense

Compatibility Matrix

Inbound → Outbound

Your ProjectCan Include
MITMIT, BSD, ISC, Unlicense, CC0
Apache-2.0MIT, BSD, ISC, Apache-2.0, Unlicense
LGPL-3.0MIT, BSD, ISC, Apache-2.0, LGPL, GPL (as library)
GPL-3.0Most licenses (output must be GPL)
ProprietaryMIT, BSD, ISC, Apache-2.0 (check attribution)

Incompatibilities

License AIncompatible With
GPL-2.0-onlyApache-2.0 (patent clause conflict)
GPL-3.0GPL-2.0-only
AGPL-3.0Proprietary SaaS (network clause)
SSPL-1.0Not OSI approved, restricted use

NPM License Auditing

license-checker

# Install
npm install -g license-checker-rseidelsohn

# Basic scan
license-checker

# JSON output
license-checker --json > licenses.json

# Summary only
license-checker --summary

# Production only
license-checker --production

# Exclude dev dependencies
license-checker --production --json

Allowlist Configuration

# Only allow specific licenses
license-checker --onlyAllow "MIT;Apache-2.0;BSD-3-Clause;ISC;0BSD"

# Fail on copyleft licenses
license-checker --failOn "GPL-3.0;AGPL-3.0;GPL-2.0"

# Exclude packages
license-checker --excludePackages "internal-pkg@1.0.0"

@onebeyond/license-checker

npm install -g @onebeyond/license-checker

# Scan with allowlist
npx @onebeyond/license-checker scan --allowOnly MIT Apache-2.0 BSD-3-Clause

# Check SPDX compliance
npx @onebeyond/license-checker check "MIT OR Apache-2.0"

license-compliance

npm install -g license-compliance

# Check compliance
license-compliance --production --allow "MIT;ISC;Apache-2.0"

# Generate report
license-compliance --report licenses.csv

SBOM Generation

CycloneDX

# Install
npm install -g @cyclonedx/cyclonedx-npm

# Generate SBOM
cyclonedx-npm --output-file sbom.json

# Specific format
cyclonedx-npm --output-format XML --output-file sbom.xml

# Include dev dependencies
cyclonedx-npm --include-dev --output-file sbom.json

SPDX

# Using Syft
syft . -o spdx-json > sbom-spdx.json

# Verify SBOM
syft validate sbom-spdx.json

SBOM in package.json

{
  "name": "my-package",
  "version": "1.0.0",
  "license": "MIT",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://opensource.org/licenses/MIT"
    }
  ]
}

CI Integration

GitHub Actions

name: License Compliance

on: [push, pull_request]

jobs:
  license-check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Setup Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '20'

      - name: Install dependencies
        run: npm ci

      - name: Check licenses
        run: |
          npx license-checker-rseidelsohn \
            --production \
            --onlyAllow "MIT;Apache-2.0;BSD-3-Clause;BSD-2-Clause;ISC;0BSD;Unlicense;CC0-1.0" \
            --excludePrivatePackages

      - name: Generate SBOM
        run: |
          npx @cyclonedx/cyclonedx-npm --output-file sbom.json

      - name: Upload SBOM
        uses: actions/upload-artifact@v4
        with:
          name: sbom
          path: sbom.json

Pre-commit Hook

// package.json
{
  "scripts": {
    "license:check": "license-checker --production --onlyAllow 'MIT;Apache-2.0;BSD-3-Clause;ISC'",
    "preinstall": "npm run license:check || true"
  }
}

License File Templates

MIT License

MIT License

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Apache 2.0 NOTICE

MyProject
Copyright [year] [owner]

This product includes software developed at
[Company Name] (https://www.example.com/).

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Attribution Requirements

By License Type

LicenseRequirements
MITInclude copyright + license
Apache-2.0Include copyright + license + NOTICE if present
BSD-3-ClauseInclude copyright + license
LGPL-3.0Provide source for modifications
GPL-3.0Provide complete source

Generating Attribution

# Generate NOTICES file
license-checker --production --customFormat '{"name": "", "version": "", "license": "", "repository": ""}' \
  | jq -r '.[] | "- \(.name)@\(.version) - \(.license)\n  \(.repository)\n"' \
  > NOTICES.md

NOTICES.md Template

# Third-Party Notices

This project includes the following third-party software:

## MIT License

### lodash (4.17.21)
- Repository: https://github.com/lodash/lodash
- Copyright (c) JS Foundation and other contributors

### axios (1.6.0)
- Repository: https://github.com/axios/axios
- Copyright (c) 2014-present Matt Zabriskie

## Apache-2.0 License

### typescript (5.3.0)
- Repository: https://github.com/microsoft/TypeScript
- Copyright (c) Microsoft Corporation

Risk Assessment

High Risk (Avoid in Proprietary)

LicenseRiskMitigation
GPL-3.0CopyleftUse LGPL version or alternatives
AGPL-3.0Network copyleftAvoid in SaaS products
SSPL-1.0Service restrictionUse alternatives (MongoDB)
CPAL-1.0Attribution in UICheck UI requirements

Medium Risk (Review Carefully)

LicenseRiskMitigation
LGPL-3.0Dynamic linkingEnsure dynamic linking
MPL-2.0File-level copyleftKeep modifications separate
EPL-2.0Patent grantsReview patent clauses

Low Risk (Generally Safe)

LicenseNotes
MITInclude license/copyright
Apache-2.0Include license + NOTICE
BSD-3-ClauseInclude license/copyright
ISCInclude license/copyright

Checklist

Initial Setup

  • Choose appropriate license for project
  • Add LICENSE file to repository
  • Add license field to package.json
  • Configure license-checker in CI

Ongoing Compliance

  • Audit new dependencies before adding
  • Reject incompatible licenses in PR review
  • Generate SBOM for releases
  • Maintain NOTICES file
  • Review license changes in updates

Release

  • License file included in distribution
  • Third-party notices generated
  • SBOM attached to release
  • No copyleft violations

Anti-Patterns

Anti-PatternWhy It's BadCorrect Approach
Not checking licenses before adding depsLegal risk, copyleft violationsUse license-checker in CI
Using GPL in proprietary softwareMust open source entire appUse MIT/Apache or LGPL as library
No NOTICES file for attributionViolates license termsGenerate NOTICES from dependencies
Ignoring license changes in updatesNew version may have different licenseReview license in Dependabot PRs
Using unlicensed packagesUnclear legal statusOnly use packages with explicit licenses
Mixing GPL-2.0 and Apache-2.0Incompatible licensesChoose compatible stack

Quick Troubleshooting

IssueLikely CauseSolution
license-checker fails on installMissing package.json license fieldAdd "license": "MIT" to package.json
GPL dependency found in proprietaryTransitive dependencyFind alternative or use as separate service
Multiple licenses for same packageDual-licensedChoose compatible license (usually MIT/Apache)
SPDX validation failsInvalid SPDX identifierUse exact ID from spdx.org/licenses
License allowlist too strictBlocks common licensesAdd ISC, 0BSD to allowlist
No license file in distributionMissing LICENSE fileCopy LICENSE to dist/ in build

Related Skills

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.17%
按下载量换算80

Claude

28.46%
按下载量换算63

Cursor

18.15%
按下载量换算40

Gemini CLI

9.07%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills