Skip to content

Commit e392f2e

Browse files
committed
docs: scrub retired v3 references from agent instruction files
Drop mentions of the removed graphile/zod-worker background system, the deleted zod-worker package, and the v3 coordinator from the repo's CLAUDE.md / AGENTS.md guidance now that v3 execution is gone.
1 parent 6b31d5c commit e392f2e

5 files changed

Lines changed: 4 additions & 7 deletions

File tree

AGENTS.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@ User API call -> Webapp routes -> Services -> RunEngine -> Redis Queue -> Superv
138138
- **internal-packages/redis**: Redis client creation utilities (ioredis)
139139
- **internal-packages/testcontainers**: Test helpers for Redis/PostgreSQL containers
140140
- **internal-packages/schedule-engine**: Durable cron scheduling
141-
- **internal-packages/zod-worker**: Graphile-worker wrapper (DEPRECATED - use redis-worker)
142141

143142
### v3 (engine V1) removed
144143

apps/supervisor/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Node.js app that manages task execution containers. Receives work from the platf
77
- `src/services/` - Core service logic
88
- `src/workloadManager/` - Container orchestration abstraction (Docker or Kubernetes)
99
- `src/workloadServer/` - HTTP server for workload communication (heartbeats, snapshots)
10-
- `src/clients/` - Platform communication (webapp/coordinator)
10+
- `src/clients/` - Platform communication (webapp)
1111
- `src/env.ts` - Environment configuration
1212

1313
## Architecture

apps/webapp/CLAUDE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ Background job workers use `@trigger.dev/redis-worker`:
9191
- `app/v3/alertsWorker.server.ts`
9292
- `app/v3/batchTriggerWorker.server.ts`
9393

94-
Do NOT add new jobs using zodworker/graphile-worker (legacy).
95-
9694
## Real-time
9795

9896
- Socket.io: `app/v3/handleSocketIo.server.ts`, `app/v3/handleWebsockets.server.ts`

internal-packages/database/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Located at `prisma/schema.prisma`. Key models include TaskRun, BackgroundWorker,
1010

1111
```prisma
1212
enum RunEngineVersion {
13-
V1 // Legacy (MarQS + Graphile) - DEPRECATED
13+
V1 // Retired v3 engine - no longer executes; kept for historical rows and rejection
1414
V2 // Current (run-engine + redis-worker)
1515
}
1616
```

packages/redis-worker/CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Redis Worker
22

3-
`@trigger.dev/redis-worker` - custom Redis-based background job system. **This replaces graphile-worker/zodworker** for all new background job needs.
3+
`@trigger.dev/redis-worker` - custom Redis-based background job system. This is the background job system for the webapp and run engine.
44

55
## Key Files
66

@@ -12,7 +12,7 @@
1212

1313
Used by the webapp for background jobs (alerting, batch processing, common tasks) and by the run engine for TTL expiration and batch operations.
1414

15-
All new background jobs in the webapp should use redis-worker. Do NOT add new jobs to zodworker (`@internal/zodworker`) or graphile-worker.
15+
All background jobs in the webapp use redis-worker.
1616

1717
## Testing
1818

0 commit comments

Comments
 (0)