@hybridlabor-api/bdb-antigravity-skills 1.1.0 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -36,26 +36,28 @@ The true game-changer of this repository lies in our **Custom MCP (Model Context
36
36
  Integrated directly into TouchDesigner via the **Pantani/tdmcp** (MindDesigner) bridge and utilizing **8beeeaaat/touchdesigner-mcp** as a fallback, agents can construct real TouchDesigner node networks via natural language. They can manipulate operators, patch CHOPs/TOPs, and automate complex node routing inside the visual programming environment.
37
37
 
38
38
  ### 🎮 Unreal Engine
39
- Built on a hybrid foundation of **Unreal Engine 5.8 native APIs** and the **gimmeDG** toolset, this MCP allows agents to interact directly with UE5 projects. From scene generation and asset configuration to complex Blueprint logic mapping, this integration turns agents into bona fide Technical Artists.
39
+ Built on a hybrid foundation of **Unreal Engine 5 Web Remote APIs** and the **gimmeDG** toolset, our locally bundled `unreal_mcp.py` allows agents to execute REST calls directly to your UE5 project (via port 30010). From scene generation and actor spawning to complex Blueprint logic mapping, this integration turns agents into bona fide Technical Artists.
40
40
 
41
41
  ### 📐 Rhino 3D & Grasshopper
42
42
  Using a custom local `rhino_mcp.py` inspired by **mcneel/RhinoMCP** and **GOLEM-3DMCP-Rhino**, agents can connect directly to Rhino Compute (via REST on port 6500) to manipulate 3D geometry in Rhino 8. This extends to controlling Grasshopper definitions, tweaking parameters, and generating complex parametric 3D models directly from prompt instructions.
43
43
 
44
44
  ### 🎬 DaVinci Resolve
45
- Powered by **samuelgursky/davinci-resolve-mcp** and **hoyt-harness/davinci-mcp-professional**, this integration gives agents the ability to manipulate timelines, organize media pools, and execute complex Fusion composites via external scripting in Resolve Studio.
45
+ Powered by our locally bundled `davinci_mcp.py` (which directly wraps the native `DaVinciResolveScript` Python API), this integration gives agents the ability to manipulate timelines, organize media pools, and execute complex Fusion composites via external scripting in Resolve Studio.
46
46
 
47
47
  ### 🧊 Blender
48
48
  Using community servers like **ahujasid/blender-mcp**, agents can script Blender Python (`bpy`) operations directly. This covers everything from mesh generation and material manipulation to camera automation and rendering pipelines.
49
49
 
50
50
  ### ✨ Adobe Creative Cloud (Photoshop, Illustrator, Premiere, After Effects)
51
- Instead of forcing you to install complex UXP plugins for every Adobe app, our unified **`adobe_mcp.py`** executes cross-platform. On **macOS**, it drives Adobe apps directly via zero-install `osascript` AppleEvents. On **Windows**, it natively hooks into Adobe's `win32com` interfaces via PowerShell COM objects. This allows agents to seamlessly generate layers, adjust paths, render compositions, and write custom ExtendScript expressions across the entire Adobe Suite natively.
51
+ We provide **two native execution modes** bundled right into this package:
52
+ 1. **OS-Native Scripting (`adobe_mcp.py`)**: Executes zero-install `osascript` AppleEvents on macOS and `win32com` PowerShell hooks on Windows for immediate scripting without any plugin installation.
53
+ 2. **UXP Proxy Architecture (`adobe_uxp_mcp`)**: A three-tier WebSocket proxy (Node.js backend + native `manifest.json` plugins for Photoshop/Premiere) allowing deep DOM control and continuous network states.
52
54
 
53
55
  ### 🏗️ Vectorworks
54
56
  Through early implementations like **vectorworks-mcp** connecting via the C++ SDK plugin, agents are paving the way for automated drafting, BIM parameter adjustments, and CAD automation within Vectorworks 2025.
55
57
 
56
58
  ### 💡 grandMA3 & Resolume
57
- - **grandMA3**: Powered by a specialized **Python/Lua bridge** (Pahegi/ma3-mcp), agents can read showfiles, generate macros, and patch fixtures.
58
- - **Resolume**: Driven by the **tortillaguy** project and the **Resolume 7.26 native integration**, agents can structure compositions, map OSC/MIDI routes, and sequence layers.
59
+ - **grandMA3**: Powered by our local `grandma3_mcp.py`, agents can send UDP/OSC commands and execute macros or patch fixtures directly in the console.
60
+ - **Resolume**: Driven by our `resolume_mcp.py` wrapping the Arena REST API, agents can structure compositions, trigger clips, and sequence layers dynamically.
59
61
 
60
62
  ---
61
63
 
@@ -80,13 +82,27 @@ Prompt example:
80
82
 
81
83
  ### Option 2: Using NPM / NPX (Recommended for Node users)
82
84
 
83
- You can run the installer directly without downloading the repository using `npx`:
85
+ ### 🤖 Autonomous Installation
86
+ Alternatively, you can simply ask your AI agent to install it for you:
87
+ > "Please install the @hybridlabor-api/bdb-antigravity-skills package via npx."
84
88
 
89
+ ---
90
+
91
+ ## 🔄 Updates & Auto-Update
92
+ Because this package is hosted on NPM, updating to the latest version is as simple as re-running the installation command:
85
93
  ```bash
86
- npx @hybridlabor-api/bdb-antigravity-skills
94
+ npx -y @hybridlabor-api/bdb-antigravity-skills@latest
87
95
  ```
88
96
 
89
- Or install it globally via npm:
97
+ **Autonomous Agent Updates (`bdb-updater`):**
98
+ We include a dedicated `bdb-updater` skill in the package. Your AI agent natively understands how to update itself!
99
+ Simply ask your agent: *"Check for BDB skill updates"* and it will query NPM and install the latest version automatically.
100
+
101
+ **Set it and forget it:**
102
+ You can tell your agent to automatically check for updates every week using the `/schedule` slash command:
103
+ > `/schedule CronExpression="0 10 * * 1" Prompt="Check if there is a new version of @hybridlabor-api/bdb-antigravity-skills and update it using the bdb-updater skill"`
104
+
105
+ You can install it globally via npm:
90
106
 
91
107
  ```bash
92
108
  npm install -g @hybridlabor-api/bdb-antigravity-skills
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybridlabor-api/bdb-antigravity-skills",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "Optimized Antigravity skills and MCP pack for BDB DEV",
5
5
  "main": "installer.js",
6
6
  "bin": {
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: bdb-updater
3
+ description: Proactively check for and install updates to the BDB Antigravity Skills package via NPM.
4
+ ---
5
+
6
+ # BDB Updater Skill
7
+
8
+ You are responsible for keeping the BDB Antigravity Skills up to date.
9
+ When the user asks about updates, or if you are running on a scheduled cron task, you must:
10
+
11
+ 1. Check the latest version on NPM by running:
12
+ `npm show @hybridlabor-api/bdb-antigravity-skills version`
13
+
14
+ 2. If an update is needed, or the user requests a force update, you must run the interactive installer without prompts:
15
+ `npx -y @hybridlabor-api/bdb-antigravity-skills@latest`
16
+
17
+ 3. After a successful update, inform the user about the new features or simply confirm that the skills and MCP servers have been refreshed in `~/.gemini/config`.
18
+
19
+ ### Scheduled Updates
20
+ If the user wants automatic updates, strongly recommend they use the `/schedule` slash command to set a recurring cron job for you.
21
+ Example: "I can set up an automatic weekly update check for you. Just type: `/schedule CronExpression="0 10 * * 1" Prompt="Check if there is a new version of @hybridlabor-api/bdb-antigravity-skills via npm view and update it"`"