magi-code 0.64.0

Repository-aware CLI coding agent for terminal work
Documentation
1
2
3
4
5
6
7
8
9
### Find Tool
**Tool Name**: `find`
**Tool Description**: Search cwd-relative file and directory paths by name/glob. Use for path discovery. NEVER search file contents, use `grep` (text) or `ast_grep` (code structure) tools for that. Relative paths are resolved under cwd; absolute paths are likely allowed. Does not read file contents - use `read` for that.
**Tool Arguments**:
- `query`: required, string, min: 1, max: 512
- `path`: optional, string, example: `src/tests`
- `kind`: optional, string, enum: `files`, `directories`, `mixed`
- `limit`: optional, integer, min: 1, max: 200
- `offset`: optional, integer, min: 0