From 10fddc9694fc3da1a02a5cdcd72a217961c5554a Mon Sep 17 00:00:00 2001 From: Alexander Brown Date: Fri, 5 Dec 2025 15:03:31 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20AGENTS.md=20consolidation=20and?= =?UTF-8?q?=20updates=20(#7194)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Unify some of the different documentation intended for LLM consumption. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7194-AGENTS-md-consolidation-and-updates-2c06d73d36508123b10ed75f03d41e75) by [Unito](https://www.unito.io) --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .cursorrules | 61 ------------- AGENTS.md | 250 ++++++++++++++++++++++++++++++++++++++++++++++----- CLAUDE.md | 120 ++----------------------- 3 files changed, 234 insertions(+), 197 deletions(-) delete mode 100644 .cursorrules diff --git a/.cursorrules b/.cursorrules deleted file mode 100644 index 6f43623a3..000000000 --- a/.cursorrules +++ /dev/null @@ -1,61 +0,0 @@ -# Vue 3 Composition API Project Rules - -## Vue 3 Composition API Best Practices -- Use setup() function for component logic -- Utilize ref and reactive for reactive state -- Implement computed properties with computed() -- Use watch and watchEffect for side effects -- Implement lifecycle hooks with onMounted, onUpdated, etc. -- Utilize provide/inject for dependency injection -- Use vue 3.5 style of default prop declaration. Example: - -```typescript -const { nodes, showTotal = true } = defineProps<{ - nodes: ApiNodeCost[] - showTotal?: boolean -}>() -``` - -- Organize vue component in