Skip to content

Commit bfa99d8

Browse files
committed
refactor: update references from MixtapeLabs to Mixtape across documentation and codebase
1 parent 8a97724 commit bfa99d8

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Repository Structure
66

7-
This repository contains the MixtapeLabs Engine, a LangGraph-powered workflow engine for AI-driven audio mix analysis. The actual project code lives in the `engine/` subdirectory.
7+
This repository contains the Mixtape Engine, a LangGraph-powered workflow engine for AI-driven audio mix analysis. The actual project code lives in the `engine/` subdirectory.
88

99
**Key directories (all under `engine/`):**
1010

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to MixtapeLabs Engine
1+
# Contributing to Mixtape Engine
22

33
This repository houses proprietary code for the Mixtape workflow engine. Please keep all discussions and code reviews within approved internal channels.
44

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MixtapeLabs Engine Proprietary License
1+
Mixtape Engine Proprietary License
22
===================================
33

44
Copyright (c) 2025 Mixtape. All rights reserved.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MixtapeLabs Engine (@mixtapelabs/engine)
1+
# Mixtape Engine (@mixtapelabs/engine)
22

33
LangGraph-powered workflow engine for AI-driven audio mix analysis.
44

src/prompts/feedback-prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const formatJson = (value: unknown): string => JSON.stringify(value, null, 2);
4242
* Builds system and user prompts for feedback generation.
4343
*
4444
* **System prompt** establishes:
45-
* - Role: "MixtapeLabs, an AI mix and mastering assistant"
45+
* - Role: "Mixtape, an AI mix and mastering assistant"
4646
* - Tone: Concise, empathetic, practical
4747
* - Output: Valid JSON only
4848
*

src/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Engine State Schemas & Types
33
*
4-
* Defines the complete data model for an MixtapeLabs analysis session.
4+
* Defines the complete data model for an Mixtape analysis session.
55
* All schemas use Zod for runtime validation and TypeScript type inference.
66
*
77
* The EngineState evolves through the workflow pipeline, accumulating data

test/feedback-prompt.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('feedback prompt builder', () => {
2929
it('includes contextual data in the user message', () => {
3030
const prompt = buildFeedbackPrompt(baseState);
3131

32-
expect(prompt.system).toMatch(/Mixtapelabs/);
32+
expect(prompt.system).toMatch(/Mixtape/);
3333
expect(prompt.user).toContain('prompt-test');
3434
expect(prompt.user).toContain('File info');
3535
expect(prompt.user).toContain('Analysis');

0 commit comments

Comments
 (0)