You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Copilot Instructions
2
2
3
-
Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the service modular, dependency-injected, and ready for containerized deployment.
3
+
Mixtapelabs API is an Express service that fronts `@mixtapelabs/engine`. Keep the service modular, dependency-injected, and ready for containerized deployment.
4
4
5
5
## Architecture snapshot
6
6
@@ -20,7 +20,7 @@ Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the serv
20
20
21
21
## Implementation conventions
22
22
23
-
- Do not import `@auralyze/engine` directly inside controllers; route through services so dependencies remain mockable.
23
+
- Do not import `@mixtapelabs/engine` directly inside controllers; route through services so dependencies remain mockable.
24
24
- Validate request payloads with Zod schemas in `src/controllers/session-controller.ts` before invoking services.
25
25
- Keep env access centralized in `src/config/env.ts`. Never read `process.env` throughout the codebase.
26
26
- Avoid long middleware chains; prefer dedicated functions within `src/middleware/` and register them in `src/routes/index.ts`.
@@ -29,7 +29,7 @@ Auralyze API is an Express service that fronts `@auralyze/engine`. Keep the serv
29
29
30
30
## External integrations
31
31
32
-
-`@auralyze/engine` orchestrates LangGraph analysis; treat it as an injected dependency.
32
+
-`@mixtapelabs/engine` orchestrates LangGraph analysis; treat it as an injected dependency.
33
33
- OpenAI usage is encapsulated by the engine. The API only passes through `EngineState` payloads.
34
34
- Prisma migrations must accompany schema changes; run `npx prisma migrate dev --name <msg>` and commit the generated migration.
Copy file name to clipboardExpand all lines: CODE_OF_CONDUCT.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Our Pledge
4
4
5
-
We pledge to make participation in Auralyze API a harassment-free experience for everyone, regardless of background, expertise, or role.
5
+
We pledge to make participation in Mixtapelabs API a harassment-free experience for everyone, regardless of background, expertise, or role.
6
6
7
7
## Our Standards
8
8
@@ -28,7 +28,7 @@ This Code of Conduct applies within all project spaces, including GitHub, Slack,
28
28
29
29
## Enforcement
30
30
31
-
Report violations privately to the engineering leadership team or via the `#auralyze-security` Slack channel. All complaints will be reviewed promptly and confidentially.
31
+
Report violations privately to the engineering leadership team or via the `#mixtapelabs-security` Slack channel. All complaints will be reviewed promptly and confidentially.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Contributing to Auralyze API
1
+
# Contributing to Mixtapelabs API
2
2
3
-
This repository houses proprietary code for the Auralyze Express service. Please keep all discussions and reviews within approved internal channels.
3
+
This repository houses proprietary code for the Mixtapelabs Express service. Please keep all discussions and reviews within approved internal channels.
4
4
5
5
## Getting Started
6
6
@@ -31,7 +31,7 @@ All pull requests must be rebased on `main` (or `develop` when applicable) and p
31
31
1. Reference the ticket/issue ID in the branch or PR description.
32
32
2. Document user-facing API changes in the PR template.
33
33
3. Update README/Runbooks when introducing new endpoints, env vars, or dependencies.
34
-
4. Request review from `@auralyze/maintainers`; at least one approval is required before merge.
34
+
4. Request review from `@mixtapelabs/maintainers`; at least one approval is required before merge.
0 commit comments