ring:applying-licenses

ring:applying-licenses is a skill for Claude Code, Codex from LerianStudio/ring. It costs 94 tokens per session (1,373 once invoked), scanned A, original, Apache-2.0.

A license-management guide for applying or changing a repository's legal license, such as Apache 2.0, Elastic License 2.0, or a proprietary license. It also covers SPDX identifiers, which label licenses in a standard machine-readable form.

In plain words
What is it for?
Setting or switching a repository license, adding missing licensing during scaffolding, updating Go or TypeScript headers, and checking license consistency.
Why use it?
It helps keep the license file, source-code headers, and license identifiers consistent, while requiring confirmation before making a legal change.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Setting or switching a repository license, adding missing licensing during scaffolding, updating Go or TypeScript headers, and checking license consistency.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/lerianstudio/ring/applying-licenses
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add LerianStudio/ring --skill applying-licenses
Clone the repo
git clone --depth 1 https://github.com/LerianStudio/ring

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for ring:applying-licenses

README.md
[![agentmods](https://agentmods.dev/badge/skills/lerianstudio/ring/applying-licenses.svg)](https://agentmods.dev/skills/lerianstudio/ring/applying-licenses)
Your own site
<a href="https://agentmods.dev/skills/lerianstudio/ring/applying-licenses"><img src="https://agentmods.dev/badge/skills/lerianstudio/ring/applying-licenses.svg" alt="Measured on agentmods" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,373 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00094 $0.01373
Opus 5 $0.00047 $0.00687
Sonnet 5 $0.00019 $0.00275
Haiku 4.5 $0.00009 $0.00137

Measured 8d ago against content hash 30ef905b180b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

ring:applying-licenses scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

dev-team/skills/applying-licenses/SKILL.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

License Management

When to use

  • User requests to set, apply, or switch a license on a repository
  • Scaffolding a new service from the boilerplate
  • Task mentions "license", "licensing", "license header", "Apache 2.0", "ELv2", "proprietary"
  • Gate 0 of dev-cycle when no LICENSE file exists

Skip when

  • Repository already has requested license AND all headers match AND SPDX is correct (verified)
  • Non-code repositories (documentation-only, design assets)

Complementary: ring:running-dev-cycle, ring:implementing-tasks

You orchestrate. Agents update source headers. NEVER apply a license without user confirmation.

License Types

License SPDX Use Case
Apache 2.0 Apache-2.0 Open source (e.g., Midaz core)
Elastic License v2 Elastic-2.0 Source-available products
Proprietary LicenseRef-Proprietary Internal/closed repositories

Header Templates

Apache 2.0 — Go

// Copyright (c) {YEAR} {COPYRIGHT_HOLDER}
//
// 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
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

Elastic License v2 — Go

// Copyright (c) {YEAR} {COPYRIGHT_HOLDER}
// Use of this source code is governed by the Elastic License 2.0
// that can be found in the LICENSE file.

Proprietary — Go

// Copyright (c) {YEAR} {COPYRIGHT_HOLDER}. All rights reserved.
// This source code is proprietary and confidential.
// Unauthorized copying of this file is strictly prohibited.

TypeScript: wrap the same text in /** ... */.

Read the full file on GitHub · 166 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 166 lines · 94 tokens per session scan A 30ef905b180b

Subscribe to this mod's changes

ring:applying-licenses is a skill published in the GitHub repository LerianStudio/ring (211 stars, last pushed 19d ago), licensed Apache-2.0. It adds 94 tokens to every session and 1,373 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

rust-skills

Comprehensive Rust coding guidelines with 265 rules across 26 categories. Use when writing, reviewing, or refactoring Rust code. Covers ownership, error handling, async patterns, concurrency, unsafe code, API design, memory optimization, performance, numeric safety, conversions, serde, pattern matching, macros…

leonardomso/rust-skills · 84 tokens

cook

Implement an approved spec or focused task through stale-safe source edits. Use this skill when the user says "implement this", "cook this spec", or "fix this bug". Use it for /cook .cheese/specs/ .md. Also use it when the user says "go" or "ship it" with clear acceptance criteria. Run it alone for an unambiguous…

paulnsorensen/easy-cheese · 122 tokens

standards

Use this agent when you need to evaluate code, architecture, or development practices against the NASAB framework principles and Rust best practices.

samibs/skillfoundry · 29 tokens

content-audit

Content file quality audit across 8 dimensions (CC1-CC8): encoding artifacts (NBSP, mojibake, zero-width), markdown syntax (broken italic, orphan backslash), CMS migration artifacts (Joomla/WordPress/PHP), frontmatter quality, image integrity, link integrity with anchor validation, content completeness, and…

greglas75/zuvo · 137 tokens

python-authoring

Write, edit, refactor, or review Python in easy-cheese with concise stdlib-first code, Python 3.12, Shiv .pyz packaging, and repository test and validation conventions. Use for Python changes under src/, scripts/, .github/scripts/, or tests/, especially when the user asks for Pythonic, succinct, de-slopped…

paulnsorensen/easy-cheese · 88 tokens

ds-simplify

Approved simplification — overengineering hygiene with one approval batch and zero silent deletion. Use when removing complexity, dead code, or overengineering safely.

sungurerdim/dev-skills · 34 tokens