- Update nvim to use qwen3-coder-next-80b-instruct model - Add AGENTS.md with AI agent best practices for timeout and file writing - Update pi config to include agent guidelines - Refactor llama-swap: remove old models, update quantizations, add tensor splits, remove GGML_CUDA_ENABLE_UNIFIED_MEMORY flags, and simplify configuration
705 B
705 B
AI Agent Guidelines
Important Rules
-
Timeout for bash tool: The
bashtool MUST have a timeout specified. Without a timeout, the tool will hang indefinitely and cause the task to fail. -
File writing: Do NOT use
catwith heredocs to write files. Use thewritetool instead (oreditfor modifications).
Example of Correct Usage
Incorrect (will hang):
bash(command="some long-running command")
Correct (with timeout):
bash(command="some command", timeout=30)
Incorrect (file writing):
bash(command="cat > file.txt << 'EOF'\ncontent\nEOF")
Correct (file writing):
write(path="file.txt", content="content")