Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/common/constants/toolLimits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export const MAX_TODOS = 7; // Maximum number of TODO items in a list
// Keep only the most recent lines (tail), drop older lines
export const INIT_HOOK_MAX_LINES = 500;

export const STATUS_MESSAGE_MAX_LENGTH = 60; // Maximum length for status messages (auto-truncated)

// Web fetch tool limits
export const WEB_FETCH_TIMEOUT_SECS = 15; // curl timeout
export const WEB_FETCH_MAX_OUTPUT_BYTES = 64 * 1024; // 64KB markdown output
Expand Down
6 changes: 0 additions & 6 deletions src/common/types/global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ import type { RouterClient } from "@orpc/server";
import type { AppRouter } from "@/node/orpc/router";
import type { MuxDeepLinkPayload } from "@/common/types/deepLink";

// Our simplified permission modes for UI
export type UIPermissionMode = "plan" | "edit";

// Claude SDK permission modes
export type SDKPermissionMode = "default" | "acceptEdits" | "bypassPermissions" | "plan";

declare global {
interface WindowApi {
platform: NodeJS.Platform;
Expand Down
Loading