Skip to content

Commit 429c980

Browse files
jmbish04claude
andcommitted
fix: resolve 4 broken import paths preventing deployment
- SentinelInterceptor.ts: @/core/BaseAutomation → @/automations/core/BaseAutomation - SentinelPostMerge.ts: @/core/BaseAutomation → @/automations/core/BaseAutomation - sentinel/tasks.ts: @/db/schemas/projects/tasks → @/db/schemas/projects/backlog/tasks - stitch-loop.ts: @services/jules → @services/jules/service (no barrel file) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d633576 commit 429c980

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/backend/src/automations/pr/SentinelInterceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { z } from "zod";
1414
import {
1515
BaseAutomation,
1616
type AutomationMetadata,
17-
} from "@/core/BaseAutomation";
17+
} from "@/automations/core/BaseAutomation";
1818
import { getDb } from "@db";
1919
import { learningAiInsights } from "@db/schemas/github/learning";
2020
import { eq, and } from "drizzle-orm";

src/backend/src/automations/pr/SentinelPostMerge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { z } from "zod";
1212
import {
1313
BaseAutomation,
1414
type AutomationMetadata,
15-
} from "@/core/BaseAutomation";
15+
} from "@/automations/core/BaseAutomation";
1616
import { getDb } from "@db";
1717
import { learningAiInsightPrs } from "@db/schemas/github/learning";
1818

src/backend/src/routes/api/sentinel/tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
import { OpenAPIHono, createRoute, z } from "@hono/zod-openapi";
1414
import { getDb } from "@db";
15-
import { tasks, taskEvents } from "@/db/schemas/projects/tasks";
15+
import { tasks, taskEvents } from "@/db/schemas/projects/backlog/tasks";
1616
import { eq, isNull, desc } from "drizzle-orm";
1717

1818
const app = new OpenAPIHono<{ Bindings: Env }>();

src/backend/src/workflows/planning/stitch-loop.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
WorkflowStep,
1616
} from "cloudflare:workers";
1717
import { StitchService } from "@services/stitch";
18-
import { JulesService } from "@services/jules";
18+
import { JulesService } from "@services/jules/service";
1919
import type { StitchLoopParams } from "@services/stitch";
2020

2121
const DESIGN_SYSTEM_RULES = `

0 commit comments

Comments
 (0)