Skip to content
Merged
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
7 changes: 5 additions & 2 deletions .kaizen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ agent:
claude: null
codex: null
run:
maxIssuesPerNight: 1
maxIssuesPerNight: 2
issueTimeoutMinutes: 30
runTimeoutMinutes: 180
maxVerifyRetries: 1
Expand All @@ -16,8 +16,11 @@ scheduler:
nightly:
enabled: true
time: "01:45"
poll:
afternoon:

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Remove unsupported afternoon scheduler key

When this config is loaded by the current kaizen-loop CLI, the new scheduler.afternoon mapping is rejected before any scheduler can run: loadConfig parses .kaizen/config.yml with configSchema.parse, and the scheduler schema is strict with only nightly and poll keys. In repositories using this shared Kaizen config, any command that loads the config will fail instead of registering the intended 13:45 run.

Useful? React with 👍 / 👎.

enabled: true
time: "13:45"
poll:
enabled: false
intervalMinutes: 5
skipIfRunning: true
commands:
Expand Down
Loading