Skip to content

Commit 8acdda0

Browse files
committed
ai(rules[AGENTS]) Clean up references to cursor rules
1 parent 2d9273d commit 8acdda0

File tree

1 file changed

+4
-19
lines changed

1 file changed

+4
-19
lines changed

AGENTS.md

Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ make watch_mypy
9696

9797
### Development Workflow
9898

99-
Follow this workflow for code changes (see `.cursor/rules/dev-loop.mdc`):
99+
Follow this workflow for code changes:
100100

101101
1. **Format First**: `uv run ruff format .`
102102
2. **Run Tests**: `uv run pytest`
@@ -181,7 +181,7 @@ These fixtures handle setup and teardown automatically, creating isolated test e
181181

182182
### Testing Guidelines
183183

184-
1. **Use existing fixtures over mocks** (see `.cursor/rules/dev-loop.mdc`)
184+
1. **Use existing fixtures over mocks**
185185
- Use fixtures from conftest.py instead of `monkeypatch` and `MagicMock` when available
186186
- For libtmux, use provided fixtures: `server`, `session`, `window`, and `pane`
187187
- Document in test docstrings why standard fixtures weren't used for exceptional cases
@@ -206,7 +206,7 @@ def test_window_rename(window):
206206

207207
## Coding Standards
208208

209-
For detailed coding standards, refer to `.cursor/rules/dev-loop.mdc`. Key highlights:
209+
Key highlights:
210210

211211
### Imports
212212

@@ -216,7 +216,7 @@ For detailed coding standards, refer to `.cursor/rules/dev-loop.mdc`. Key highli
216216

217217
### Docstrings
218218

219-
Follow NumPy docstring style for all functions and methods (see `.cursor/rules/dev-loop.mdc`):
219+
Follow NumPy docstring style for all functions and methods:
220220

221221
```python
222222
"""Short description of the function or class.
@@ -246,8 +246,6 @@ type
246246

247247
### Git Commit Standards
248248

249-
See `.cursor/rules/git-commits.mdc` for detailed commit message standards.
250-
251249
Format commit messages as:
252250
```
253251
Component/File(commit-type[Subcomponent/method]): Concise description
@@ -283,8 +281,6 @@ what:
283281

284282
## Debugging Tips
285283

286-
See `.cursor/rules/avoid-debug-loops.mdc` for detailed debugging guidance.
287-
288284
When stuck in debugging loops:
289285

290286
1. **Pause and acknowledge the loop**
@@ -320,14 +316,3 @@ libtmux uses tmux's format system extensively:
320316
- Architecture: https://libtmux.git-pull.com/about.html
321317
- tmux man page: http://man.openbsd.org/OpenBSD-current/man1/tmux.1
322318
- tmuxp (workspace manager): https://tmuxp.git-pull.com/
323-
324-
## Cursor Rules Reference
325-
326-
This project uses Cursor rules (`.cursor/rules/*.mdc`) to provide context-specific guidance:
327-
328-
- **dev-loop.mdc**: Development workflow and QA process
329-
- **git-commits.mdc**: Git commit message standards
330-
- **avoid-debug-loops.mdc**: Debugging best practices
331-
- **notes-llms-txt.mdc**: LLM-optimized markdown format for notes
332-
333-
These rules are automatically applied based on file patterns and provide additional guidance to AI assistants.

0 commit comments

Comments
 (0)