From 8b5499e8db3f487501bfb5ba1e43bd1c1184163a Mon Sep 17 00:00:00 2001 From: Lum1104 Date: Thu, 19 Mar 2026 23:16:43 +0800 Subject: [PATCH] feat: add Cursor and Claude plugin descriptors for auto-discovery Add .cursor-plugin/plugin.json with skills/agents paths pointing into understand-anything-plugin/. Add .claude-plugin/plugin.json alongside existing marketplace.json. Co-Authored-By: Claude Opus 4.6 --- .claude-plugin/plugin.json | 12 ++++++++++++ .cursor-plugin/plugin.json | 15 +++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .claude-plugin/plugin.json create mode 100644 .cursor-plugin/plugin.json diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json new file mode 100644 index 0000000..8f33449 --- /dev/null +++ b/.claude-plugin/plugin.json @@ -0,0 +1,12 @@ +{ + "name": "understand-anything", + "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", + "version": "1.0.5", + "author": { + "name": "Lum1104" + }, + "homepage": "https://github.com/Lum1104/Understand-Anything", + "repository": "https://github.com/Lum1104/Understand-Anything", + "license": "MIT", + "keywords": ["codebase-analysis", "knowledge-graph", "architecture", "onboarding", "dashboard"] +} diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json new file mode 100644 index 0000000..73fcfbe --- /dev/null +++ b/.cursor-plugin/plugin.json @@ -0,0 +1,15 @@ +{ + "name": "understand-anything", + "displayName": "Understand Anything", + "description": "AI-powered codebase understanding — analyze, visualize, and explain any project", + "version": "1.0.5", + "author": { + "name": "Lum1104" + }, + "homepage": "https://github.com/Lum1104/Understand-Anything", + "repository": "https://github.com/Lum1104/Understand-Anything", + "license": "MIT", + "keywords": ["codebase-analysis", "knowledge-graph", "architecture", "onboarding", "dashboard"], + "skills": "./understand-anything-plugin/skills/", + "agents": "./understand-anything-plugin/agents/" +}