chore: upgrade Node.js runtime to v24 across codebase #419

Merged
jason.woltje merged 438 commits from fix/auth-frontend-remediation into main 2026-02-17 01:04:47 +00:00
Showing only changes of commit 5a0f090cc5 - Show all commits

View File

@@ -58,6 +58,7 @@ Monitored via `apps/web/` (Agent Dashboard).
{
"taskId": "string (required)",
"agentType": "worker | reviewer | tester",
"gateProfile": "strict | standard | minimal | custom (optional)",
"context": {
"repository": "https://git.example.com/repo.git",
"branch": "main",
@@ -134,11 +135,11 @@ orchestrator:events → Pub/sub channel for lifecycle events
## Quality Gate Profiles
| Profile | Pre-commit | Post-commit |
| -------- | ---------------------- | --------------------------------------------- |
| strict | typecheck, lint, tests | coverage (85%), build, integration, AI review |
| standard | typecheck, lint, tests | coverage (85%), build |
| minimal | typecheck, lint | build |
| Profile | Default For | Gates |
| -------- | ----------- | --------------------------------------------------------------------- |
| strict | reviewer | typecheck, lint, tests, coverage (85%), build, integration, AI review |
| standard | worker | typecheck, lint, tests, coverage (85%) |
| minimal | tester | tests only |
## Development
@@ -175,14 +176,14 @@ pnpm --filter @mosaic/orchestrator lint
Environment variables loaded via `@nestjs/config`. Key variables:
| Variable | Description |
| ------------------------------ | ---------------------------- |
| `ORCHESTRATOR_PORT` | HTTP port (default: 3001) |
| `ORCHESTRATOR_CLAUDE_API_KEY` | Claude API key for agents |
| `ORCHESTRATOR_VALKEY_HOST` | Valkey/Redis host |
| `ORCHESTRATOR_VALKEY_PORT` | Valkey/Redis port |
| `ORCHESTRATOR_COORDINATOR_URL` | Quality Coordinator base URL |
| `ORCHESTRATOR_DOCKER_ENABLED` | Enable Docker sandbox |
| Variable | Description |
| ------------------- | -------------------------------------- |
| `ORCHESTRATOR_PORT` | HTTP port (default: 3001) |
| `CLAUDE_API_KEY` | Claude API key for agents |
| `VALKEY_HOST` | Valkey/Redis host (default: localhost) |
| `VALKEY_PORT` | Valkey/Redis port (default: 6379) |
| `COORDINATOR_URL` | Quality Coordinator base URL |
| `SANDBOX_ENABLED` | Enable Docker sandbox (true/false) |
## Related Documentation