Auto-reply: add /verbose directives and tool result replies
This commit is contained in:
@@ -61,6 +61,7 @@ export type WarelayConfig = {
|
||||
command?: string[];
|
||||
heartbeatCommand?: string[];
|
||||
thinkingDefault?: "off" | "minimal" | "low" | "medium" | "high";
|
||||
verboseDefault?: "off" | "on";
|
||||
cwd?: string;
|
||||
template?: string;
|
||||
timeoutSeconds?: number;
|
||||
@@ -97,6 +98,7 @@ const ReplySchema = z
|
||||
z.literal("high"),
|
||||
])
|
||||
.optional(),
|
||||
verboseDefault: z.union([z.literal("off"), z.literal("on")]).optional(),
|
||||
cwd: z.string().optional(),
|
||||
template: z.string().optional(),
|
||||
timeoutSeconds: z.number().int().positive().optional(),
|
||||
|
||||
@@ -14,6 +14,7 @@ export type SessionEntry = {
|
||||
systemSent?: boolean;
|
||||
abortedLastRun?: boolean;
|
||||
thinkingLevel?: string;
|
||||
verboseLevel?: string;
|
||||
};
|
||||
|
||||
export const SESSION_STORE_DEFAULT = path.join(CONFIG_DIR, "sessions.json");
|
||||
|
||||
Reference in New Issue
Block a user