SKILLS/new-album/SKILL.md
Creates a new album with the correct directory structure and templates. Use IMMEDIATELY when the user says 'make a new album' or similar, before any discussion.
npx skillsauth add pinkpixel-dev/skills-collection-2 new-albumInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Input: $ARGUMENTS
Create a new album directory structure with all required files and templates.
You create the complete album directory structure based on config.
Expected formats:
<album-name> <genre> — standard album<album-name> documentary <genre> — true-story/documentary album (creates RESEARCH.md + SOURCES.md)Examples:
sample-album electronicmy-new-album hip-hopprotest-songs folkthe-heist documentary hip-hopValid genres (primary categories):
hip-hopelectronicrockfolkcountrypopmetaljazzrnbclassicalreggaepunkindie-folkbluesgospellatink-popParsing logic:
documentary: album = arg1, genre = arg3, documentary = trueAfter parsing, if documentary flag was not set, ask: "Is this a documentary/true-story album? (This adds research and sources templates.)"
If arguments are missing, ask:
Usage: /new-album <album-name> <genre>
/new-album <album-name> documentary <genre>
Example: /new-album sample-album electronic
/new-album the-heist documentary hip-hop
Valid genres: hip-hop, electronic, rock, folk, country, pop, metal, jazz, rnb, classical, reggae, punk, indie-folk, blues, gospel, latin, k-pop
Call create_album_structure(album_slug, genre, documentary) — creates the complete directory structure with templates in one call.
{content_root}/artists/{artist}/albums/{genre}/{album-name}/tracks/ and promo/ directories with templatesdocumentary: true): also creates RESEARCH.md and SOURCES.md{created: bool, path: str, files: [...]}Note: Audio and documents directories are NOT created (those are created when needed by import-audio/import-art).
Report:
Created album: {album-name}
Location: {album_path}
Files created:
- README.md (album template)
- tracks/ (empty, ready for track files)
- promo/ (social media copy templates)
Next steps:
Option 1 - Interactive (Recommended):
Run /bitwize-music:album-conceptualizer to design your album concept
through the 7 Planning Phases.
Option 2 - Manual:
1. Edit README.md with your album concept
2. Create tracks with /import-track or manually in tracks/
Config file missing:
Error: Config not found at ~/.bitwize-music/config.yaml
Run /configure to set up.
Invalid genre:
Error: Invalid genre "{genre}"
Valid genres: hip-hop, electronic, rock, folk, country, pop, metal, jazz, rnb, classical, reggae, punk, indie-folk, blues, gospel, latin, k-pop
Album already exists:
Error: Album already exists at {album_path}
Templates not found:
Error: Templates not found. Is the plugin installed correctly?
Expected at: ${CLAUDE_PLUGIN_ROOT}/templates/
/new-album sample-album electronic
Config has:
paths:
content_root: ~/bitwize-music
artist:
name: bitwize
Result:
Created album: sample-album
Location: ~/bitwize-music/artists/bitwize/albums/electronic/sample-album/
Files created:
- README.md (album template)
- tracks/ (empty, ready for track files)
Next steps:
Option 1 - Interactive (Recommended):
Run /bitwize-music:album-conceptualizer to design your album concept
through the 7 Planning Phases.
Option 2 - Manual:
1. Edit README.md with your album concept
2. Create tracks with /import-track or manually in tracks/
If user mentions this is a documentary or true-story album:
/new-album the-heist documentary hip-hop
The create_album_structure(album_slug, genre, documentary=true) call automatically creates RESEARCH.md and SOURCES.md from templates.
Report:
Created album: the-heist (documentary)
Location: ~/bitwize-music/artists/bitwize/albums/hip-hop/the-heist/
Files created:
- README.md (album template)
- RESEARCH.md (research template)
- SOURCES.md (sources template)
- tracks/ (empty, ready for track files)
Wrong:
# Manual mkdir, config reading, template copying
cat ~/.bitwize-music/config.yaml
mkdir -p ~/music-projects/artists/bitwize/albums/...
cp templates/album.md ...
Right:
# Single MCP call handles everything
create_album_structure(album_slug, genre, documentary)
The MCP tool reads config, resolves paths, creates directories, and copies templates automatically.
Wrong:
# Using subgenre instead of primary category
/new-album my-album boom-bap # boom-bap is a subgenre
/new-album my-album trap # trap is a subgenre
Right:
# Use primary genre category
/new-album my-album hip-hop # boom-bap and trap go in hip-hop
/new-album my-album electronic # house, techno go in electronic
Valid primary genres: hip-hop, electronic, rock, folk, country, pop, metal, jazz, rnb, classical, reggae, punk, indie-folk, blues, gospel, latin, k-pop
development
A cryptographic audit systematically reviews an application's use of cryptographic primitives, protocols, and key management to identify vulnerabilities such as weak algorithms, insecure modes, hardco
tools
Extract stored credentials from compromised endpoints using the LaZagne post-exploitation tool to recover passwords from browsers, databases, system vaults, and applications during authorized red team operations.
testing
Analyze and bypass Content Security Policy implementations to achieve cross-site scripting by exploiting misconfigurations, JSONP endpoints, unsafe directives, and policy injection techniques.
testing
Scan container images, filesystems, and Kubernetes manifests for vulnerabilities, misconfigurations, exposed secrets, and license compliance issues using Aqua Security Trivy with SBOM generation and CI/CD integration.