Creates detailed audio production specifications including arrangement and mix parameters.
Install
mkdir -p .claude/skills/amcs-producer-notes-generator && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/298" && unzip -o skill.zip -d .claude/skills/amcs-producer-notes-generator && rm skill.zipInstalls to .claude/skills/amcs-producer-notes-generator
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Generate production notes defining song structure, hooks, instrumentation hints, per-section tags, and mix parameters. Aligns with style spec and blueprint production guidelines. Use when creating arrangement, dynamics, and audio engineering guidance for composition and rendering.Key capabilities
- →Maps section arrangement to duration targets
- →Determines hook placement strategy
- →Sets stereo width and LUFS mix parameters
- →Tags musical segments with dynamic markers
- →Aligns instrumentation with production blueprints
How it works
Computes production requirements by aligning structural plans with specific style specs, outputting a deterministic JSON configuration for composition.
Inputs & outputs
When to use amcs-producer-notes-generator
- →Defining song structure for composition
- →Providing instrumentation hints for producers
- →Setting dynamic mix parameters
- →Aligning production with style specs
About this skill
AMCS Producer Notes Generator
Creates comprehensive production notes that define arrangement structure, hook placement, instrumentation details, per-section dynamics, and mix parameters aligned with style specifications.
When to Use
Invoke this skill after PLAN and STYLE generation to create production notes. Runs in parallel with LYRICS node and feeds into COMPOSE.
Input Contract
inputs:
- name: sds_producer
type: amcs://schemas/producer-notes-1.0.json
required: true
description: Producer notes entity from SDS with user preferences
- name: plan
type: amcs://schemas/plan-1.0.json
required: true
description: Section order and duration targets
- name: style
type: amcs://schemas/style-1.0.json
required: true
description: Musical style for alignment
- name: seed
type: integer
required: true
description: Determinism seed (use seed+3 for this node)
Output Contract
outputs:
- name: producer_notes
type: amcs://schemas/producer-notes-1.0.json
description: |
Complete production spec with:
- structure: Section arrangement string
- hooks: Hook count and placement
- instrumentation: Additional instrument notes
- section_meta: Per-section tags and durations
- mix: LUFS, space, stereo width parameters
Determinism Requirements
- Seed:
run_seed + 3for any stochastic section tag selection - Temperature: 0.2 if LLM used for production recommendations
- Top-p: 0.8
- Retrieval: None (blueprint and style are local)
- Hashing: Hash final producer_notes JSON for provenance
Constraints & Policies
- Structure MUST match
plan.section_order - Per-section
target_duration_secMUST sum to within ±30s ofsds.constraints.duration_sec - Section names in
section_metaMUST exist instructure - Hook count (
hooks) MUST be ≥1 for genres requiring memorable elements - Instrumentation MUST NOT conflict with style instrumentation
- Per-section tags MUST NOT conflict with global style tags
- If
hooks = 0, log warning about memorability risk
Implementation Guidance
Step 1: Build Structure String
- Extract
plan.section_order - Format as hyphen-separated string:
"Intro–Verse–PreChorus–Chorus–..." - Store in
producer_notes.structure - Validate all sections from plan are included
Step 2: Determine Hook Count and Placement
- Read
sds_producer.hooksas base count - If
plan.evaluation_targets.hook_densityexists:- Calculate recommended hooks:
num_chorus_sections * 1.5 - Use max(sds_hooks, recommended_hooks)
- Calculate recommended hooks:
- If hooks < 1 and genre requires hooks (Pop, Hip-Hop), log warning
- Store final count in
producer_notes.hooks
Step 3: Expand Instrumentation
- Copy
style.instrumentationas base - Add
sds_producer.instrumentationif provided - Remove duplicates
- For each section in
plan.section_order:- Determine section-specific instruments from blueprint production guidelines
- Example: "Bridge" often features minimal instrumentation
- Add to
section_meta[section].tagsas instrument tags
Step 4: Generate Per-Section Metadata
For each section in structure:
-
Determine Tags:
- Load blueprint production guidelines for section type
- Example guidelines:
- Intro: ["instrumental", "low energy", "atmospheric"]
- Verse: ["storytelling", "moderate energy"]
- PreChorus: ["build-up", "rising energy", "add percussion"]
- Chorus: ["anthemic", "full instrumentation", "hook-forward"]
- Bridge: ["minimal", "dramatic shift", "breakdown"]
- Outro: ["fade-out", "reflective"]
- Merge with
sds_producer.section_meta[section].tagsif provided - Validate no conflicts with global style tags
-
Set Duration:
- Use
sds_producer.section_meta[section].target_duration_secif provided - Otherwise calculate proportionally from
sds.constraints.duration_sec - Store in
section_meta[section].target_duration_sec
- Use
-
Store Section Metadata:
{ "section_meta": { "Intro": { "tags": ["instrumental", "low energy"], "target_duration_sec": 10 }, "Chorus": { "tags": ["anthemic", "hook-forward", "full instrumentation"], "target_duration_sec": 25 } } }
Step 5: Define Mix Parameters
-
LUFS Target:
- Default: -12.0 LUFS (modern streaming standard)
- Adjust for genre:
- Electronic/Hip-Hop: -9.0 to -11.0 (louder)
- Jazz/Classical: -14.0 to -16.0 (more dynamic range)
- Use
sds_producer.mix.lufsif provided
-
Space/Reverb:
- Map from style mood:
- "intimate" → "dry"
- "epic" → "lush"
- "vintage" → "vintage tape"
- Use
sds_producer.mix.spaceif provided
- Map from style mood:
-
Stereo Width:
- Default: "normal"
- "anthemic" energy → "wide"
- "intimate" mood → "narrow"
- Use
sds_producer.mix.stereo_widthif provided
-
Store in
producer_notes.mix
Step 6: Validate and Return
- Validate structure matches plan section order
- Check section duration sum:
abs(sum - duration_sec) ≤ 30 - Ensure all
section_metakeys exist instructure - Validate against
amcs://schemas/producer-notes-1.0.json - Compute SHA-256 hash
- Return producer_notes with hash metadata
Examples
Example 1: Christmas Pop Production
Input:
{
"sds_producer": {
"structure": "",
"hooks": 2,
"instrumentation": ["sleigh bells"],
"section_meta": {
"Chorus": {"tags": ["crowd-chant"]}
},
"mix": {"lufs": -12.0, "space": "lush"}
},
"plan": {
"section_order": ["Intro", "Verse", "PreChorus", "Chorus", "Bridge", "Chorus"]
},
"style": {
"energy": "anthemic",
"instrumentation": ["brass", "upright bass", "handclaps"],
"mood": ["upbeat", "cheeky"]
},
"seed": 45
}
Output:
{
"structure": "Intro–Verse–PreChorus–Chorus–Bridge–Chorus",
"hooks": 2,
"instrumentation": ["brass", "upright bass", "handclaps", "sleigh bells"],
"section_meta": {
"Intro": {
"tags": ["instrumental", "low energy", "sleigh bells"],
"target_duration_sec": 10
},
"Verse": {
"tags": ["storytelling", "moderate energy"],
"target_duration_sec": 30
},
"PreChorus": {
"tags": ["build-up", "handclaps", "rising energy"],
"target_duration_sec": 15
},
"Chorus": {
"tags": ["anthemic", "hook-forward", "full instrumentation", "crowd-chant"],
"target_duration_sec": 25
},
"Bridge": {
"tags": ["minimal", "dramatic shift", "brass feature"],
"target_duration_sec": 20
}
},
"mix": {
"lufs": -12.0,
"space": "lush",
"stereo_width": "wide"
},
"_hash": "jkl012...",
"_total_duration": 175
}
Common Pitfalls
- Structure Mismatch: Not matching plan section order breaks composition
- Duration Overflow: Section durations summing >30s beyond target causes rendering issues
- Missing Sections: Not including section_meta for all sections in structure
- Tag Conflicts: Per-section tags conflicting with global style tags
- Zero Hooks: Setting hooks=0 for hook-dependent genres fails validation
- Invalid LUFS: Using LUFS values outside reasonable range (-20 to -6)
- Instrumentation Duplication: Not deduplicating combined instrument lists
When not to use it
- →Live performance arrangement
- →General audio mastering without an existing style spec
Prerequisites
Limitations
- →Requires strict adherence to input schema types
- →Duration targets have limited tolerance thresholds
- →Deterministic seed must be managed manually
How it compares
It generates a highly specific production schema intended for machine-guided musical composition rather than human-readable creative notes.
Compared to similar skills
amcs-producer-notes-generator side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| amcs-producer-notes-generator (this skill) | 5 | 9mo | No flags | Advanced |
| sales-automator | 5 | 4mo | No flags | Beginner |
| social-media-generator | 6 | 9mo | Review | Beginner |
| xhs-note-creator | 4 | 4mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by miethe
View all by miethe →You might also like
sales-automator
sickn33
Draft cold emails, follow-ups, and proposal templates. Creates pricing pages, case studies, and sales scripts. Use PROACTIVELY for sales outreach or lead nurturing.
social-media-generator
ailabs-393
This skill should be used when the user requests social media content creation for Twitter, Instagram, LinkedIn, or Facebook. It generates platform-optimized posts and saves them in an organized folder structure with meaningful filenames based on event details.
xhs-note-creator
comeonzhj
小红书笔记素材创作技能。当用户需要创建小红书笔记素材时使用这个技能。技能包含:根据用户的需求和提供的资料,撰写小红书笔记内容(标题+正文),生成图片卡片(封面+正文卡片),以及发布小红书笔记。
blogpost-creator
Xe
Create new blogposts from a template or linkposts using the hydrate command.
libreoffice-writer
Anhvu1107
ALWAYS use this when the user or an upstream archive refers to `libreoffice-writer`, the nested skill path form for `writer`, or the equivalent slash path. This is a namespace-preserving alias that routes to `writer` while retaining strict validation, Senior Master execution, and Codex review standa
google-docs-skill
javimosch
Direct access to the Google Docs API using OAuth 2.0. Create documents, insert and format text, and manage document content.