File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -123,9 +123,11 @@ kode repl
123123| ` --base-url <url> ` | API endpoint URL |
124124| ` --sandbox ` | Run in Docker sandbox |
125125| ` --thinking <level> ` | Reasoning depth (enabled/disabled/low/medium/high) |
126- | ` --no-learn ` | Disable skill learning mode (on by default) |
126+ | ` --learn ` | Enable skill learning mode — on by default |
127+ | ` --no-learn ` | Disable skill learning mode |
127128| ` --system <prompt> ` | Override system prompt |
128129| ` --max-iter <n> ` | Max think→act cycles (default 90) |
130+ | ` --no-color ` | Disable colored output |
129131| ` --no-agents ` | Skip AGENTS.md project file |
130132
131133---
Original file line number Diff line number Diff line change @@ -26,21 +26,6 @@ type delegateTasksTool struct {
2626 timeout time.Duration
2727}
2828
29- func newDelegateTasksTool (maxConcurrency int ) * delegateTasksTool {
30- path := os .Args [0 ] // same binary as parent
31- if path == "" {
32- path = "kode"
33- }
34- if maxConcurrency <= 0 {
35- maxConcurrency = 3
36- }
37- return & delegateTasksTool {
38- maxConcurrency : maxConcurrency ,
39- kodePath : path ,
40- timeout : 120 * time .Second ,
41- }
42- }
43-
4429func (t * delegateTasksTool ) Name () string { return "delegate_tasks" }
4530
4631func (t * delegateTasksTool ) Description () string {
You can’t perform that action at this time.
0 commit comments