From 0f2b710992f354e7dfebf307b44e254a0421d5bc Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Thu, 19 Mar 2026 23:15:00 +0800 Subject: [PATCH] refactor: move platform config directories to repo root for discovery Move .codex/, .opencode/, .openclaw/ from understand-anything-plugin/ to repo root so each AI coding platform discovers its config at the standard location. Delete .cursor/ (replaced by .cursor-plugin/plugin.json in next commit). Plugin source code stays inside understand-anything-plugin/. Co-Authored-By: Claude Opus 4.6 --- .../.codex => .codex}/INSTALL.md | 0 .../.openclaw => .openclaw}/INSTALL.md | 0 .../.opencode => .opencode}/INSTALL.md | 0 understand-anything-plugin/.cursor/INSTALL.md | 37 ------------------- 4 files changed, 37 deletions(-) rename {understand-anything-plugin/.codex => .codex}/INSTALL.md (100%) rename {understand-anything-plugin/.openclaw => .openclaw}/INSTALL.md (100%) rename {understand-anything-plugin/.opencode => .opencode}/INSTALL.md (100%) delete mode 100644 understand-anything-plugin/.cursor/INSTALL.md diff --git a/understand-anything-plugin/.codex/INSTALL.md b/.codex/INSTALL.md similarity index 100% rename from understand-anything-plugin/.codex/INSTALL.md rename to .codex/INSTALL.md diff --git a/understand-anything-plugin/.openclaw/INSTALL.md b/.openclaw/INSTALL.md similarity index 100% rename from understand-anything-plugin/.openclaw/INSTALL.md rename to .openclaw/INSTALL.md diff --git a/understand-anything-plugin/.opencode/INSTALL.md b/.opencode/INSTALL.md similarity index 100% rename from understand-anything-plugin/.opencode/INSTALL.md rename to .opencode/INSTALL.md diff --git a/understand-anything-plugin/.cursor/INSTALL.md b/understand-anything-plugin/.cursor/INSTALL.md deleted file mode 100644 index 3eadc06..0000000 --- a/understand-anything-plugin/.cursor/INSTALL.md +++ /dev/null @@ -1,37 +0,0 @@ -# Installing Understand-Anything for Cursor - -## Prerequisites - -- Git - -## Installation - -1. **Clone the repository:** - ```bash - git clone https://github.com/Lum1104/Understand-Anything.git ~/.cursor/understand-anything - ``` - -2. **Create the plugin symlink:** - ```bash - mkdir -p ~/.cursor/plugins - ln -s ~/.cursor/understand-anything/understand-anything-plugin ~/.cursor/plugins/understand-anything - ``` - -3. **Restart Cursor** to discover the plugin. - -## Usage - -Skills activate automatically when relevant. Use `/understand` to analyze a codebase. - -## Updating - -```bash -cd ~/.cursor/understand-anything && git pull -``` - -## Uninstalling - -```bash -rm ~/.cursor/plugins/understand-anything -rm -rf ~/.cursor/understand-anything -```