From 970943e3267cb5602c899109eec6c0eb3a1b74fa Mon Sep 17 00:00:00 2001 From: ZhuchkaTriplesix Date: Mon, 20 Jul 2026 14:29:21 +0300 Subject: [PATCH] chore: stop tracking .cursor; keep workflow in docs Remove IDE Cursor rules from the repo, ignore .cursor/, and point AGENTS.md at docs/development-workflow.md instead. --- .gitignore | 1 + AGENTS.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1e41c46..9b041b8 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ env/ # --- IDE / editor --- .idea/ +.cursor/ *.swp *~ diff --git a/AGENTS.md b/AGENTS.md index 3038ce7..d9ec7b1 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,4 +1,4 @@ # Notes for AI agents (OxyRoute) -- **Git / branches / PRs / validation** — [`.cursor/rules/git-workflow.mdc`](.cursor/rules/git-workflow.mdc) (`alwaysApply`). +- **Git / branches / PRs / validation** — [docs/development-workflow.md](docs/development-workflow.md) (integration branch `dev`, issue branches, atomic commits, PR to `dev`). - **Validation (ruff, cargo, `make test`, pytest, maturin):** the **maintainer runs these** before push. **Do not** run that full pipeline in the agent unless the user explicitly asks (e.g. “run `make test`”, “fix the failing test”). If something failed in CI or locally, the user will say so — then fix what they report.