@hybridlabor-api/bdb-antigravity-skills 1.1.1 → 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 +17 -3
- package/package.json +1 -1
- package/skills/global_config/bdb-updater/SKILL.md +21 -0
package/README.md
CHANGED
|
@@ -82,13 +82,27 @@ Prompt example:
|
|
|
82
82
|
|
|
83
83
|
### Option 2: Using NPM / NPX (Recommended for Node users)
|
|
84
84
|
|
|
85
|
-
|
|
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."
|
|
86
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:
|
|
87
93
|
```bash
|
|
88
|
-
npx @hybridlabor-api/bdb-antigravity-skills
|
|
94
|
+
npx -y @hybridlabor-api/bdb-antigravity-skills@latest
|
|
89
95
|
```
|
|
90
96
|
|
|
91
|
-
|
|
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:
|
|
92
106
|
|
|
93
107
|
```bash
|
|
94
108
|
npm install -g @hybridlabor-api/bdb-antigravity-skills
|
package/package.json
CHANGED
|
@@ -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"`"
|