Skip to content

Commit 9952af7

Browse files
committed
chore: extend slack status truncation limits
1 parent 7405428 commit 9952af7

File tree

3 files changed

+29
-321
lines changed

3 files changed

+29
-321
lines changed

packages/config/local/sessions.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ export interface ActiveRequest {
2828
prompt: string;
2929
startedAt: number;
3030
lastUpdatedAt: number;
31-
currentStatus: string;
32-
currentStep?: string;
3331
currentText: string;
3432
tools: TrackedTool[];
3533
todos: TrackedTodo[];
@@ -39,13 +37,6 @@ export interface ActiveRequest {
3937
error?: string;
4038
}
4139

42-
export interface SessionPlan {
43-
status: "planning" | "awaiting_input" | "ready" | "building" | "complete";
44-
todos: TrackedTodo[];
45-
messageTs?: string;
46-
text?: string;
47-
}
48-
4940
export interface PendingQuestion {
5041
requestId: string;
5142
sessionId: string;
@@ -68,7 +59,6 @@ export interface PersistedSession {
6859
createdAt: number;
6960
lastActivityAt: number;
7061
activeRequest?: ActiveRequest;
71-
plan?: SessionPlan;
7262
pendingQuestion?: PendingQuestion;
7363
}
7464

@@ -159,7 +149,6 @@ export function createActiveRequest(
159149
prompt,
160150
startedAt: Date.now(),
161151
lastUpdatedAt: Date.now(),
162-
currentStatus: "Starting",
163152
currentText: "",
164153
tools: [],
165154
todos: [],

0 commit comments

Comments
 (0)