Master Index · B.Chavez

Everything in one place.

Every dashboard, every skill, every command, and the ten questions worth asking before any session. The cockpit index.

Dashboards
18 total
Core Production
Home Base
Project Audit Dashboard
Main hub. 11 tabs: Folder Inventory, WAV Analyze, Projects, Cowork Sessions, Offload, Studio, Etsy, Tarot, TV, Ads, Books.
Master Index
Master Dashboard
This page. Index of all dashboards, skills, commands, and top queries.
Studio
Studio Dashboard
4 tabs: Offload Plan, Max for Live (619 unique devices), Waves/UAD (195 bundles), Loops Evaluation (43 scored files).
ChatGPT Archive
ChatGPT Conversation Archive
46 ChatGPT conversations categorized: Music & MIDI, Tarot, TV Analysis, Dev & Tools, Personal. Filterable grid.
Tarot
Tarot Dashboard
Tarot guide pipeline: reader profiles (Meg, Kate, Eyephim), card inventory, post generator status.
Etsy
Etsy Dashboard
Etsy launch packs, OAuth status, listing inventory, revenue tracking.
MIDI
MIDI Dashboard
MIDI run series tracker: Shiner (16 runs), Failure (16 runs), Hooray (ongoing), Beach House (ongoing). Scores + listener feedback.
TV Analysis
TV Show Dashboard
TV show tracker + tarot sidebar. Episodes and show notes.
Ads
Ads Dashboard
Advertising campaign tracking and performance.
Books
Books Dashboard
Book pipeline: bestseller rewrites, tarot guides, MIDI archetype books.
TV Craft Analysis
Buffy · S01E01
Welcome to the Hellmouth · Craft Atlas
9 scenes · 13 craft categories · 28 essays. Filterable scene-by-scene analysis. Buffy-crimson format.
Community · Season 3
Community S3 Multi-Episode Craft Atlas
6 episodes · 14 craft categories · 52 essays. The template format for all TV craft dashboards.
Tools & Widgets
Daily Focus
Throughline Widget
One-sentence daily intention. Anchor task. 3 tasks. 7-day streak. Pitch page for the widget concept.
Sessions
Sessions Dashboard
Claude Code session log viewer. AI-titled sessions, timestamps, project groupings.
Recents
Recents Dashboard
Most recent files and activity across the project ecosystem.
Usage
Usage Dashboard
Full feature map: classifyDrainType, wasteScore, Do This Now, expandable drains, session cache, sync debounce.
Skills & Commands
25 skills · type /name to invoke
MIDI Generation
/midi-16-runs-copy
Failure / Dark Rock Series
16-song MIDI series, dark hard-rock lane. V1 → self-critique → FINAL loop. Lives in ~/Desktop/MIDI-Sessions Failure/
/midi-16-runs-copy-shiner
Shiner Series
Shiner-lane MIDI generation. Reference pool: r1–r9 from ~/Desktop/MIDI-Sessions copy/
/midi-16-runs-copy-beachhouse
Beach House / Dream Pop Series
Dream pop MIDI generation. bVII dominant, pedal drones, pad-like sustained guitar. Lives in /Users/Shared/Beach House/
/midi16runscopyhooray
Hooray Series
Hooray-lane MIDI with stricter gates on drum humanization, vocal peak placement, bridge differentiation.
/midi-fresh-ear
Fresh Ear Critique
Python/mido extractor → Haiku critique. Calibrated against Shiner/Hooray listener scores. Extractor at /tmp/midi_fresh_ear_extractor.py
/midi-to-tab
MIDI → Guitar Tab
Converts .mid to ASCII tab (.txt) + .docx. tuttut engine. Auto-picks best guitar track.
/midi-archetype-book-tuned
MIDI Archetype Book
Generates archetype-style song analysis books. Split melody/bass/drums fields, harmonic surprise, development arc.
/band-cycle
Band Cycle
Full band arrangement cycle tool for MIDI production.
/mashup-maker
Mashup Maker
Creates mashup arrangements from MIDI source files.
Audio / Loops
/bass-loop-grader
Bass Loop Grader
Evaluates bass loops in ~/Desktop/bass/. Scores groove, pocket, tone, mix-readiness.
/drum-loop-grader
Drum Loop Grader
Evaluates drum loops in ~/Desktop/drum/. Scores feel, humanization, pattern complexity.
/drum-bass-matcher
Drum-Bass Matcher
Finds the best drum/bass loop pairings from scored libraries.
/loop-merger
Loop Merger
Merges loop pairs into a single composite file.
/loop-placer
Loop Placer
Places loops into Ableton arrangement slots based on groove/complexity matching.
/stem-analyzer
Stem Analyzer
Analyzes multi-stem files in /Users/Shared/Music Stems/. Reports BPM, key, style.
/music-library-pipeline
Music Library Pipeline
End-to-end pipeline: ingest stems → grade → match → place → report.
Creative / Content
/etsy-launch-builder
Etsy Launch Builder
End-to-end Etsy launch operator. Audits inventory, scores for profitability, generates title/tags/description/image prompts. Tracks in LAUNCH_STATUS.md.
/etsy-cover-image-generator
Etsy Cover Image Generator
ChatGPT critique→revise loop for cover images. Downloads results, uploads via Etsy Open API v3.
/substack-transfer-operator
Substack Transfer Operator
Moves 30 Ghost-prepared posts into Substack. Source: ~/Desktop/substack-transfer-30-posts.md. One packet per post.
/tarot-guide-builder
Tarot Guide Builder
Generates analytical Teaching blocks for structured Chiron tarot transcript files.
/chiron-teaching-gen
Chiron Teaching Generator
Uses Haiku for lightweight section classification + Sonnet for Teaching block generation. Chiron Intuition (Kate) transcript files.
/bestseller-book-rewrite
Bestseller Book Rewrite
Rewrites books in Brandon house style. DeepSeek bulk drafts → Claude Code orchestrates → Opus refines.
Index & Utilities
/skills-master-index
Skills Master Index
Quick launcher and index for all skills. One command shows them all with invocation syntax.
Top 10 Clarifying Questions
The questions worth asking before every session
01
Does a robot make this file, or do you touch it by hand?
"Is this hand-edited or generated by a build script?" — determines whether edits go in the HTML or in the Python source
Saved entire sessions by not editing the wrong file. The real answer is always: build script.
02
Will you need this next week, or just today?
"Is this a one-shot task or a repeatable workflow?" — determines whether to build a skill or just run a script
If repeatable → build a /skill. If one-shot → inline script is fine. Prevents over-engineering.
03
How expensive is this and can we do the cheap part first?
"What's the token cost and can Haiku handle the first pass?" — routes heavy tasks to cheaper models when possible
Default: Haiku for classification/extraction, Sonnet for refinement, Opus only for synthesis. Saves 80% on bulk jobs.
04
Is this file used by anything we can't break?
"Is this path in the Protected Paths register?" — prevents moving active code dependencies
Check FILE_TRACKING.md PROTECTED PATHS section before any move or delete. The list that keeps builds from breaking.
05
Should it look like your main dashboard?
"Should this match the cream/warm aesthetic (#F7F2EA bg, white cards, terra accents)?" — keeps visual system consistent
Answer is almost always yes. Prevents dark-mode drift and one-off designs that don't fit the ecosystem.
06
If this breaks, what else breaks with it?
"What's the blast radius?" — scopes the risk of any move, edit, or delete before taking action
Prevents silent cascades. Always know the answer before touching anything in a running system.
07
Can a computer handle this so you don't have to?
"Is there an API for this?" — checks Etsy API, Ghost API, Spotify MCP, etc. before proposing a manual workflow
You have Ghost, Etsy OAuth, and Spotify connected. Manual workflows are almost always avoidable.
08
What needs to work first?
"What's the priority order?" — sequences a multi-part task so the most blocking piece ships first
Prevents spending 3 hours on a beautiful UI for a backend that doesn't work yet.
09
Can two helpers do this at the same time?
"Are these tasks independent?" — determines whether to run parallel agents or sequential steps
Parallel agents cut session time in half on independent research tasks. Always check before going sequential.
10
Where did you save it? (Say it out loud.)
"State the full path where this was written." — prevents files from getting lost between sessions
Every output file gets a file:// link at the end of the session. No exceptions.
Concepts Worth Keeping
Ideas from your sessions that saved tokens, made things innovative, or could be sold
Write it, hate it, fix it — automatically
Self-Critique Loop (V1 → Critique → FINAL)
Generate a V1, have the AI immediately critique it against quality gates, then auto-revise to FINAL. No human in the loop between draft and final. Applied to MIDI, tarot guides, and book rewrites.
Marketable Innovative
Never draw the picture — always save the recipe
Build-Script-First Dashboard Pattern
Every dashboard is generated by a Python script. Hand-editing HTML is banned. Change the source, re-run the script, get the page. Scales to 20+ dashboards without drift.
Saves tokens Marketable
Leave a note before you move anything
File Tracking Ledger (FILE_TRACKING.md)
Every file move has a BEFORE path, AFTER path, size, reason, date, and verification command. Protected Paths register prevents breaking active code. Referenced across every session.
Innovative
Use the cheap brain first, expensive only when stuck
Multi-Model Token Router (Haiku → Sonnet → Opus)
Haiku handles classification and extraction. Sonnet handles generation. Opus handles synthesis and editing. Routing by task type — not by default — cuts bulk-job costs by 80%.
Saves tokens Marketable
Give every hard job a secret code name
Operator Skill System (/skill-name)
25 skills with SKILL.md + Python implementation. Invoke with a slash command. Skills carry context, constraints, protected paths, and quality gates that don't need re-explaining every session.
Marketable Saves tokens
Send two helpers at the same time
Parallel Agent Spawning
When two research tasks don't depend on each other, spawn both agents simultaneously in a single message. Cut session time for dual-research tasks from serial to parallel. Halves elapsed time.
Saves tokens Innovative
Rules that make AI sound like a human
Anti-AI Voice Ruleset
No em-dashes. No "not"/"doesn't"/"didn't". No antithesis. Bold heading per paragraph. Bullet per sentence. 7-word minimum. 1 bold phrase per sentence. Sourced from ~/Desktop/project-audit-dashboard/voice-models/music_writer_voice_prompt.md.
Marketable
Leave notes for your future self — every session
Cross-Session Auto-Memory System
Memory files at ~/.claude/projects/…/memory/ persist across conversations. MEMORY.md index loaded every session. User, feedback, project, and reference memory types. Prevents re-explaining the same context.
Saves tokens Innovative
Turn every project into a cockpit
Dashboard-for-Everything Pattern
Any project with multiple files, states, or decisions gets a dashboard. MIDI runs, Etsy launches, tarot pipeline, studio plugins, ChatGPT archive — all have dedicated HTML dashboards built from Python scripts.
Marketable
Make a "Do Not Touch" list before organizing
Protected Paths Register
Before any file organization session, grep all .py and SKILL.md files to find active path references. Register those paths as protected. Never move or delete without checking the list first.
Innovative
refresh