docs(config): remove redundant schema default comments
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -1,9 +1,7 @@
|
|||||||
import { z } from "zod"
|
import { z } from "zod"
|
||||||
|
|
||||||
export const DynamicContextPruningConfigSchema = z.object({
|
export const DynamicContextPruningConfigSchema = z.object({
|
||||||
/** Enable dynamic context pruning (default: false) */
|
|
||||||
enabled: z.boolean().default(false),
|
enabled: z.boolean().default(false),
|
||||||
/** Notification level: off, minimal, or detailed (default: detailed) */
|
|
||||||
notification: z.enum(["off", "minimal", "detailed"]).default("detailed"),
|
notification: z.enum(["off", "minimal", "detailed"]).default("detailed"),
|
||||||
/** Turn protection - prevent pruning recent tool outputs */
|
/** Turn protection - prevent pruning recent tool outputs */
|
||||||
turn_protection: z
|
turn_protection: z
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import { z } from "zod"
|
import { z } from "zod"
|
||||||
|
|
||||||
export const RalphLoopConfigSchema = z.object({
|
export const RalphLoopConfigSchema = z.object({
|
||||||
/** Enable ralph loop functionality (default: false - opt-in feature) */
|
|
||||||
enabled: z.boolean().default(false),
|
enabled: z.boolean().default(false),
|
||||||
/** Default max iterations if not specified in command (default: 100) */
|
|
||||||
default_max_iterations: z.number().min(1).max(1000).default(100),
|
default_max_iterations: z.number().min(1).max(1000).default(100),
|
||||||
/** Custom state file directory relative to project root (default: .opencode/) */
|
/** Custom state file directory relative to project root (default: .opencode/) */
|
||||||
state_dir: z.string().optional(),
|
state_dir: z.string().optional(),
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { z } from "zod"
|
import { z } from "zod"
|
||||||
|
|
||||||
export const StartWorkConfigSchema = z.object({
|
export const StartWorkConfigSchema = z.object({
|
||||||
/** Enable auto-commit after each atomic task completion (default: true) */
|
|
||||||
auto_commit: z.boolean().default(true),
|
auto_commit: z.boolean().default(true),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user