tt-studio: Skill for Claude Code

.claude/skills/license-attribution-compliance/SKILL.md

license-attribution-compliance is a skill for Claude Code from tenstorrent/tt-studio. It costs 151 tokens per session (1,802 once invoked), scanned A, original, Apache-2.0.

A license review process for keeping third-party notices correct when a project changes its dependencies or bundled files. Third-party notices explain which outside software or assets are included and under what license.

In plain words
What is it for?
Reviewing dependency and asset changes, running the project's attribution check, classifying licenses, and updating the root license or frontend license files.
Why use it?
It catches missing or outdated attribution and flags license risks such as non-commercial terms, copyleft requirements, or unclear origins.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Claude Code.

This is tenstorrent/tt-studio's own configuration. It tells Claude Code how to work on tt-studio itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything tt-studio configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 dev-tools/check_license_attribution.py # both checks.

Reuse

Borrowing it

Nothing to install: this file belongs to tenstorrent/tt-studio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/tenstorrent/tt-studio/main/.claude/skills/license-attribution-compliance/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/tenstorrent/tt-studio

Made for: Claude Code.

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 license-attribution-compliance

README.md
[![agentmods](https://agentmods.dev/badge/skills/tenstorrent/tt-studio/license-attribution-compliance/github.svg)](https://agentmods.dev/skills/tenstorrent/tt-studio/license-attribution-compliance)
Your own site
<a href="https://agentmods.dev/skills/tenstorrent/tt-studio/license-attribution-compliance"><img src="https://agentmods.dev/badge/skills/tenstorrent/tt-studio/license-attribution-compliance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for license-attribution-compliance

Your own site · 80×15
<a href="https://agentmods.dev/skills/tenstorrent/tt-studio/license-attribution-compliance"><img src="https://agentmods.dev/badge/skills/tenstorrent/tt-studio/license-attribution-compliance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,802 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.00151 $0.01802
Opus 5 $0.00076 $0.00901
Sonnet 5 $0.00030 $0.00360
Haiku 4.5 $0.00015 $0.00180

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

Security

Grade A, and why

license-attribution-compliance 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 12d 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.

.claude/skills/license-attribution-compliance/SKILL.md · 135 lines

How it starts

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

License Attribution Compliance

TT-Studio is Apache-2.0 © Tenstorrent AI ULC and ships under a strict regime. This skill keeps third-party attribution correct when dependencies or bundled assets change. There are two layers:

  • Deterministic gatedev-tools/check_license_attribution.py, meant for CI on every PR. It catches mechanical drift: a stale frontend license file, or a newly added dependency that nobody attributed.
  • Judgment review (this skill) — classify the actual license, flag NonCommercial / copyleft / provenance risks, and write the attribution in the right place using the repo's established patterns.

Run the gate first, then reason about whatever it surfaces.

The repo's attribution surfaces

Surface What it covers How it's maintained
Root LICENSE → "Third-Party Dependencies" list Notable / distributed deps + pointers Hand-edited bullets: - Name (SPDX) [License available here](url)
app/frontend/third-party-licenses.txt Every frontend production npm dep (full license text) cd app/frontend && npm run generate-license
SPDX file headers Every source file (.py, .sh, Dockerfile, .ts/.tsx/.js/.jsx) Enforced by existing CI (check-copyright / ESLint header/header-format); fix with python run.py --add-headers or npm run header:fix:changed
(none yet) backend Python deps "utilized but not distributed" — covered by the blanket clause in LICENSE If a backend dep is ever distributed/bundled, it needs an explicit notice

Step 1 — run the gate

python3 dev-tools/check_license_attribution.py            # both checks
python3 dev-tools/check_license_attribution.py --check-frontend
python3 dev-tools/check_license_attribution.py --check-new-deps --base origin/main
  • Frontend freshness FAILcd app/frontend && npm run generate-license, commit the result. (Needs node; the check SKIPs where node is absent.)
  • New-dep attribution FAIL → continue to Step 2 for each named dep.

Read the full file on GitHub · 135 lines

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. 12d ago First seen · 135 lines · 151 tokens per session scan A fc7ea5b9e56e

Subscribe to this mod's changes

license-attribution-compliance is a skill published in the GitHub repository tenstorrent/tt-studio (50 stars, last pushed today), licensed Apache-2.0. It adds 151 tokens to every session and 1,802 once invoked, about $0.0008 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

compiler-review

Review Rust port code for port fidelity, convention compliance, and error handling. Compares against the original TypeScript source.

react/react · 27 tokens

compiler-commit

Use when you want to verify compiler changes and commit with the correct convention. Runs tests, lint, and format, then commits with the [compiler] or [rust-compiler] prefix.

react/react · 42 tokens

compiler-verify

Use when you need to run all compiler checks (tests, lint, format) before committing. Detects whether TS or Rust code changed and runs the appropriate checks.

react/react · 37 tokens

tamagui

Universal React UI framework for web and native. Use when building cross-platform apps with Tamagui, creating styled components with styled(), configuring design tokens/themes, using Tamagui UI components, or working with animations. Triggers: "tamagui", "styled()", "$token", "XStack/YStack", "useTheme", "@tamagui/"…

tamagui/tamagui · 90 tokens

beui

Pick and install beUI (@beui) animated React components from the shadcn registry. Use when building motion UI, agent/chat interfaces, toasts, docks, bottom sheets, drawers, popovers, sliders, loaders, 404 pages, or any beui.dev component. Maps user intent to exact @beui install slugs instead of inventing custom…

starc007/ui-components · 78 tokens

beui-pro

Choose, inspect, install, and compose licensed beUI Pro premium React blocks from the authenticated shadcn registry. Use when building or improving landing pages with beUI Pro, installing @beui-pro items, selecting premium heroes, features, pricing, social proof, CTAs, navigation, footers, or other page sections, or…

starc007/ui-components · 83 tokens