···11# Agent Notes
2233-## RTK Commands
44-55-When running shell commands, prefix them with `rtk` by default. If `rtk` has no
66-filter for a command, it passes through unchanged.
77-88-Examples:
99-1010-```bash
1111-rtk git status
1212-rtk git diff
1313-rtk rg "pattern" src
1414-rtk npm run build
1515-```
1616-1717-Rules:
1818-1919-- In command chains, prefix each segment: `rtk git add . && rtk git commit -m "msg"`.
2020-- Use `rtk rg` for searching, including TSX/JSX files.
2121-- Do not use `rtk sed`, `rtk proxy sed`, `rtk cat`, `rtk read`, or other RTK-filtered readers for `.tsx` or `.jsx` files; use raw `sed`, `cat`, or similar so JSX syntax is preserved.
2222-- For debugging, use a raw command without `rtk` if the filter hides needed detail.
2323-- Use `apply_patch` for manual edits.
2424-253## Build
264275Use this as the main verification command: