Skip to content

Commit 2d4704f

Browse files
committed
quality pass: README flags, remove dead code, pre-launch polish
1 parent 8191620 commit 2d4704f

2 files changed

Lines changed: 3 additions & 16 deletions

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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
---

cmd/kode/subagent_tool.go

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff 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-
4429
func (t *delegateTasksTool) Name() string { return "delegate_tasks" }
4530

4631
func (t *delegateTasksTool) Description() string {

0 commit comments

Comments
 (0)