tutorial

tutorial is a skill for Claude Code from bitwize-music-studio/claude-ai-music-skills. It costs 31 tokens per session (2,339 once invoked), scanned A, original, CC0-1.0.

An interactive guide for creating a new music album, with seven planning stages and options to resume or get help.

In plain words
What is it for?
Starting a new album, continuing unfinished album planning, or learning how the album workflow works.
Why use it?
It gives new users one question at a time and checks configuration before creating album files, so the process is not skipped or started with missing details.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the bitwize-music plugin — 52 skills, 1 hook, 1 MCP server shipped together

Good fit Starting a new album, continuing unfinished album planning, or learning how the album workflow works.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add bitwize-music-studio/claude-ai-music-skills
Claude Code
/plugin install bitwize-music

Made for: Claude Code.

Or install bitwize-music, the plugin that ships this one along with the rest of its 52 skills, 1 hook, 1 MCP server.

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 tutorial

README.md
[![agentmods](https://agentmods.dev/badge/skills/bitwize-music-studio/claude-ai-music-skills/tutorial/github.svg)](https://agentmods.dev/skills/bitwize-music-studio/claude-ai-music-skills/tutorial)
Your own site
<a href="https://agentmods.dev/skills/bitwize-music-studio/claude-ai-music-skills/tutorial"><img src="https://agentmods.dev/badge/skills/bitwize-music-studio/claude-ai-music-skills/tutorial/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 tutorial

Your own site · 80×15
<a href="https://agentmods.dev/skills/bitwize-music-studio/claude-ai-music-skills/tutorial"><img src="https://agentmods.dev/badge/skills/bitwize-music-studio/claude-ai-music-skills/tutorial.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,339 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.
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.00031 $0.02339
Opus 5 $0.00015 $0.01170
Sonnet 5 $0.00006 $0.00468
Haiku 4.5 $0.00003 $0.00234

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

Security

Grade A, and why

tutorial 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 11d 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.

skills/tutorial/SKILL.md · 331 lines

How it starts

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

Your Task

Input: $ARGUMENTS

Route based on argument:

  • new-album or no argument → Start guided album creation
  • resume → Check in-progress work, suggest next steps
  • help → Explain tutorial options

Supporting Files

  • phases.md - The 7 planning phases reference

Interactive Tutorial Agent

You are a friendly guide helping users create albums step-by-step. Your job is to make the workflow approachable - one question at a time, with context and encouragement.


Commands

/tutorial or /tutorial new-album

Walk the user through creating a new album interactively.

Approach:

  1. Check config first - Call get_config() to get content_root
    • If config missing, guide them to set it up before proceeding
  2. Welcome them warmly
  3. Work through the 7 planning phases ONE QUESTION AT A TIME
  4. Confirm understanding before moving to next question
  5. Create album directory structure as answers come in (after Phase 1)
  6. Link to specialized skills at decision points
  7. Track progress conversationally

Do NOT:

  • Dump all questions at once
  • Skip phases
  • Create files before you know artist/genre/album name
  • Create files before config is set up

/tutorial resume

Help returning users pick up where they left off.

Steps:

  1. Check config first - Call get_config() to get content_root
    • If config missing, guide user to set it up
    • If content_root points to a non-existent directory, offer to create it
  2. Call list_albums(status_filter="In Progress") to find in-progress albums
  3. For each album found, call get_album_progress(album_slug) to get:
    • Album status, track count, completion percentage
    • Per-track status breakdown
    • Detected workflow phase
  4. Present findings clearly
  5. Suggest specific next action with skill link

Example output:

Config loaded: content_root = ~/music-projects

Found 2 albums in progress:

1. "Album Name" (~/music-projects/artists/you/albums/hip-hop/album-name/)
   Status: In Progress
   Tracks: 3/8 complete
   → Next: Write lyrics for track 04
   → Run: /lyric-writer ~/music-projects/artists/you/albums/hip-hop/album-name/tracks/04-track.md

2. "Other Album" (~/music-projects/artists/you/albums/folk/other-album/)
   Status: Research Complete
   Tracks: 0/6 started
   Sources: 4/6 verified
   → Next: Verify remaining sources, then start writing

Read the full file on GitHub · 331 lines

Files

What ships with it

1 file 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. 11d ago First seen · 331 lines · 31 tokens per session scan A ac71384255d9

Subscribe to this mod's changes

tutorial is a skill published in the GitHub repository bitwize-music-studio/claude-ai-music-skills (482 stars, last pushed today), licensed CC0-1.0. It adds 31 tokens to every session and 2,339 once invoked, about $0.0002 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

canvas-design

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

composio-community/awesome-claude-plugins · 59 tokens

artifacts-builder

Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.

composio-community/awesome-claude-plugins · 63 tokens

nano-banana-prompting

This skill should be used when crafting prompts for Nano Banana Pro (Gemini image generation). Use when users want help writing image generation prompts, need guidance on prompt structure, or want to optimize their prompts for better results.

NikiforovAll/claude-code-rules · 51 tokens

nano-banana

This skill should be used for Python scripting and Gemini image generation. Use when users ask to generate images, create AI art, edit images with AI, or run Python scripts with uv. Trigger phrases include "generate an image", "create a picture", "draw", "make an image of", "nano banana", or any image generation…

NikiforovAll/claude-code-rules · 73 tokens

snippet-image-rendering

Use when the user explicitly names snipgrapher and wants code rendered to a polished PNG, SVG, or WebP at an explicit local path. Probes the installed CLI for supported flags and writes only the named image file. Not for other renderers, publishing, or remote actions.

OutlineDriven/odin-claude-plugin · 64 tokens

single-file-html-deck

Use when an explicit request asks to create a Sentry presentation, build slides, or make a deck. Scaffolds one self-contained, keyboard-navigable HTML file with real-data charts and Sentry branding. For general HTML artifacts use html; for PowerPoint use pptx.

OutlineDriven/odin-claude-plugin · 63 tokens