Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2.6 KiB
2.6 KiB
Project Conventions
Analysis pipeline
- LLM analysis runs via Python scripts calling the Anthropic
Messages API: model
claude-sonnet-4-6,temperature=0, thinking disabled, Batch API where possible. - Prompt definition files live in
prompts/<step>-<substep>-<task>.md(e.g. 01-tag.md; no version suffix -- versions live in git history) and are passed verbatim as the system prompt. The number names a step of the research procedure, not the file: the deterministic vocabulary step (step 2) has no definition file yet holds its own number. Zero padding is for sorting only -- prose says "step 1", "step 3". - Per-song LLM judgments (coding) run the same definition file three times, independently, over the same input; a deterministic subcommand then assigns a (song, keyword) pair when at least two of the three runs assign it ("3 runs + majority vote"). Free-generation steps run twice and both outputs are pooled. The vocabulary is built by a deterministic subcommand (embedding + clustering), not by an LLM. If a validation outcome is unexpected, revise the definition file and repeat that cycle; never patch results by hand.
- Each run of a step is archived self-contained under the
destination directory given explicitly on the
run-llmcommand line (by conventionruns/<step>/run<N>/): prompt snapshot, raw output, andmeta.json(model ID, parameters, timestamps, batch ID). The runs of a step are that many separate invocations ofrun-llm. Replacing an existing run archive requires an explicit flag; superseded runs live in git history. Deterministic steps archive underruns/<step>/with norun<N>level. - Token usage and cost of every
run-llmexecution are recorded indocs/run-costs.mdin the same commit as the run archive. - Scripts read the API key from the
ANTHROPIC_API_KEYenvironment variable (.env, gitignored).
Data rules
data/source/holds the immutable hand-placed raw files;data/captures/is written only by the fetch commands and the private import script;data/manual/is written only by the user's own hand;data/derived/is written only by thebuild-dbsubcommand.- Full lyrics are copyrighted: they stay in
data/captures/lyrics/(gitignored) and must never be committed or reproduced in full anywhere in the repo.
Documents
results/holds the final tallied tables (what the paper cites);runs/holds raw audit records. The paper citesresults/only.- Any change to a definition file, the codebook, or the plan is
recorded in
docs/decision-log.mdwith date and reason.